| OLD | NEW |
| 1 #library('dart:dom_deprecated'); | 1 #library('dart:dom_deprecated'); |
| 2 | 2 |
| 3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
| 5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
| 6 | 6 |
| 7 // DO NOT EDIT | 7 // DO NOT EDIT |
| 8 // Auto-generated Dart DOM library. | 8 // Auto-generated Dart DOM library. |
| 9 | 9 |
| 10 | 10 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 final int numberOfChannels; | 73 final int numberOfChannels; |
| 74 | 74 |
| 75 final num sampleRate; | 75 final num sampleRate; |
| 76 | 76 |
| 77 _Float32ArrayJs getChannelData(int channelIndex) native; | 77 _Float32ArrayJs getChannelData(int channelIndex) native; |
| 78 } | 78 } |
| 79 | 79 |
| 80 class _AudioBufferSourceNodeJs extends _AudioSourceNodeJs implements AudioBuffer
SourceNode native "*AudioBufferSourceNode" { | 80 class _AudioBufferSourceNodeJs extends _AudioSourceNodeJs implements AudioBuffer
SourceNode native "*AudioBufferSourceNode" { |
| 81 | 81 |
| 82 static final int FINISHED_STATE = 3; | 82 static const int FINISHED_STATE = 3; |
| 83 | 83 |
| 84 static final int PLAYING_STATE = 2; | 84 static const int PLAYING_STATE = 2; |
| 85 | 85 |
| 86 static final int SCHEDULED_STATE = 1; | 86 static const int SCHEDULED_STATE = 1; |
| 87 | 87 |
| 88 static final int UNSCHEDULED_STATE = 0; | 88 static const int UNSCHEDULED_STATE = 0; |
| 89 | 89 |
| 90 _AudioBufferJs buffer; | 90 _AudioBufferJs buffer; |
| 91 | 91 |
| 92 final _AudioGainJs gain; | 92 final _AudioGainJs gain; |
| 93 | 93 |
| 94 bool loop; | 94 bool loop; |
| 95 | 95 |
| 96 bool looping; | 96 bool looping; |
| 97 | 97 |
| 98 final _AudioParamJs playbackRate; | 98 final _AudioParamJs playbackRate; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 | 197 |
| 198 final int numberOfOutputs; | 198 final int numberOfOutputs; |
| 199 | 199 |
| 200 void connect(destination, int output, [int input]) native; | 200 void connect(destination, int output, [int input]) native; |
| 201 | 201 |
| 202 void disconnect(int output) native; | 202 void disconnect(int output) native; |
| 203 } | 203 } |
| 204 | 204 |
| 205 class _AudioPannerNodeJs extends _AudioNodeJs implements AudioPannerNode native
"*AudioPannerNode" { | 205 class _AudioPannerNodeJs extends _AudioNodeJs implements AudioPannerNode native
"*AudioPannerNode" { |
| 206 | 206 |
| 207 static final int EQUALPOWER = 0; | 207 static const int EQUALPOWER = 0; |
| 208 | 208 |
| 209 static final int EXPONENTIAL_DISTANCE = 2; | 209 static const int EXPONENTIAL_DISTANCE = 2; |
| 210 | 210 |
| 211 static final int HRTF = 1; | 211 static const int HRTF = 1; |
| 212 | 212 |
| 213 static final int INVERSE_DISTANCE = 1; | 213 static const int INVERSE_DISTANCE = 1; |
| 214 | 214 |
| 215 static final int LINEAR_DISTANCE = 0; | 215 static const int LINEAR_DISTANCE = 0; |
| 216 | 216 |
| 217 static final int SOUNDFIELD = 2; | 217 static const int SOUNDFIELD = 2; |
| 218 | 218 |
| 219 final _AudioGainJs coneGain; | 219 final _AudioGainJs coneGain; |
| 220 | 220 |
| 221 num coneInnerAngle; | 221 num coneInnerAngle; |
| 222 | 222 |
| 223 num coneOuterAngle; | 223 num coneOuterAngle; |
| 224 | 224 |
| 225 num coneOuterGain; | 225 num coneOuterGain; |
| 226 | 226 |
| 227 final _AudioGainJs distanceGain; | 227 final _AudioGainJs distanceGain; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 302 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 303 } | 303 } |
| 304 | 304 |
| 305 class _BeforeLoadEventJs extends _EventJs implements BeforeLoadEvent native "*Be
foreLoadEvent" { | 305 class _BeforeLoadEventJs extends _EventJs implements BeforeLoadEvent native "*Be
foreLoadEvent" { |
| 306 | 306 |
| 307 final String url; | 307 final String url; |
| 308 } | 308 } |
| 309 | 309 |
| 310 class _BiquadFilterNodeJs extends _AudioNodeJs implements BiquadFilterNode nativ
e "*BiquadFilterNode" { | 310 class _BiquadFilterNodeJs extends _AudioNodeJs implements BiquadFilterNode nativ
e "*BiquadFilterNode" { |
| 311 | 311 |
| 312 static final int ALLPASS = 7; | 312 static const int ALLPASS = 7; |
| 313 | 313 |
| 314 static final int BANDPASS = 2; | 314 static const int BANDPASS = 2; |
| 315 | 315 |
| 316 static final int HIGHPASS = 1; | 316 static const int HIGHPASS = 1; |
| 317 | 317 |
| 318 static final int HIGHSHELF = 4; | 318 static const int HIGHSHELF = 4; |
| 319 | 319 |
| 320 static final int LOWPASS = 0; | 320 static const int LOWPASS = 0; |
| 321 | 321 |
| 322 static final int LOWSHELF = 3; | 322 static const int LOWSHELF = 3; |
| 323 | 323 |
| 324 static final int NOTCH = 6; | 324 static const int NOTCH = 6; |
| 325 | 325 |
| 326 static final int PEAKING = 5; | 326 static const int PEAKING = 5; |
| 327 | 327 |
| 328 final _AudioParamJs Q; | 328 final _AudioParamJs Q; |
| 329 | 329 |
| 330 final _AudioParamJs frequency; | 330 final _AudioParamJs frequency; |
| 331 | 331 |
| 332 final _AudioParamJs gain; | 332 final _AudioParamJs gain; |
| 333 | 333 |
| 334 int type; | 334 int type; |
| 335 | 335 |
| 336 void getFrequencyResponse(_Float32ArrayJs frequencyHz, _Float32ArrayJs magResp
onse, _Float32ArrayJs phaseResponse) native; | 336 void getFrequencyResponse(_Float32ArrayJs frequencyHz, _Float32ArrayJs magResp
onse, _Float32ArrayJs phaseResponse) native; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 | 382 |
| 383 class _CSSPageRuleJs extends _CSSRuleJs implements CSSPageRule native "*CSSPageR
ule" { | 383 class _CSSPageRuleJs extends _CSSRuleJs implements CSSPageRule native "*CSSPageR
ule" { |
| 384 | 384 |
| 385 String selectorText; | 385 String selectorText; |
| 386 | 386 |
| 387 final _CSSStyleDeclarationJs style; | 387 final _CSSStyleDeclarationJs style; |
| 388 } | 388 } |
| 389 | 389 |
| 390 class _CSSPrimitiveValueJs extends _CSSValueJs implements CSSPrimitiveValue nati
ve "*CSSPrimitiveValue" { | 390 class _CSSPrimitiveValueJs extends _CSSValueJs implements CSSPrimitiveValue nati
ve "*CSSPrimitiveValue" { |
| 391 | 391 |
| 392 static final int CSS_ATTR = 22; | 392 static const int CSS_ATTR = 22; |
| 393 | 393 |
| 394 static final int CSS_CM = 6; | 394 static const int CSS_CM = 6; |
| 395 | 395 |
| 396 static final int CSS_COUNTER = 23; | 396 static const int CSS_COUNTER = 23; |
| 397 | 397 |
| 398 static final int CSS_DEG = 11; | 398 static const int CSS_DEG = 11; |
| 399 | 399 |
| 400 static final int CSS_DIMENSION = 18; | 400 static const int CSS_DIMENSION = 18; |
| 401 | 401 |
| 402 static final int CSS_EMS = 3; | 402 static const int CSS_EMS = 3; |
| 403 | 403 |
| 404 static final int CSS_EXS = 4; | 404 static const int CSS_EXS = 4; |
| 405 | 405 |
| 406 static final int CSS_GRAD = 13; | 406 static const int CSS_GRAD = 13; |
| 407 | 407 |
| 408 static final int CSS_HZ = 16; | 408 static const int CSS_HZ = 16; |
| 409 | 409 |
| 410 static final int CSS_IDENT = 21; | 410 static const int CSS_IDENT = 21; |
| 411 | 411 |
| 412 static final int CSS_IN = 8; | 412 static const int CSS_IN = 8; |
| 413 | 413 |
| 414 static final int CSS_KHZ = 17; | 414 static const int CSS_KHZ = 17; |
| 415 | 415 |
| 416 static final int CSS_MM = 7; | 416 static const int CSS_MM = 7; |
| 417 | 417 |
| 418 static final int CSS_MS = 14; | 418 static const int CSS_MS = 14; |
| 419 | 419 |
| 420 static final int CSS_NUMBER = 1; | 420 static const int CSS_NUMBER = 1; |
| 421 | 421 |
| 422 static final int CSS_PC = 10; | 422 static const int CSS_PC = 10; |
| 423 | 423 |
| 424 static final int CSS_PERCENTAGE = 2; | 424 static const int CSS_PERCENTAGE = 2; |
| 425 | 425 |
| 426 static final int CSS_PT = 9; | 426 static const int CSS_PT = 9; |
| 427 | 427 |
| 428 static final int CSS_PX = 5; | 428 static const int CSS_PX = 5; |
| 429 | 429 |
| 430 static final int CSS_RAD = 12; | 430 static const int CSS_RAD = 12; |
| 431 | 431 |
| 432 static final int CSS_RECT = 24; | 432 static const int CSS_RECT = 24; |
| 433 | 433 |
| 434 static final int CSS_RGBCOLOR = 25; | 434 static const int CSS_RGBCOLOR = 25; |
| 435 | 435 |
| 436 static final int CSS_S = 15; | 436 static const int CSS_S = 15; |
| 437 | 437 |
| 438 static final int CSS_STRING = 19; | 438 static const int CSS_STRING = 19; |
| 439 | 439 |
| 440 static final int CSS_UNKNOWN = 0; | 440 static const int CSS_UNKNOWN = 0; |
| 441 | 441 |
| 442 static final int CSS_URI = 20; | 442 static const int CSS_URI = 20; |
| 443 | 443 |
| 444 static final int CSS_VH = 27; | 444 static const int CSS_VH = 27; |
| 445 | 445 |
| 446 static final int CSS_VMIN = 28; | 446 static const int CSS_VMIN = 28; |
| 447 | 447 |
| 448 static final int CSS_VW = 26; | 448 static const int CSS_VW = 26; |
| 449 | 449 |
| 450 final int primitiveType; | 450 final int primitiveType; |
| 451 | 451 |
| 452 _CounterJs getCounterValue() native; | 452 _CounterJs getCounterValue() native; |
| 453 | 453 |
| 454 num getFloatValue(int unitType) native; | 454 num getFloatValue(int unitType) native; |
| 455 | 455 |
| 456 _RGBColorJs getRGBColorValue() native; | 456 _RGBColorJs getRGBColorValue() native; |
| 457 | 457 |
| 458 _RectJs getRectValue() native; | 458 _RectJs getRectValue() native; |
| 459 | 459 |
| 460 String getStringValue() native; | 460 String getStringValue() native; |
| 461 | 461 |
| 462 void setFloatValue(int unitType, num floatValue) native; | 462 void setFloatValue(int unitType, num floatValue) native; |
| 463 | 463 |
| 464 void setStringValue(int stringType, String stringValue) native; | 464 void setStringValue(int stringType, String stringValue) native; |
| 465 } | 465 } |
| 466 | 466 |
| 467 class _CSSRuleJs extends _DOMTypeJs implements CSSRule native "*CSSRule" { | 467 class _CSSRuleJs extends _DOMTypeJs implements CSSRule native "*CSSRule" { |
| 468 | 468 |
| 469 static final int CHARSET_RULE = 2; | 469 static const int CHARSET_RULE = 2; |
| 470 | 470 |
| 471 static final int FONT_FACE_RULE = 5; | 471 static const int FONT_FACE_RULE = 5; |
| 472 | 472 |
| 473 static final int IMPORT_RULE = 3; | 473 static const int IMPORT_RULE = 3; |
| 474 | 474 |
| 475 static final int MEDIA_RULE = 4; | 475 static const int MEDIA_RULE = 4; |
| 476 | 476 |
| 477 static final int PAGE_RULE = 6; | 477 static const int PAGE_RULE = 6; |
| 478 | 478 |
| 479 static final int STYLE_RULE = 1; | 479 static const int STYLE_RULE = 1; |
| 480 | 480 |
| 481 static final int UNKNOWN_RULE = 0; | 481 static const int UNKNOWN_RULE = 0; |
| 482 | 482 |
| 483 static final int WEBKIT_KEYFRAMES_RULE = 7; | 483 static const int WEBKIT_KEYFRAMES_RULE = 7; |
| 484 | 484 |
| 485 static final int WEBKIT_KEYFRAME_RULE = 8; | 485 static const int WEBKIT_KEYFRAME_RULE = 8; |
| 486 | 486 |
| 487 String cssText; | 487 String cssText; |
| 488 | 488 |
| 489 final _CSSRuleJs parentRule; | 489 final _CSSRuleJs parentRule; |
| 490 | 490 |
| 491 final _CSSStyleSheetJs parentStyleSheet; | 491 final _CSSStyleSheetJs parentStyleSheet; |
| 492 | 492 |
| 493 final int type; | 493 final int type; |
| 494 } | 494 } |
| 495 | 495 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 int insertRule(String rule, int index) native; | 547 int insertRule(String rule, int index) native; |
| 548 | 548 |
| 549 void removeRule(int index) native; | 549 void removeRule(int index) native; |
| 550 } | 550 } |
| 551 | 551 |
| 552 class _CSSUnknownRuleJs extends _CSSRuleJs implements CSSUnknownRule native "*CS
SUnknownRule" { | 552 class _CSSUnknownRuleJs extends _CSSRuleJs implements CSSUnknownRule native "*CS
SUnknownRule" { |
| 553 } | 553 } |
| 554 | 554 |
| 555 class _CSSValueJs extends _DOMTypeJs implements CSSValue native "*CSSValue" { | 555 class _CSSValueJs extends _DOMTypeJs implements CSSValue native "*CSSValue" { |
| 556 | 556 |
| 557 static final int CSS_CUSTOM = 3; | 557 static const int CSS_CUSTOM = 3; |
| 558 | 558 |
| 559 static final int CSS_INHERIT = 0; | 559 static const int CSS_INHERIT = 0; |
| 560 | 560 |
| 561 static final int CSS_PRIMITIVE_VALUE = 1; | 561 static const int CSS_PRIMITIVE_VALUE = 1; |
| 562 | 562 |
| 563 static final int CSS_VALUE_LIST = 2; | 563 static const int CSS_VALUE_LIST = 2; |
| 564 | 564 |
| 565 String cssText; | 565 String cssText; |
| 566 | 566 |
| 567 final int cssValueType; | 567 final int cssValueType; |
| 568 } | 568 } |
| 569 | 569 |
| 570 class _CSSValueListJs extends _CSSValueJs implements CSSValueList native "*CSSVa
lueList" { | 570 class _CSSValueListJs extends _CSSValueJs implements CSSValueList native "*CSSVa
lueList" { |
| 571 | 571 |
| 572 final int length; | 572 final int length; |
| 573 | 573 |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 897 | 897 |
| 898 class _CustomEventJs extends _EventJs implements CustomEvent native "*CustomEven
t" { | 898 class _CustomEventJs extends _EventJs implements CustomEvent native "*CustomEven
t" { |
| 899 | 899 |
| 900 final Object detail; | 900 final Object detail; |
| 901 | 901 |
| 902 void initCustomEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Ob
ject detailArg) native; | 902 void initCustomEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Ob
ject detailArg) native; |
| 903 } | 903 } |
| 904 | 904 |
| 905 class _DOMApplicationCacheJs extends _EventTargetJs implements DOMApplicationCac
he native "*DOMApplicationCache" { | 905 class _DOMApplicationCacheJs extends _EventTargetJs implements DOMApplicationCac
he native "*DOMApplicationCache" { |
| 906 | 906 |
| 907 static final int CHECKING = 2; | 907 static const int CHECKING = 2; |
| 908 | 908 |
| 909 static final int DOWNLOADING = 3; | 909 static const int DOWNLOADING = 3; |
| 910 | 910 |
| 911 static final int IDLE = 1; | 911 static const int IDLE = 1; |
| 912 | 912 |
| 913 static final int OBSOLETE = 5; | 913 static const int OBSOLETE = 5; |
| 914 | 914 |
| 915 static final int UNCACHED = 0; | 915 static const int UNCACHED = 0; |
| 916 | 916 |
| 917 static final int UPDATEREADY = 4; | 917 static const int UPDATEREADY = 4; |
| 918 | 918 |
| 919 final int status; | 919 final int status; |
| 920 | 920 |
| 921 void abort() native; | 921 void abort() native; |
| 922 | 922 |
| 923 void addEventListener(String type, EventListener listener, [bool useCapture])
native; | 923 void addEventListener(String type, EventListener listener, [bool useCapture])
native; |
| 924 | 924 |
| 925 bool dispatchEvent(_EventJs evt) native; | 925 bool dispatchEvent(_EventJs evt) native; |
| 926 | 926 |
| 927 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 927 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 928 | 928 |
| 929 void swapCache() native; | 929 void swapCache() native; |
| 930 | 930 |
| 931 void update() native; | 931 void update() native; |
| 932 } | 932 } |
| 933 | 933 |
| 934 class _DOMErrorJs extends _DOMTypeJs implements DOMError native "*DOMError" { | 934 class _DOMErrorJs extends _DOMTypeJs implements DOMError native "*DOMError" { |
| 935 | 935 |
| 936 final String name; | 936 final String name; |
| 937 } | 937 } |
| 938 | 938 |
| 939 class _DOMExceptionJs extends _DOMTypeJs implements DOMException native "*DOMExc
eption" { | 939 class _DOMExceptionJs extends _DOMTypeJs implements DOMException native "*DOMExc
eption" { |
| 940 | 940 |
| 941 static final int ABORT_ERR = 20; | 941 static const int ABORT_ERR = 20; |
| 942 | 942 |
| 943 static final int DATA_CLONE_ERR = 25; | 943 static const int DATA_CLONE_ERR = 25; |
| 944 | 944 |
| 945 static final int DOMSTRING_SIZE_ERR = 2; | 945 static const int DOMSTRING_SIZE_ERR = 2; |
| 946 | 946 |
| 947 static final int HIERARCHY_REQUEST_ERR = 3; | 947 static const int HIERARCHY_REQUEST_ERR = 3; |
| 948 | 948 |
| 949 static final int INDEX_SIZE_ERR = 1; | 949 static const int INDEX_SIZE_ERR = 1; |
| 950 | 950 |
| 951 static final int INUSE_ATTRIBUTE_ERR = 10; | 951 static const int INUSE_ATTRIBUTE_ERR = 10; |
| 952 | 952 |
| 953 static final int INVALID_ACCESS_ERR = 15; | 953 static const int INVALID_ACCESS_ERR = 15; |
| 954 | 954 |
| 955 static final int INVALID_CHARACTER_ERR = 5; | 955 static const int INVALID_CHARACTER_ERR = 5; |
| 956 | 956 |
| 957 static final int INVALID_MODIFICATION_ERR = 13; | 957 static const int INVALID_MODIFICATION_ERR = 13; |
| 958 | 958 |
| 959 static final int INVALID_NODE_TYPE_ERR = 24; | 959 static const int INVALID_NODE_TYPE_ERR = 24; |
| 960 | 960 |
| 961 static final int INVALID_STATE_ERR = 11; | 961 static const int INVALID_STATE_ERR = 11; |
| 962 | 962 |
| 963 static final int NAMESPACE_ERR = 14; | 963 static const int NAMESPACE_ERR = 14; |
| 964 | 964 |
| 965 static final int NETWORK_ERR = 19; | 965 static const int NETWORK_ERR = 19; |
| 966 | 966 |
| 967 static final int NOT_FOUND_ERR = 8; | 967 static const int NOT_FOUND_ERR = 8; |
| 968 | 968 |
| 969 static final int NOT_SUPPORTED_ERR = 9; | 969 static const int NOT_SUPPORTED_ERR = 9; |
| 970 | 970 |
| 971 static final int NO_DATA_ALLOWED_ERR = 6; | 971 static const int NO_DATA_ALLOWED_ERR = 6; |
| 972 | 972 |
| 973 static final int NO_MODIFICATION_ALLOWED_ERR = 7; | 973 static const int NO_MODIFICATION_ALLOWED_ERR = 7; |
| 974 | 974 |
| 975 static final int QUOTA_EXCEEDED_ERR = 22; | 975 static const int QUOTA_EXCEEDED_ERR = 22; |
| 976 | 976 |
| 977 static final int SECURITY_ERR = 18; | 977 static const int SECURITY_ERR = 18; |
| 978 | 978 |
| 979 static final int SYNTAX_ERR = 12; | 979 static const int SYNTAX_ERR = 12; |
| 980 | 980 |
| 981 static final int TIMEOUT_ERR = 23; | 981 static const int TIMEOUT_ERR = 23; |
| 982 | 982 |
| 983 static final int TYPE_MISMATCH_ERR = 17; | 983 static const int TYPE_MISMATCH_ERR = 17; |
| 984 | 984 |
| 985 static final int URL_MISMATCH_ERR = 21; | 985 static const int URL_MISMATCH_ERR = 21; |
| 986 | 986 |
| 987 static final int VALIDATION_ERR = 16; | 987 static const int VALIDATION_ERR = 16; |
| 988 | 988 |
| 989 static final int WRONG_DOCUMENT_ERR = 4; | 989 static const int WRONG_DOCUMENT_ERR = 4; |
| 990 | 990 |
| 991 final int code; | 991 final int code; |
| 992 | 992 |
| 993 final String message; | 993 final String message; |
| 994 | 994 |
| 995 final String name; | 995 final String name; |
| 996 | 996 |
| 997 String toString() native; | 997 String toString() native; |
| 998 } | 998 } |
| 999 | 999 |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1272 window.setTimeout(callback, 16 /* 16ms ~= 60fps */); | 1272 window.setTimeout(callback, 16 /* 16ms ~= 60fps */); |
| 1273 }; | 1273 }; |
| 1274 } | 1274 } |
| 1275 return window.requestAnimationFrame(callback); | 1275 return window.requestAnimationFrame(callback); |
| 1276 '''; | 1276 '''; |
| 1277 | 1277 |
| 1278 // Protect member 'requestAnimationFrame'. | 1278 // Protect member 'requestAnimationFrame'. |
| 1279 _requestAnimationFrame() native 'requestAnimationFrame'; | 1279 _requestAnimationFrame() native 'requestAnimationFrame'; |
| 1280 | 1280 |
| 1281 | 1281 |
| 1282 static final int PERSISTENT = 1; | 1282 static const int PERSISTENT = 1; |
| 1283 | 1283 |
| 1284 static final int TEMPORARY = 0; | 1284 static const int TEMPORARY = 0; |
| 1285 | 1285 |
| 1286 final _DOMApplicationCacheJs applicationCache; | 1286 final _DOMApplicationCacheJs applicationCache; |
| 1287 | 1287 |
| 1288 final _NavigatorJs clientInformation; | 1288 final _NavigatorJs clientInformation; |
| 1289 | 1289 |
| 1290 final bool closed; | 1290 final bool closed; |
| 1291 | 1291 |
| 1292 final _ConsoleJs console; | 1292 final _ConsoleJs console; |
| 1293 | 1293 |
| 1294 final _CryptoJs crypto; | 1294 final _CryptoJs crypto; |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1811 | 1811 |
| 1812 final _AudioParamJs reduction; | 1812 final _AudioParamJs reduction; |
| 1813 | 1813 |
| 1814 final _AudioParamJs release; | 1814 final _AudioParamJs release; |
| 1815 | 1815 |
| 1816 final _AudioParamJs threshold; | 1816 final _AudioParamJs threshold; |
| 1817 } | 1817 } |
| 1818 | 1818 |
| 1819 class _EXTTextureFilterAnisotropicJs extends _DOMTypeJs implements EXTTextureFil
terAnisotropic native "*EXTTextureFilterAnisotropic" { | 1819 class _EXTTextureFilterAnisotropicJs extends _DOMTypeJs implements EXTTextureFil
terAnisotropic native "*EXTTextureFilterAnisotropic" { |
| 1820 | 1820 |
| 1821 static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; | 1821 static const int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; |
| 1822 | 1822 |
| 1823 static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; | 1823 static const int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; |
| 1824 } | 1824 } |
| 1825 | 1825 |
| 1826 class _ElementJs extends _NodeJs implements Element native "*Element" { | 1826 class _ElementJs extends _NodeJs implements Element native "*Element" { |
| 1827 | 1827 |
| 1828 static final int ALLOW_KEYBOARD_INPUT = 1; | 1828 static const int ALLOW_KEYBOARD_INPUT = 1; |
| 1829 | 1829 |
| 1830 final int childElementCount; | 1830 final int childElementCount; |
| 1831 | 1831 |
| 1832 final _DOMTokenListJs classList; | 1832 final _DOMTokenListJs classList; |
| 1833 | 1833 |
| 1834 String className; | 1834 String className; |
| 1835 | 1835 |
| 1836 final int clientHeight; | 1836 final int clientHeight; |
| 1837 | 1837 |
| 1838 final int clientLeft; | 1838 final int clientLeft; |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2016 | 2016 |
| 2017 final String filename; | 2017 final String filename; |
| 2018 | 2018 |
| 2019 final int lineno; | 2019 final int lineno; |
| 2020 | 2020 |
| 2021 final String message; | 2021 final String message; |
| 2022 } | 2022 } |
| 2023 | 2023 |
| 2024 class _EventJs extends _DOMTypeJs implements Event native "*Event" { | 2024 class _EventJs extends _DOMTypeJs implements Event native "*Event" { |
| 2025 | 2025 |
| 2026 static final int AT_TARGET = 2; | 2026 static const int AT_TARGET = 2; |
| 2027 | 2027 |
| 2028 static final int BLUR = 8192; | 2028 static const int BLUR = 8192; |
| 2029 | 2029 |
| 2030 static final int BUBBLING_PHASE = 3; | 2030 static const int BUBBLING_PHASE = 3; |
| 2031 | 2031 |
| 2032 static final int CAPTURING_PHASE = 1; | 2032 static const int CAPTURING_PHASE = 1; |
| 2033 | 2033 |
| 2034 static final int CHANGE = 32768; | 2034 static const int CHANGE = 32768; |
| 2035 | 2035 |
| 2036 static final int CLICK = 64; | 2036 static const int CLICK = 64; |
| 2037 | 2037 |
| 2038 static final int DBLCLICK = 128; | 2038 static const int DBLCLICK = 128; |
| 2039 | 2039 |
| 2040 static final int DRAGDROP = 2048; | 2040 static const int DRAGDROP = 2048; |
| 2041 | 2041 |
| 2042 static final int FOCUS = 4096; | 2042 static const int FOCUS = 4096; |
| 2043 | 2043 |
| 2044 static final int KEYDOWN = 256; | 2044 static const int KEYDOWN = 256; |
| 2045 | 2045 |
| 2046 static final int KEYPRESS = 1024; | 2046 static const int KEYPRESS = 1024; |
| 2047 | 2047 |
| 2048 static final int KEYUP = 512; | 2048 static const int KEYUP = 512; |
| 2049 | 2049 |
| 2050 static final int MOUSEDOWN = 1; | 2050 static const int MOUSEDOWN = 1; |
| 2051 | 2051 |
| 2052 static final int MOUSEDRAG = 32; | 2052 static const int MOUSEDRAG = 32; |
| 2053 | 2053 |
| 2054 static final int MOUSEMOVE = 16; | 2054 static const int MOUSEMOVE = 16; |
| 2055 | 2055 |
| 2056 static final int MOUSEOUT = 8; | 2056 static const int MOUSEOUT = 8; |
| 2057 | 2057 |
| 2058 static final int MOUSEOVER = 4; | 2058 static const int MOUSEOVER = 4; |
| 2059 | 2059 |
| 2060 static final int MOUSEUP = 2; | 2060 static const int MOUSEUP = 2; |
| 2061 | 2061 |
| 2062 static final int NONE = 0; | 2062 static const int NONE = 0; |
| 2063 | 2063 |
| 2064 static final int SELECT = 16384; | 2064 static const int SELECT = 16384; |
| 2065 | 2065 |
| 2066 final bool bubbles; | 2066 final bool bubbles; |
| 2067 | 2067 |
| 2068 bool cancelBubble; | 2068 bool cancelBubble; |
| 2069 | 2069 |
| 2070 final bool cancelable; | 2070 final bool cancelable; |
| 2071 | 2071 |
| 2072 final _ClipboardJs clipboardData; | 2072 final _ClipboardJs clipboardData; |
| 2073 | 2073 |
| 2074 final _EventTargetJs currentTarget; | 2074 final _EventTargetJs currentTarget; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2091 | 2091 |
| 2092 void preventDefault() native; | 2092 void preventDefault() native; |
| 2093 | 2093 |
| 2094 void stopImmediatePropagation() native; | 2094 void stopImmediatePropagation() native; |
| 2095 | 2095 |
| 2096 void stopPropagation() native; | 2096 void stopPropagation() native; |
| 2097 } | 2097 } |
| 2098 | 2098 |
| 2099 class _EventExceptionJs extends _DOMTypeJs implements EventException native "*Ev
entException" { | 2099 class _EventExceptionJs extends _DOMTypeJs implements EventException native "*Ev
entException" { |
| 2100 | 2100 |
| 2101 static final int DISPATCH_REQUEST_ERR = 1; | 2101 static const int DISPATCH_REQUEST_ERR = 1; |
| 2102 | 2102 |
| 2103 static final int UNSPECIFIED_EVENT_TYPE_ERR = 0; | 2103 static const int UNSPECIFIED_EVENT_TYPE_ERR = 0; |
| 2104 | 2104 |
| 2105 final int code; | 2105 final int code; |
| 2106 | 2106 |
| 2107 final String message; | 2107 final String message; |
| 2108 | 2108 |
| 2109 final String name; | 2109 final String name; |
| 2110 | 2110 |
| 2111 String toString() native; | 2111 String toString() native; |
| 2112 } | 2112 } |
| 2113 | 2113 |
| 2114 class _EventSourceJs extends _EventTargetJs implements EventSource native "*Even
tSource" { | 2114 class _EventSourceJs extends _EventTargetJs implements EventSource native "*Even
tSource" { |
| 2115 | 2115 |
| 2116 static final int CLOSED = 2; | 2116 static const int CLOSED = 2; |
| 2117 | 2117 |
| 2118 static final int CONNECTING = 0; | 2118 static const int CONNECTING = 0; |
| 2119 | 2119 |
| 2120 static final int OPEN = 1; | 2120 static const int OPEN = 1; |
| 2121 | 2121 |
| 2122 final String URL; | 2122 final String URL; |
| 2123 | 2123 |
| 2124 final int readyState; | 2124 final int readyState; |
| 2125 | 2125 |
| 2126 final String url; | 2126 final String url; |
| 2127 | 2127 |
| 2128 void addEventListener(String type, EventListener listener, [bool useCapture])
native; | 2128 void addEventListener(String type, EventListener listener, [bool useCapture])
native; |
| 2129 | 2129 |
| 2130 void close() native; | 2130 void close() native; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 2161 | 2161 |
| 2162 class _FileEntrySyncJs extends _EntrySyncJs implements FileEntrySync native "*Fi
leEntrySync" { | 2162 class _FileEntrySyncJs extends _EntrySyncJs implements FileEntrySync native "*Fi
leEntrySync" { |
| 2163 | 2163 |
| 2164 _FileWriterSyncJs createWriter() native; | 2164 _FileWriterSyncJs createWriter() native; |
| 2165 | 2165 |
| 2166 _FileJs file() native; | 2166 _FileJs file() native; |
| 2167 } | 2167 } |
| 2168 | 2168 |
| 2169 class _FileErrorJs extends _DOMTypeJs implements FileError native "*FileError" { | 2169 class _FileErrorJs extends _DOMTypeJs implements FileError native "*FileError" { |
| 2170 | 2170 |
| 2171 static final int ABORT_ERR = 3; | 2171 static const int ABORT_ERR = 3; |
| 2172 | 2172 |
| 2173 static final int ENCODING_ERR = 5; | 2173 static const int ENCODING_ERR = 5; |
| 2174 | 2174 |
| 2175 static final int INVALID_MODIFICATION_ERR = 9; | 2175 static const int INVALID_MODIFICATION_ERR = 9; |
| 2176 | 2176 |
| 2177 static final int INVALID_STATE_ERR = 7; | 2177 static const int INVALID_STATE_ERR = 7; |
| 2178 | 2178 |
| 2179 static final int NOT_FOUND_ERR = 1; | 2179 static const int NOT_FOUND_ERR = 1; |
| 2180 | 2180 |
| 2181 static final int NOT_READABLE_ERR = 4; | 2181 static const int NOT_READABLE_ERR = 4; |
| 2182 | 2182 |
| 2183 static final int NO_MODIFICATION_ALLOWED_ERR = 6; | 2183 static const int NO_MODIFICATION_ALLOWED_ERR = 6; |
| 2184 | 2184 |
| 2185 static final int PATH_EXISTS_ERR = 12; | 2185 static const int PATH_EXISTS_ERR = 12; |
| 2186 | 2186 |
| 2187 static final int QUOTA_EXCEEDED_ERR = 10; | 2187 static const int QUOTA_EXCEEDED_ERR = 10; |
| 2188 | 2188 |
| 2189 static final int SECURITY_ERR = 2; | 2189 static const int SECURITY_ERR = 2; |
| 2190 | 2190 |
| 2191 static final int SYNTAX_ERR = 8; | 2191 static const int SYNTAX_ERR = 8; |
| 2192 | 2192 |
| 2193 static final int TYPE_MISMATCH_ERR = 11; | 2193 static const int TYPE_MISMATCH_ERR = 11; |
| 2194 | 2194 |
| 2195 final int code; | 2195 final int code; |
| 2196 } | 2196 } |
| 2197 | 2197 |
| 2198 class _FileExceptionJs extends _DOMTypeJs implements FileException native "*File
Exception" { | 2198 class _FileExceptionJs extends _DOMTypeJs implements FileException native "*File
Exception" { |
| 2199 | 2199 |
| 2200 static final int ABORT_ERR = 3; | 2200 static const int ABORT_ERR = 3; |
| 2201 | 2201 |
| 2202 static final int ENCODING_ERR = 5; | 2202 static const int ENCODING_ERR = 5; |
| 2203 | 2203 |
| 2204 static final int INVALID_MODIFICATION_ERR = 9; | 2204 static const int INVALID_MODIFICATION_ERR = 9; |
| 2205 | 2205 |
| 2206 static final int INVALID_STATE_ERR = 7; | 2206 static const int INVALID_STATE_ERR = 7; |
| 2207 | 2207 |
| 2208 static final int NOT_FOUND_ERR = 1; | 2208 static const int NOT_FOUND_ERR = 1; |
| 2209 | 2209 |
| 2210 static final int NOT_READABLE_ERR = 4; | 2210 static const int NOT_READABLE_ERR = 4; |
| 2211 | 2211 |
| 2212 static final int NO_MODIFICATION_ALLOWED_ERR = 6; | 2212 static const int NO_MODIFICATION_ALLOWED_ERR = 6; |
| 2213 | 2213 |
| 2214 static final int PATH_EXISTS_ERR = 12; | 2214 static const int PATH_EXISTS_ERR = 12; |
| 2215 | 2215 |
| 2216 static final int QUOTA_EXCEEDED_ERR = 10; | 2216 static const int QUOTA_EXCEEDED_ERR = 10; |
| 2217 | 2217 |
| 2218 static final int SECURITY_ERR = 2; | 2218 static const int SECURITY_ERR = 2; |
| 2219 | 2219 |
| 2220 static final int SYNTAX_ERR = 8; | 2220 static const int SYNTAX_ERR = 8; |
| 2221 | 2221 |
| 2222 static final int TYPE_MISMATCH_ERR = 11; | 2222 static const int TYPE_MISMATCH_ERR = 11; |
| 2223 | 2223 |
| 2224 final int code; | 2224 final int code; |
| 2225 | 2225 |
| 2226 final String message; | 2226 final String message; |
| 2227 | 2227 |
| 2228 final String name; | 2228 final String name; |
| 2229 | 2229 |
| 2230 String toString() native; | 2230 String toString() native; |
| 2231 } | 2231 } |
| 2232 | 2232 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2314 List<File> getRange(int start, int rangeLength) => | 2314 List<File> getRange(int start, int rangeLength) => |
| 2315 _Lists.getRange(this, start, rangeLength, <File>[]); | 2315 _Lists.getRange(this, start, rangeLength, <File>[]); |
| 2316 | 2316 |
| 2317 // -- end List<File> mixins. | 2317 // -- end List<File> mixins. |
| 2318 | 2318 |
| 2319 _FileJs item(int index) native; | 2319 _FileJs item(int index) native; |
| 2320 } | 2320 } |
| 2321 | 2321 |
| 2322 class _FileReaderJs extends _EventTargetJs implements FileReader native "*FileRe
ader" { | 2322 class _FileReaderJs extends _EventTargetJs implements FileReader native "*FileRe
ader" { |
| 2323 | 2323 |
| 2324 static final int DONE = 2; | 2324 static const int DONE = 2; |
| 2325 | 2325 |
| 2326 static final int EMPTY = 0; | 2326 static const int EMPTY = 0; |
| 2327 | 2327 |
| 2328 static final int LOADING = 1; | 2328 static const int LOADING = 1; |
| 2329 | 2329 |
| 2330 final _FileErrorJs error; | 2330 final _FileErrorJs error; |
| 2331 | 2331 |
| 2332 final int readyState; | 2332 final int readyState; |
| 2333 | 2333 |
| 2334 final Object result; | 2334 final Object result; |
| 2335 | 2335 |
| 2336 void abort() native; | 2336 void abort() native; |
| 2337 | 2337 |
| 2338 void addEventListener(String type, EventListener listener, [bool useCapture])
native; | 2338 void addEventListener(String type, EventListener listener, [bool useCapture])
native; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 2356 | 2356 |
| 2357 String readAsBinaryString(_BlobJs blob) native; | 2357 String readAsBinaryString(_BlobJs blob) native; |
| 2358 | 2358 |
| 2359 String readAsDataURL(_BlobJs blob) native; | 2359 String readAsDataURL(_BlobJs blob) native; |
| 2360 | 2360 |
| 2361 String readAsText(_BlobJs blob, [String encoding]) native; | 2361 String readAsText(_BlobJs blob, [String encoding]) native; |
| 2362 } | 2362 } |
| 2363 | 2363 |
| 2364 class _FileWriterJs extends _EventTargetJs implements FileWriter native "*FileWr
iter" { | 2364 class _FileWriterJs extends _EventTargetJs implements FileWriter native "*FileWr
iter" { |
| 2365 | 2365 |
| 2366 static final int DONE = 2; | 2366 static const int DONE = 2; |
| 2367 | 2367 |
| 2368 static final int INIT = 0; | 2368 static const int INIT = 0; |
| 2369 | 2369 |
| 2370 static final int WRITING = 1; | 2370 static const int WRITING = 1; |
| 2371 | 2371 |
| 2372 final _FileErrorJs error; | 2372 final _FileErrorJs error; |
| 2373 | 2373 |
| 2374 final int length; | 2374 final int length; |
| 2375 | 2375 |
| 2376 final int position; | 2376 final int position; |
| 2377 | 2377 |
| 2378 final int readyState; | 2378 final int readyState; |
| 2379 | 2379 |
| 2380 void abort() native; | 2380 void abort() native; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 2400 | 2400 |
| 2401 void seek(int position) native; | 2401 void seek(int position) native; |
| 2402 | 2402 |
| 2403 void truncate(int size) native; | 2403 void truncate(int size) native; |
| 2404 | 2404 |
| 2405 void write(_BlobJs data) native; | 2405 void write(_BlobJs data) native; |
| 2406 } | 2406 } |
| 2407 | 2407 |
| 2408 class _Float32ArrayJs extends _ArrayBufferViewJs implements Float32Array, List<n
um> native "*Float32Array" { | 2408 class _Float32ArrayJs extends _ArrayBufferViewJs implements Float32Array, List<n
um> native "*Float32Array" { |
| 2409 | 2409 |
| 2410 static final int BYTES_PER_ELEMENT = 4; | 2410 static const int BYTES_PER_ELEMENT = 4; |
| 2411 | 2411 |
| 2412 final int length; | 2412 final int length; |
| 2413 | 2413 |
| 2414 num operator[](int index) native "return this[index];"; | 2414 num operator[](int index) native "return this[index];"; |
| 2415 | 2415 |
| 2416 void operator[]=(int index, num value) native "this[index] = value"; | 2416 void operator[]=(int index, num value) native "this[index] = value"; |
| 2417 // -- start List<num> mixins. | 2417 // -- start List<num> mixins. |
| 2418 // num is the element type. | 2418 // num is the element type. |
| 2419 | 2419 |
| 2420 // From Iterable<num>: | 2420 // From Iterable<num>: |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2491 | 2491 |
| 2492 // -- end List<num> mixins. | 2492 // -- end List<num> mixins. |
| 2493 | 2493 |
| 2494 void setElements(Object array, [int offset]) native 'set'; | 2494 void setElements(Object array, [int offset]) native 'set'; |
| 2495 | 2495 |
| 2496 _Float32ArrayJs subarray(int start, [int end]) native; | 2496 _Float32ArrayJs subarray(int start, [int end]) native; |
| 2497 } | 2497 } |
| 2498 | 2498 |
| 2499 class _Float64ArrayJs extends _ArrayBufferViewJs implements Float64Array, List<n
um> native "*Float64Array" { | 2499 class _Float64ArrayJs extends _ArrayBufferViewJs implements Float64Array, List<n
um> native "*Float64Array" { |
| 2500 | 2500 |
| 2501 static final int BYTES_PER_ELEMENT = 8; | 2501 static const int BYTES_PER_ELEMENT = 8; |
| 2502 | 2502 |
| 2503 final int length; | 2503 final int length; |
| 2504 | 2504 |
| 2505 num operator[](int index) native "return this[index];"; | 2505 num operator[](int index) native "return this[index];"; |
| 2506 | 2506 |
| 2507 void operator[]=(int index, num value) native "this[index] = value"; | 2507 void operator[]=(int index, num value) native "this[index] = value"; |
| 2508 // -- start List<num> mixins. | 2508 // -- start List<num> mixins. |
| 2509 // num is the element type. | 2509 // num is the element type. |
| 2510 | 2510 |
| 2511 // From Iterable<num>: | 2511 // From Iterable<num>: |
| (...skipping 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3492 | 3492 |
| 3493 String width; | 3493 String width; |
| 3494 | 3494 |
| 3495 void start() native; | 3495 void start() native; |
| 3496 | 3496 |
| 3497 void stop() native; | 3497 void stop() native; |
| 3498 } | 3498 } |
| 3499 | 3499 |
| 3500 class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat
ive "*HTMLMediaElement" { | 3500 class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat
ive "*HTMLMediaElement" { |
| 3501 | 3501 |
| 3502 static final int HAVE_CURRENT_DATA = 2; | 3502 static const int HAVE_CURRENT_DATA = 2; |
| 3503 | 3503 |
| 3504 static final int HAVE_ENOUGH_DATA = 4; | 3504 static const int HAVE_ENOUGH_DATA = 4; |
| 3505 | 3505 |
| 3506 static final int HAVE_FUTURE_DATA = 3; | 3506 static const int HAVE_FUTURE_DATA = 3; |
| 3507 | 3507 |
| 3508 static final int HAVE_METADATA = 1; | 3508 static const int HAVE_METADATA = 1; |
| 3509 | 3509 |
| 3510 static final int HAVE_NOTHING = 0; | 3510 static const int HAVE_NOTHING = 0; |
| 3511 | 3511 |
| 3512 static final int NETWORK_EMPTY = 0; | 3512 static const int NETWORK_EMPTY = 0; |
| 3513 | 3513 |
| 3514 static final int NETWORK_IDLE = 1; | 3514 static const int NETWORK_IDLE = 1; |
| 3515 | 3515 |
| 3516 static final int NETWORK_LOADING = 2; | 3516 static const int NETWORK_LOADING = 2; |
| 3517 | 3517 |
| 3518 static final int NETWORK_NO_SOURCE = 3; | 3518 static const int NETWORK_NO_SOURCE = 3; |
| 3519 | 3519 |
| 3520 bool autoplay; | 3520 bool autoplay; |
| 3521 | 3521 |
| 3522 final _TimeRangesJs buffered; | 3522 final _TimeRangesJs buffered; |
| 3523 | 3523 |
| 3524 _MediaControllerJs controller; | 3524 _MediaControllerJs controller; |
| 3525 | 3525 |
| 3526 bool controls; | 3526 bool controls; |
| 3527 | 3527 |
| 3528 final String currentSrc; | 3528 final String currentSrc; |
| (...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4100 void setSelectionRange(int start, int end, [String direction]) native; | 4100 void setSelectionRange(int start, int end, [String direction]) native; |
| 4101 } | 4101 } |
| 4102 | 4102 |
| 4103 class _HTMLTitleElementJs extends _HTMLElementJs implements HTMLTitleElement nat
ive "*HTMLTitleElement" { | 4103 class _HTMLTitleElementJs extends _HTMLElementJs implements HTMLTitleElement nat
ive "*HTMLTitleElement" { |
| 4104 | 4104 |
| 4105 String text; | 4105 String text; |
| 4106 } | 4106 } |
| 4107 | 4107 |
| 4108 class _HTMLTrackElementJs extends _HTMLElementJs implements HTMLTrackElement nat
ive "*HTMLTrackElement" { | 4108 class _HTMLTrackElementJs extends _HTMLElementJs implements HTMLTrackElement nat
ive "*HTMLTrackElement" { |
| 4109 | 4109 |
| 4110 static final int ERROR = 3; | 4110 static const int ERROR = 3; |
| 4111 | 4111 |
| 4112 static final int LOADED = 2; | 4112 static const int LOADED = 2; |
| 4113 | 4113 |
| 4114 static final int LOADING = 1; | 4114 static const int LOADING = 1; |
| 4115 | 4115 |
| 4116 static final int NONE = 0; | 4116 static const int NONE = 0; |
| 4117 | 4117 |
| 4118 bool get defaultValue() native "return this.default;"; | 4118 bool get defaultValue() native "return this.default;"; |
| 4119 void set defaultValue(bool value) native "this.default = value;"; | 4119 void set defaultValue(bool value) native "this.default = value;"; |
| 4120 | 4120 |
| 4121 String kind; | 4121 String kind; |
| 4122 | 4122 |
| 4123 String label; | 4123 String label; |
| 4124 | 4124 |
| 4125 final int readyState; | 4125 final int readyState; |
| 4126 | 4126 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4194 void pushState(Object data, String title, [String url]) native; | 4194 void pushState(Object data, String title, [String url]) native; |
| 4195 | 4195 |
| 4196 void replaceState(Object data, String title, [String url]) native; | 4196 void replaceState(Object data, String title, [String url]) native; |
| 4197 } | 4197 } |
| 4198 | 4198 |
| 4199 class _IDBAnyJs extends _DOMTypeJs implements IDBAny native "*IDBAny" { | 4199 class _IDBAnyJs extends _DOMTypeJs implements IDBAny native "*IDBAny" { |
| 4200 } | 4200 } |
| 4201 | 4201 |
| 4202 class _IDBCursorJs extends _DOMTypeJs implements IDBCursor native "*IDBCursor" { | 4202 class _IDBCursorJs extends _DOMTypeJs implements IDBCursor native "*IDBCursor" { |
| 4203 | 4203 |
| 4204 static final int NEXT = 0; | 4204 static const int NEXT = 0; |
| 4205 | 4205 |
| 4206 static final int NEXT_NO_DUPLICATE = 1; | 4206 static const int NEXT_NO_DUPLICATE = 1; |
| 4207 | 4207 |
| 4208 static final int PREV = 2; | 4208 static const int PREV = 2; |
| 4209 | 4209 |
| 4210 static final int PREV_NO_DUPLICATE = 3; | 4210 static const int PREV_NO_DUPLICATE = 3; |
| 4211 | 4211 |
| 4212 final String direction; | 4212 final String direction; |
| 4213 | 4213 |
| 4214 final key; | 4214 final key; |
| 4215 | 4215 |
| 4216 final primaryKey; | 4216 final primaryKey; |
| 4217 | 4217 |
| 4218 final source; | 4218 final source; |
| 4219 | 4219 |
| 4220 void advance(int count) native; | 4220 void advance(int count) native; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 4251 | 4251 |
| 4252 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 4252 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 4253 | 4253 |
| 4254 _IDBVersionChangeRequestJs setVersion(String version) native; | 4254 _IDBVersionChangeRequestJs setVersion(String version) native; |
| 4255 | 4255 |
| 4256 _IDBTransactionJs transaction(storeName_OR_storeNames, String mode) native; | 4256 _IDBTransactionJs transaction(storeName_OR_storeNames, String mode) native; |
| 4257 } | 4257 } |
| 4258 | 4258 |
| 4259 class _IDBDatabaseExceptionJs extends _DOMTypeJs implements IDBDatabaseException
native "*IDBDatabaseException" { | 4259 class _IDBDatabaseExceptionJs extends _DOMTypeJs implements IDBDatabaseException
native "*IDBDatabaseException" { |
| 4260 | 4260 |
| 4261 static final int ABORT_ERR = 20; | 4261 static const int ABORT_ERR = 20; |
| 4262 | 4262 |
| 4263 static final int CONSTRAINT_ERR = 4; | 4263 static const int CONSTRAINT_ERR = 4; |
| 4264 | 4264 |
| 4265 static final int DATA_ERR = 5; | 4265 static const int DATA_ERR = 5; |
| 4266 | 4266 |
| 4267 static final int NON_TRANSIENT_ERR = 2; | 4267 static const int NON_TRANSIENT_ERR = 2; |
| 4268 | 4268 |
| 4269 static final int NOT_ALLOWED_ERR = 6; | 4269 static const int NOT_ALLOWED_ERR = 6; |
| 4270 | 4270 |
| 4271 static final int NOT_FOUND_ERR = 8; | 4271 static const int NOT_FOUND_ERR = 8; |
| 4272 | 4272 |
| 4273 static final int NO_ERR = 0; | 4273 static const int NO_ERR = 0; |
| 4274 | 4274 |
| 4275 static final int QUOTA_ERR = 22; | 4275 static const int QUOTA_ERR = 22; |
| 4276 | 4276 |
| 4277 static final int READ_ONLY_ERR = 9; | 4277 static const int READ_ONLY_ERR = 9; |
| 4278 | 4278 |
| 4279 static final int TIMEOUT_ERR = 23; | 4279 static const int TIMEOUT_ERR = 23; |
| 4280 | 4280 |
| 4281 static final int TRANSACTION_INACTIVE_ERR = 7; | 4281 static const int TRANSACTION_INACTIVE_ERR = 7; |
| 4282 | 4282 |
| 4283 static final int UNKNOWN_ERR = 1; | 4283 static const int UNKNOWN_ERR = 1; |
| 4284 | 4284 |
| 4285 static final int VER_ERR = 12; | 4285 static const int VER_ERR = 12; |
| 4286 | 4286 |
| 4287 final int code; | 4287 final int code; |
| 4288 | 4288 |
| 4289 final String message; | 4289 final String message; |
| 4290 | 4290 |
| 4291 final String name; | 4291 final String name; |
| 4292 | 4292 |
| 4293 String toString() native; | 4293 String toString() native; |
| 4294 } | 4294 } |
| 4295 | 4295 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4403 | 4403 |
| 4404 void addEventListener(String type, EventListener listener, [bool useCapture])
native; | 4404 void addEventListener(String type, EventListener listener, [bool useCapture])
native; |
| 4405 | 4405 |
| 4406 bool dispatchEvent(_EventJs evt) native; | 4406 bool dispatchEvent(_EventJs evt) native; |
| 4407 | 4407 |
| 4408 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 4408 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 4409 } | 4409 } |
| 4410 | 4410 |
| 4411 class _IDBTransactionJs extends _EventTargetJs implements IDBTransaction native
"*IDBTransaction" { | 4411 class _IDBTransactionJs extends _EventTargetJs implements IDBTransaction native
"*IDBTransaction" { |
| 4412 | 4412 |
| 4413 static final int READ_ONLY = 0; | 4413 static const int READ_ONLY = 0; |
| 4414 | 4414 |
| 4415 static final int READ_WRITE = 1; | 4415 static const int READ_WRITE = 1; |
| 4416 | 4416 |
| 4417 static final int VERSION_CHANGE = 2; | 4417 static const int VERSION_CHANGE = 2; |
| 4418 | 4418 |
| 4419 final _IDBDatabaseJs db; | 4419 final _IDBDatabaseJs db; |
| 4420 | 4420 |
| 4421 final _DOMErrorJs error; | 4421 final _DOMErrorJs error; |
| 4422 | 4422 |
| 4423 final String mode; | 4423 final String mode; |
| 4424 | 4424 |
| 4425 void abort() native; | 4425 void abort() native; |
| 4426 | 4426 |
| 4427 void addEventListener(String type, EventListener listener, [bool useCapture])
native; | 4427 void addEventListener(String type, EventListener listener, [bool useCapture])
native; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4467 | 4467 |
| 4468 final _Uint8ClampedArrayJs data; | 4468 final _Uint8ClampedArrayJs data; |
| 4469 | 4469 |
| 4470 final int height; | 4470 final int height; |
| 4471 | 4471 |
| 4472 final int width; | 4472 final int width; |
| 4473 } | 4473 } |
| 4474 | 4474 |
| 4475 class _Int16ArrayJs extends _ArrayBufferViewJs implements Int16Array, List<int>
native "*Int16Array" { | 4475 class _Int16ArrayJs extends _ArrayBufferViewJs implements Int16Array, List<int>
native "*Int16Array" { |
| 4476 | 4476 |
| 4477 static final int BYTES_PER_ELEMENT = 2; | 4477 static const int BYTES_PER_ELEMENT = 2; |
| 4478 | 4478 |
| 4479 final int length; | 4479 final int length; |
| 4480 | 4480 |
| 4481 int operator[](int index) native "return this[index];"; | 4481 int operator[](int index) native "return this[index];"; |
| 4482 | 4482 |
| 4483 void operator[]=(int index, int value) native "this[index] = value"; | 4483 void operator[]=(int index, int value) native "this[index] = value"; |
| 4484 // -- start List<int> mixins. | 4484 // -- start List<int> mixins. |
| 4485 // int is the element type. | 4485 // int is the element type. |
| 4486 | 4486 |
| 4487 // From Iterable<int>: | 4487 // From Iterable<int>: |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4558 | 4558 |
| 4559 // -- end List<int> mixins. | 4559 // -- end List<int> mixins. |
| 4560 | 4560 |
| 4561 void setElements(Object array, [int offset]) native 'set'; | 4561 void setElements(Object array, [int offset]) native 'set'; |
| 4562 | 4562 |
| 4563 _Int16ArrayJs subarray(int start, [int end]) native; | 4563 _Int16ArrayJs subarray(int start, [int end]) native; |
| 4564 } | 4564 } |
| 4565 | 4565 |
| 4566 class _Int32ArrayJs extends _ArrayBufferViewJs implements Int32Array, List<int>
native "*Int32Array" { | 4566 class _Int32ArrayJs extends _ArrayBufferViewJs implements Int32Array, List<int>
native "*Int32Array" { |
| 4567 | 4567 |
| 4568 static final int BYTES_PER_ELEMENT = 4; | 4568 static const int BYTES_PER_ELEMENT = 4; |
| 4569 | 4569 |
| 4570 final int length; | 4570 final int length; |
| 4571 | 4571 |
| 4572 int operator[](int index) native "return this[index];"; | 4572 int operator[](int index) native "return this[index];"; |
| 4573 | 4573 |
| 4574 void operator[]=(int index, int value) native "this[index] = value"; | 4574 void operator[]=(int index, int value) native "this[index] = value"; |
| 4575 // -- start List<int> mixins. | 4575 // -- start List<int> mixins. |
| 4576 // int is the element type. | 4576 // int is the element type. |
| 4577 | 4577 |
| 4578 // From Iterable<int>: | 4578 // From Iterable<int>: |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4649 | 4649 |
| 4650 // -- end List<int> mixins. | 4650 // -- end List<int> mixins. |
| 4651 | 4651 |
| 4652 void setElements(Object array, [int offset]) native 'set'; | 4652 void setElements(Object array, [int offset]) native 'set'; |
| 4653 | 4653 |
| 4654 _Int32ArrayJs subarray(int start, [int end]) native; | 4654 _Int32ArrayJs subarray(int start, [int end]) native; |
| 4655 } | 4655 } |
| 4656 | 4656 |
| 4657 class _Int8ArrayJs extends _ArrayBufferViewJs implements Int8Array, List<int> na
tive "*Int8Array" { | 4657 class _Int8ArrayJs extends _ArrayBufferViewJs implements Int8Array, List<int> na
tive "*Int8Array" { |
| 4658 | 4658 |
| 4659 static final int BYTES_PER_ELEMENT = 1; | 4659 static const int BYTES_PER_ELEMENT = 1; |
| 4660 | 4660 |
| 4661 final int length; | 4661 final int length; |
| 4662 | 4662 |
| 4663 int operator[](int index) native "return this[index];"; | 4663 int operator[](int index) native "return this[index];"; |
| 4664 | 4664 |
| 4665 void operator[]=(int index, int value) native "this[index] = value"; | 4665 void operator[]=(int index, int value) native "this[index] = value"; |
| 4666 // -- start List<int> mixins. | 4666 // -- start List<int> mixins. |
| 4667 // int is the element type. | 4667 // int is the element type. |
| 4668 | 4668 |
| 4669 // From Iterable<int>: | 4669 // From Iterable<int>: |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4753 | 4753 |
| 4754 void addEventListener(String type, EventListener listener, [bool useCapture])
native; | 4754 void addEventListener(String type, EventListener listener, [bool useCapture])
native; |
| 4755 | 4755 |
| 4756 bool dispatchEvent(_EventJs event) native; | 4756 bool dispatchEvent(_EventJs event) native; |
| 4757 | 4757 |
| 4758 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 4758 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 4759 } | 4759 } |
| 4760 | 4760 |
| 4761 class _JavaScriptCallFrameJs extends _DOMTypeJs implements JavaScriptCallFrame n
ative "*JavaScriptCallFrame" { | 4761 class _JavaScriptCallFrameJs extends _DOMTypeJs implements JavaScriptCallFrame n
ative "*JavaScriptCallFrame" { |
| 4762 | 4762 |
| 4763 static final int CATCH_SCOPE = 4; | 4763 static const int CATCH_SCOPE = 4; |
| 4764 | 4764 |
| 4765 static final int CLOSURE_SCOPE = 3; | 4765 static const int CLOSURE_SCOPE = 3; |
| 4766 | 4766 |
| 4767 static final int GLOBAL_SCOPE = 0; | 4767 static const int GLOBAL_SCOPE = 0; |
| 4768 | 4768 |
| 4769 static final int LOCAL_SCOPE = 1; | 4769 static const int LOCAL_SCOPE = 1; |
| 4770 | 4770 |
| 4771 static final int WITH_SCOPE = 2; | 4771 static const int WITH_SCOPE = 2; |
| 4772 | 4772 |
| 4773 final _JavaScriptCallFrameJs caller; | 4773 final _JavaScriptCallFrameJs caller; |
| 4774 | 4774 |
| 4775 final int column; | 4775 final int column; |
| 4776 | 4776 |
| 4777 final String functionName; | 4777 final String functionName; |
| 4778 | 4778 |
| 4779 final int line; | 4779 final int line; |
| 4780 | 4780 |
| 4781 final List scopeChain; | 4781 final List scopeChain; |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4889 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 4889 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 4890 } | 4890 } |
| 4891 | 4891 |
| 4892 class _MediaElementAudioSourceNodeJs extends _AudioSourceNodeJs implements Media
ElementAudioSourceNode native "*MediaElementAudioSourceNode" { | 4892 class _MediaElementAudioSourceNodeJs extends _AudioSourceNodeJs implements Media
ElementAudioSourceNode native "*MediaElementAudioSourceNode" { |
| 4893 | 4893 |
| 4894 final _HTMLMediaElementJs mediaElement; | 4894 final _HTMLMediaElementJs mediaElement; |
| 4895 } | 4895 } |
| 4896 | 4896 |
| 4897 class _MediaErrorJs extends _DOMTypeJs implements MediaError native "*MediaError
" { | 4897 class _MediaErrorJs extends _DOMTypeJs implements MediaError native "*MediaError
" { |
| 4898 | 4898 |
| 4899 static final int MEDIA_ERR_ABORTED = 1; | 4899 static const int MEDIA_ERR_ABORTED = 1; |
| 4900 | 4900 |
| 4901 static final int MEDIA_ERR_DECODE = 3; | 4901 static const int MEDIA_ERR_DECODE = 3; |
| 4902 | 4902 |
| 4903 static final int MEDIA_ERR_ENCRYPTED = 5; | 4903 static const int MEDIA_ERR_ENCRYPTED = 5; |
| 4904 | 4904 |
| 4905 static final int MEDIA_ERR_NETWORK = 2; | 4905 static const int MEDIA_ERR_NETWORK = 2; |
| 4906 | 4906 |
| 4907 static final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4; | 4907 static const int MEDIA_ERR_SRC_NOT_SUPPORTED = 4; |
| 4908 | 4908 |
| 4909 final int code; | 4909 final int code; |
| 4910 } | 4910 } |
| 4911 | 4911 |
| 4912 class _MediaKeyErrorJs extends _DOMTypeJs implements MediaKeyError native "*Medi
aKeyError" { | 4912 class _MediaKeyErrorJs extends _DOMTypeJs implements MediaKeyError native "*Medi
aKeyError" { |
| 4913 | 4913 |
| 4914 static final int MEDIA_KEYERR_CLIENT = 2; | 4914 static const int MEDIA_KEYERR_CLIENT = 2; |
| 4915 | 4915 |
| 4916 static final int MEDIA_KEYERR_DOMAIN = 6; | 4916 static const int MEDIA_KEYERR_DOMAIN = 6; |
| 4917 | 4917 |
| 4918 static final int MEDIA_KEYERR_HARDWARECHANGE = 5; | 4918 static const int MEDIA_KEYERR_HARDWARECHANGE = 5; |
| 4919 | 4919 |
| 4920 static final int MEDIA_KEYERR_OUTPUT = 4; | 4920 static const int MEDIA_KEYERR_OUTPUT = 4; |
| 4921 | 4921 |
| 4922 static final int MEDIA_KEYERR_SERVICE = 3; | 4922 static const int MEDIA_KEYERR_SERVICE = 3; |
| 4923 | 4923 |
| 4924 static final int MEDIA_KEYERR_UNKNOWN = 1; | 4924 static const int MEDIA_KEYERR_UNKNOWN = 1; |
| 4925 | 4925 |
| 4926 final int code; | 4926 final int code; |
| 4927 } | 4927 } |
| 4928 | 4928 |
| 4929 class _MediaKeyEventJs extends _EventJs implements MediaKeyEvent native "*MediaK
eyEvent" { | 4929 class _MediaKeyEventJs extends _EventJs implements MediaKeyEvent native "*MediaK
eyEvent" { |
| 4930 | 4930 |
| 4931 final String defaultURL; | 4931 final String defaultURL; |
| 4932 | 4932 |
| 4933 final _MediaKeyErrorJs errorCode; | 4933 final _MediaKeyErrorJs errorCode; |
| 4934 | 4934 |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5065 | 5065 |
| 5066 void endOfStream(String error) native; | 5066 void endOfStream(String error) native; |
| 5067 | 5067 |
| 5068 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 5068 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 5069 | 5069 |
| 5070 void removeSourceBuffer(_SourceBufferJs buffer) native; | 5070 void removeSourceBuffer(_SourceBufferJs buffer) native; |
| 5071 } | 5071 } |
| 5072 | 5072 |
| 5073 class _MediaStreamJs extends _EventTargetJs implements MediaStream native "*Medi
aStream" { | 5073 class _MediaStreamJs extends _EventTargetJs implements MediaStream native "*Medi
aStream" { |
| 5074 | 5074 |
| 5075 static final int ENDED = 2; | 5075 static const int ENDED = 2; |
| 5076 | 5076 |
| 5077 static final int LIVE = 1; | 5077 static const int LIVE = 1; |
| 5078 | 5078 |
| 5079 final _MediaStreamTrackListJs audioTracks; | 5079 final _MediaStreamTrackListJs audioTracks; |
| 5080 | 5080 |
| 5081 final String label; | 5081 final String label; |
| 5082 | 5082 |
| 5083 final int readyState; | 5083 final int readyState; |
| 5084 | 5084 |
| 5085 final _MediaStreamTrackListJs videoTracks; | 5085 final _MediaStreamTrackListJs videoTracks; |
| 5086 | 5086 |
| 5087 void addEventListener(String type, EventListener listener, [bool useCapture])
native; | 5087 void addEventListener(String type, EventListener listener, [bool useCapture])
native; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 5103 | 5103 |
| 5104 class _MediaStreamListJs extends _DOMTypeJs implements MediaStreamList native "*
MediaStreamList" { | 5104 class _MediaStreamListJs extends _DOMTypeJs implements MediaStreamList native "*
MediaStreamList" { |
| 5105 | 5105 |
| 5106 final int length; | 5106 final int length; |
| 5107 | 5107 |
| 5108 _MediaStreamJs item(int index) native; | 5108 _MediaStreamJs item(int index) native; |
| 5109 } | 5109 } |
| 5110 | 5110 |
| 5111 class _MediaStreamTrackJs extends _EventTargetJs implements MediaStreamTrack nat
ive "*MediaStreamTrack" { | 5111 class _MediaStreamTrackJs extends _EventTargetJs implements MediaStreamTrack nat
ive "*MediaStreamTrack" { |
| 5112 | 5112 |
| 5113 static final int ENDED = 2; | 5113 static const int ENDED = 2; |
| 5114 | 5114 |
| 5115 static final int LIVE = 0; | 5115 static const int LIVE = 0; |
| 5116 | 5116 |
| 5117 static final int MUTED = 1; | 5117 static const int MUTED = 1; |
| 5118 | 5118 |
| 5119 bool enabled; | 5119 bool enabled; |
| 5120 | 5120 |
| 5121 final String kind; | 5121 final String kind; |
| 5122 | 5122 |
| 5123 final String label; | 5123 final String label; |
| 5124 | 5124 |
| 5125 final int readyState; | 5125 final int readyState; |
| 5126 | 5126 |
| 5127 void addEventListener(String type, EventListener listener, [bool useCapture])
native; | 5127 void addEventListener(String type, EventListener listener, [bool useCapture])
native; |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5248 | 5248 |
| 5249 final int x; | 5249 final int x; |
| 5250 | 5250 |
| 5251 final int y; | 5251 final int y; |
| 5252 | 5252 |
| 5253 void initMouseEvent(String type, bool canBubble, bool cancelable, _DOMWindowJs
view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrl
Key, bool altKey, bool shiftKey, bool metaKey, int button, _EventTargetJs relate
dTarget) native; | 5253 void initMouseEvent(String type, bool canBubble, bool cancelable, _DOMWindowJs
view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrl
Key, bool altKey, bool shiftKey, bool metaKey, int button, _EventTargetJs relate
dTarget) native; |
| 5254 } | 5254 } |
| 5255 | 5255 |
| 5256 class _MutationEventJs extends _EventJs implements MutationEvent native "*Mutati
onEvent" { | 5256 class _MutationEventJs extends _EventJs implements MutationEvent native "*Mutati
onEvent" { |
| 5257 | 5257 |
| 5258 static final int ADDITION = 2; | 5258 static const int ADDITION = 2; |
| 5259 | 5259 |
| 5260 static final int MODIFICATION = 1; | 5260 static const int MODIFICATION = 1; |
| 5261 | 5261 |
| 5262 static final int REMOVAL = 3; | 5262 static const int REMOVAL = 3; |
| 5263 | 5263 |
| 5264 final int attrChange; | 5264 final int attrChange; |
| 5265 | 5265 |
| 5266 final String attrName; | 5266 final String attrName; |
| 5267 | 5267 |
| 5268 final String newValue; | 5268 final String newValue; |
| 5269 | 5269 |
| 5270 final String prevValue; | 5270 final String prevValue; |
| 5271 | 5271 |
| 5272 final _NodeJs relatedNode; | 5272 final _NodeJs relatedNode; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5443 | 5443 |
| 5444 bool javaEnabled() native; | 5444 bool javaEnabled() native; |
| 5445 | 5445 |
| 5446 _GamepadListJs webkitGetGamepads() native; | 5446 _GamepadListJs webkitGetGamepads() native; |
| 5447 | 5447 |
| 5448 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success
Callback, [NavigatorUserMediaErrorCallback errorCallback]) native; | 5448 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success
Callback, [NavigatorUserMediaErrorCallback errorCallback]) native; |
| 5449 } | 5449 } |
| 5450 | 5450 |
| 5451 class _NavigatorUserMediaErrorJs extends _DOMTypeJs implements NavigatorUserMedi
aError native "*NavigatorUserMediaError" { | 5451 class _NavigatorUserMediaErrorJs extends _DOMTypeJs implements NavigatorUserMedi
aError native "*NavigatorUserMediaError" { |
| 5452 | 5452 |
| 5453 static final int PERMISSION_DENIED = 1; | 5453 static const int PERMISSION_DENIED = 1; |
| 5454 | 5454 |
| 5455 final int code; | 5455 final int code; |
| 5456 } | 5456 } |
| 5457 | 5457 |
| 5458 class _NodeJs extends _EventTargetJs implements Node native "*Node" { | 5458 class _NodeJs extends _EventTargetJs implements Node native "*Node" { |
| 5459 | 5459 |
| 5460 static final int ATTRIBUTE_NODE = 2; | 5460 static const int ATTRIBUTE_NODE = 2; |
| 5461 | 5461 |
| 5462 static final int CDATA_SECTION_NODE = 4; | 5462 static const int CDATA_SECTION_NODE = 4; |
| 5463 | 5463 |
| 5464 static final int COMMENT_NODE = 8; | 5464 static const int COMMENT_NODE = 8; |
| 5465 | 5465 |
| 5466 static final int DOCUMENT_FRAGMENT_NODE = 11; | 5466 static const int DOCUMENT_FRAGMENT_NODE = 11; |
| 5467 | 5467 |
| 5468 static final int DOCUMENT_NODE = 9; | 5468 static const int DOCUMENT_NODE = 9; |
| 5469 | 5469 |
| 5470 static final int DOCUMENT_POSITION_CONTAINED_BY = 0x10; | 5470 static const int DOCUMENT_POSITION_CONTAINED_BY = 0x10; |
| 5471 | 5471 |
| 5472 static final int DOCUMENT_POSITION_CONTAINS = 0x08; | 5472 static const int DOCUMENT_POSITION_CONTAINS = 0x08; |
| 5473 | 5473 |
| 5474 static final int DOCUMENT_POSITION_DISCONNECTED = 0x01; | 5474 static const int DOCUMENT_POSITION_DISCONNECTED = 0x01; |
| 5475 | 5475 |
| 5476 static final int DOCUMENT_POSITION_FOLLOWING = 0x04; | 5476 static const int DOCUMENT_POSITION_FOLLOWING = 0x04; |
| 5477 | 5477 |
| 5478 static final int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; | 5478 static const int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; |
| 5479 | 5479 |
| 5480 static final int DOCUMENT_POSITION_PRECEDING = 0x02; | 5480 static const int DOCUMENT_POSITION_PRECEDING = 0x02; |
| 5481 | 5481 |
| 5482 static final int DOCUMENT_TYPE_NODE = 10; | 5482 static const int DOCUMENT_TYPE_NODE = 10; |
| 5483 | 5483 |
| 5484 static final int ELEMENT_NODE = 1; | 5484 static const int ELEMENT_NODE = 1; |
| 5485 | 5485 |
| 5486 static final int ENTITY_NODE = 6; | 5486 static const int ENTITY_NODE = 6; |
| 5487 | 5487 |
| 5488 static final int ENTITY_REFERENCE_NODE = 5; | 5488 static const int ENTITY_REFERENCE_NODE = 5; |
| 5489 | 5489 |
| 5490 static final int NOTATION_NODE = 12; | 5490 static const int NOTATION_NODE = 12; |
| 5491 | 5491 |
| 5492 static final int PROCESSING_INSTRUCTION_NODE = 7; | 5492 static const int PROCESSING_INSTRUCTION_NODE = 7; |
| 5493 | 5493 |
| 5494 static final int TEXT_NODE = 3; | 5494 static const int TEXT_NODE = 3; |
| 5495 | 5495 |
| 5496 final _NamedNodeMapJs attributes; | 5496 final _NamedNodeMapJs attributes; |
| 5497 | 5497 |
| 5498 final String baseURI; | 5498 final String baseURI; |
| 5499 | 5499 |
| 5500 final _NodeListJs childNodes; | 5500 final _NodeListJs childNodes; |
| 5501 | 5501 |
| 5502 final _NodeJs firstChild; | 5502 final _NodeJs firstChild; |
| 5503 | 5503 |
| 5504 final _NodeJs lastChild; | 5504 final _NodeJs lastChild; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5561 | 5561 |
| 5562 _NodeJs removeChild(_NodeJs oldChild) native; | 5562 _NodeJs removeChild(_NodeJs oldChild) native; |
| 5563 | 5563 |
| 5564 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 5564 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 5565 | 5565 |
| 5566 _NodeJs replaceChild(_NodeJs newChild, _NodeJs oldChild) native; | 5566 _NodeJs replaceChild(_NodeJs newChild, _NodeJs oldChild) native; |
| 5567 } | 5567 } |
| 5568 | 5568 |
| 5569 class _NodeFilterJs extends _DOMTypeJs implements NodeFilter native "*NodeFilter
" { | 5569 class _NodeFilterJs extends _DOMTypeJs implements NodeFilter native "*NodeFilter
" { |
| 5570 | 5570 |
| 5571 static final int FILTER_ACCEPT = 1; | 5571 static const int FILTER_ACCEPT = 1; |
| 5572 | 5572 |
| 5573 static final int FILTER_REJECT = 2; | 5573 static const int FILTER_REJECT = 2; |
| 5574 | 5574 |
| 5575 static final int FILTER_SKIP = 3; | 5575 static const int FILTER_SKIP = 3; |
| 5576 | 5576 |
| 5577 static final int SHOW_ALL = 0xFFFFFFFF; | 5577 static const int SHOW_ALL = 0xFFFFFFFF; |
| 5578 | 5578 |
| 5579 static final int SHOW_ATTRIBUTE = 0x00000002; | 5579 static const int SHOW_ATTRIBUTE = 0x00000002; |
| 5580 | 5580 |
| 5581 static final int SHOW_CDATA_SECTION = 0x00000008; | 5581 static const int SHOW_CDATA_SECTION = 0x00000008; |
| 5582 | 5582 |
| 5583 static final int SHOW_COMMENT = 0x00000080; | 5583 static const int SHOW_COMMENT = 0x00000080; |
| 5584 | 5584 |
| 5585 static final int SHOW_DOCUMENT = 0x00000100; | 5585 static const int SHOW_DOCUMENT = 0x00000100; |
| 5586 | 5586 |
| 5587 static final int SHOW_DOCUMENT_FRAGMENT = 0x00000400; | 5587 static const int SHOW_DOCUMENT_FRAGMENT = 0x00000400; |
| 5588 | 5588 |
| 5589 static final int SHOW_DOCUMENT_TYPE = 0x00000200; | 5589 static const int SHOW_DOCUMENT_TYPE = 0x00000200; |
| 5590 | 5590 |
| 5591 static final int SHOW_ELEMENT = 0x00000001; | 5591 static const int SHOW_ELEMENT = 0x00000001; |
| 5592 | 5592 |
| 5593 static final int SHOW_ENTITY = 0x00000020; | 5593 static const int SHOW_ENTITY = 0x00000020; |
| 5594 | 5594 |
| 5595 static final int SHOW_ENTITY_REFERENCE = 0x00000010; | 5595 static const int SHOW_ENTITY_REFERENCE = 0x00000010; |
| 5596 | 5596 |
| 5597 static final int SHOW_NOTATION = 0x00000800; | 5597 static const int SHOW_NOTATION = 0x00000800; |
| 5598 | 5598 |
| 5599 static final int SHOW_PROCESSING_INSTRUCTION = 0x00000040; | 5599 static const int SHOW_PROCESSING_INSTRUCTION = 0x00000040; |
| 5600 | 5600 |
| 5601 static final int SHOW_TEXT = 0x00000004; | 5601 static const int SHOW_TEXT = 0x00000004; |
| 5602 | 5602 |
| 5603 int acceptNode(_NodeJs n) native; | 5603 int acceptNode(_NodeJs n) native; |
| 5604 } | 5604 } |
| 5605 | 5605 |
| 5606 class _NodeIteratorJs extends _DOMTypeJs implements NodeIterator native "*NodeIt
erator" { | 5606 class _NodeIteratorJs extends _DOMTypeJs implements NodeIterator native "*NodeIt
erator" { |
| 5607 | 5607 |
| 5608 final bool expandEntityReferences; | 5608 final bool expandEntityReferences; |
| 5609 | 5609 |
| 5610 final _NodeFilterJs filter; | 5610 final _NodeFilterJs filter; |
| 5611 | 5611 |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5749 | 5749 |
| 5750 _NotificationJs createHTMLNotification(String url) native; | 5750 _NotificationJs createHTMLNotification(String url) native; |
| 5751 | 5751 |
| 5752 _NotificationJs createNotification(String iconUrl, String title, String body)
native; | 5752 _NotificationJs createNotification(String iconUrl, String title, String body)
native; |
| 5753 | 5753 |
| 5754 void requestPermission(VoidCallback callback) native; | 5754 void requestPermission(VoidCallback callback) native; |
| 5755 } | 5755 } |
| 5756 | 5756 |
| 5757 class _OESStandardDerivativesJs extends _DOMTypeJs implements OESStandardDerivat
ives native "*OESStandardDerivatives" { | 5757 class _OESStandardDerivativesJs extends _DOMTypeJs implements OESStandardDerivat
ives native "*OESStandardDerivatives" { |
| 5758 | 5758 |
| 5759 static final int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; | 5759 static const int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; |
| 5760 } | 5760 } |
| 5761 | 5761 |
| 5762 class _OESTextureFloatJs extends _DOMTypeJs implements OESTextureFloat native "*
OESTextureFloat" { | 5762 class _OESTextureFloatJs extends _DOMTypeJs implements OESTextureFloat native "*
OESTextureFloat" { |
| 5763 } | 5763 } |
| 5764 | 5764 |
| 5765 class _OESVertexArrayObjectJs extends _DOMTypeJs implements OESVertexArrayObject
native "*OESVertexArrayObject" { | 5765 class _OESVertexArrayObjectJs extends _DOMTypeJs implements OESVertexArrayObject
native "*OESVertexArrayObject" { |
| 5766 | 5766 |
| 5767 static final int VERTEX_ARRAY_BINDING_OES = 0x85B5; | 5767 static const int VERTEX_ARRAY_BINDING_OES = 0x85B5; |
| 5768 | 5768 |
| 5769 void bindVertexArrayOES(_WebGLVertexArrayObjectOESJs arrayObject) native; | 5769 void bindVertexArrayOES(_WebGLVertexArrayObjectOESJs arrayObject) native; |
| 5770 | 5770 |
| 5771 _WebGLVertexArrayObjectOESJs createVertexArrayOES() native; | 5771 _WebGLVertexArrayObjectOESJs createVertexArrayOES() native; |
| 5772 | 5772 |
| 5773 void deleteVertexArrayOES(_WebGLVertexArrayObjectOESJs arrayObject) native; | 5773 void deleteVertexArrayOES(_WebGLVertexArrayObjectOESJs arrayObject) native; |
| 5774 | 5774 |
| 5775 bool isVertexArrayOES(_WebGLVertexArrayObjectOESJs arrayObject) native; | 5775 bool isVertexArrayOES(_WebGLVertexArrayObjectOESJs arrayObject) native; |
| 5776 } | 5776 } |
| 5777 | 5777 |
| 5778 class _OfflineAudioCompletionEventJs extends _EventJs implements OfflineAudioCom
pletionEvent native "*OfflineAudioCompletionEvent" { | 5778 class _OfflineAudioCompletionEventJs extends _EventJs implements OfflineAudioCom
pletionEvent native "*OfflineAudioCompletionEvent" { |
| 5779 | 5779 |
| 5780 final _AudioBufferJs renderedBuffer; | 5780 final _AudioBufferJs renderedBuffer; |
| 5781 } | 5781 } |
| 5782 | 5782 |
| 5783 class _OscillatorJs extends _AudioSourceNodeJs implements Oscillator native "*Os
cillator" { | 5783 class _OscillatorJs extends _AudioSourceNodeJs implements Oscillator native "*Os
cillator" { |
| 5784 | 5784 |
| 5785 static final int CUSTOM = 4; | 5785 static const int CUSTOM = 4; |
| 5786 | 5786 |
| 5787 static final int FINISHED_STATE = 3; | 5787 static const int FINISHED_STATE = 3; |
| 5788 | 5788 |
| 5789 static final int PLAYING_STATE = 2; | 5789 static const int PLAYING_STATE = 2; |
| 5790 | 5790 |
| 5791 static final int SAWTOOTH = 2; | 5791 static const int SAWTOOTH = 2; |
| 5792 | 5792 |
| 5793 static final int SCHEDULED_STATE = 1; | 5793 static const int SCHEDULED_STATE = 1; |
| 5794 | 5794 |
| 5795 static final int SINE = 0; | 5795 static const int SINE = 0; |
| 5796 | 5796 |
| 5797 static final int SQUARE = 1; | 5797 static const int SQUARE = 1; |
| 5798 | 5798 |
| 5799 static final int TRIANGLE = 3; | 5799 static const int TRIANGLE = 3; |
| 5800 | 5800 |
| 5801 static final int UNSCHEDULED_STATE = 0; | 5801 static const int UNSCHEDULED_STATE = 0; |
| 5802 | 5802 |
| 5803 final _AudioParamJs detune; | 5803 final _AudioParamJs detune; |
| 5804 | 5804 |
| 5805 final _AudioParamJs frequency; | 5805 final _AudioParamJs frequency; |
| 5806 | 5806 |
| 5807 final int playbackState; | 5807 final int playbackState; |
| 5808 | 5808 |
| 5809 int type; | 5809 int type; |
| 5810 | 5810 |
| 5811 void noteOff(num when) native; | 5811 void noteOff(num when) native; |
| 5812 | 5812 |
| 5813 void noteOn(num when) native; | 5813 void noteOn(num when) native; |
| 5814 | 5814 |
| 5815 void setWaveTable(_WaveTableJs waveTable) native; | 5815 void setWaveTable(_WaveTableJs waveTable) native; |
| 5816 } | 5816 } |
| 5817 | 5817 |
| 5818 class _OverflowEventJs extends _EventJs implements OverflowEvent native "*Overfl
owEvent" { | 5818 class _OverflowEventJs extends _EventJs implements OverflowEvent native "*Overfl
owEvent" { |
| 5819 | 5819 |
| 5820 static final int BOTH = 2; | 5820 static const int BOTH = 2; |
| 5821 | 5821 |
| 5822 static final int HORIZONTAL = 0; | 5822 static const int HORIZONTAL = 0; |
| 5823 | 5823 |
| 5824 static final int VERTICAL = 1; | 5824 static const int VERTICAL = 1; |
| 5825 | 5825 |
| 5826 final bool horizontalOverflow; | 5826 final bool horizontalOverflow; |
| 5827 | 5827 |
| 5828 final int orient; | 5828 final int orient; |
| 5829 | 5829 |
| 5830 final bool verticalOverflow; | 5830 final bool verticalOverflow; |
| 5831 } | 5831 } |
| 5832 | 5832 |
| 5833 class _PagePopupControllerJs extends _DOMTypeJs implements PagePopupController n
ative "*PagePopupController" { | 5833 class _PagePopupControllerJs extends _DOMTypeJs implements PagePopupController n
ative "*PagePopupController" { |
| 5834 | 5834 |
| 5835 String localizeNumberString(String numberString) native; | 5835 String localizeNumberString(String numberString) native; |
| 5836 | 5836 |
| 5837 void setValueAndClosePopup(int numberValue, String stringValue) native; | 5837 void setValueAndClosePopup(int numberValue, String stringValue) native; |
| 5838 } | 5838 } |
| 5839 | 5839 |
| 5840 class _PageTransitionEventJs extends _EventJs implements PageTransitionEvent nat
ive "*PageTransitionEvent" { | 5840 class _PageTransitionEventJs extends _EventJs implements PageTransitionEvent nat
ive "*PageTransitionEvent" { |
| 5841 | 5841 |
| 5842 final bool persisted; | 5842 final bool persisted; |
| 5843 } | 5843 } |
| 5844 | 5844 |
| 5845 class _PeerConnection00Js extends _EventTargetJs implements PeerConnection00 nat
ive "*PeerConnection00" { | 5845 class _PeerConnection00Js extends _EventTargetJs implements PeerConnection00 nat
ive "*PeerConnection00" { |
| 5846 | 5846 |
| 5847 static final int ACTIVE = 2; | 5847 static const int ACTIVE = 2; |
| 5848 | 5848 |
| 5849 static final int CLOSED = 3; | 5849 static const int CLOSED = 3; |
| 5850 | 5850 |
| 5851 static final int ICE_CHECKING = 0x300; | 5851 static const int ICE_CHECKING = 0x300; |
| 5852 | 5852 |
| 5853 static final int ICE_CLOSED = 0x700; | 5853 static const int ICE_CLOSED = 0x700; |
| 5854 | 5854 |
| 5855 static final int ICE_COMPLETED = 0x500; | 5855 static const int ICE_COMPLETED = 0x500; |
| 5856 | 5856 |
| 5857 static final int ICE_CONNECTED = 0x400; | 5857 static const int ICE_CONNECTED = 0x400; |
| 5858 | 5858 |
| 5859 static final int ICE_FAILED = 0x600; | 5859 static const int ICE_FAILED = 0x600; |
| 5860 | 5860 |
| 5861 static final int ICE_GATHERING = 0x100; | 5861 static const int ICE_GATHERING = 0x100; |
| 5862 | 5862 |
| 5863 static final int ICE_WAITING = 0x200; | 5863 static const int ICE_WAITING = 0x200; |
| 5864 | 5864 |
| 5865 static final int NEW = 0; | 5865 static const int NEW = 0; |
| 5866 | 5866 |
| 5867 static final int OPENING = 1; | 5867 static const int OPENING = 1; |
| 5868 | 5868 |
| 5869 static final int SDP_ANSWER = 0x300; | 5869 static const int SDP_ANSWER = 0x300; |
| 5870 | 5870 |
| 5871 static final int SDP_OFFER = 0x100; | 5871 static const int SDP_OFFER = 0x100; |
| 5872 | 5872 |
| 5873 static final int SDP_PRANSWER = 0x200; | 5873 static const int SDP_PRANSWER = 0x200; |
| 5874 | 5874 |
| 5875 final int iceState; | 5875 final int iceState; |
| 5876 | 5876 |
| 5877 final _SessionDescriptionJs localDescription; | 5877 final _SessionDescriptionJs localDescription; |
| 5878 | 5878 |
| 5879 final _MediaStreamListJs localStreams; | 5879 final _MediaStreamListJs localStreams; |
| 5880 | 5880 |
| 5881 final int readyState; | 5881 final int readyState; |
| 5882 | 5882 |
| 5883 final _SessionDescriptionJs remoteDescription; | 5883 final _SessionDescriptionJs remoteDescription; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5915 | 5915 |
| 5916 final _PerformanceNavigationJs navigation; | 5916 final _PerformanceNavigationJs navigation; |
| 5917 | 5917 |
| 5918 final _PerformanceTimingJs timing; | 5918 final _PerformanceTimingJs timing; |
| 5919 | 5919 |
| 5920 num webkitNow() native; | 5920 num webkitNow() native; |
| 5921 } | 5921 } |
| 5922 | 5922 |
| 5923 class _PerformanceNavigationJs extends _DOMTypeJs implements PerformanceNavigati
on native "*PerformanceNavigation" { | 5923 class _PerformanceNavigationJs extends _DOMTypeJs implements PerformanceNavigati
on native "*PerformanceNavigation" { |
| 5924 | 5924 |
| 5925 static final int TYPE_BACK_FORWARD = 2; | 5925 static const int TYPE_BACK_FORWARD = 2; |
| 5926 | 5926 |
| 5927 static final int TYPE_NAVIGATE = 0; | 5927 static const int TYPE_NAVIGATE = 0; |
| 5928 | 5928 |
| 5929 static final int TYPE_RELOAD = 1; | 5929 static const int TYPE_RELOAD = 1; |
| 5930 | 5930 |
| 5931 static final int TYPE_RESERVED = 255; | 5931 static const int TYPE_RESERVED = 255; |
| 5932 | 5932 |
| 5933 final int redirectCount; | 5933 final int redirectCount; |
| 5934 | 5934 |
| 5935 final int type; | 5935 final int type; |
| 5936 } | 5936 } |
| 5937 | 5937 |
| 5938 class _PerformanceTimingJs extends _DOMTypeJs implements PerformanceTiming nativ
e "*PerformanceTiming" { | 5938 class _PerformanceTimingJs extends _DOMTypeJs implements PerformanceTiming nativ
e "*PerformanceTiming" { |
| 5939 | 5939 |
| 5940 final int connectEnd; | 5940 final int connectEnd; |
| 5941 | 5941 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5980 final int unloadEventStart; | 5980 final int unloadEventStart; |
| 5981 } | 5981 } |
| 5982 | 5982 |
| 5983 class _PopStateEventJs extends _EventJs implements PopStateEvent native "*PopSta
teEvent" { | 5983 class _PopStateEventJs extends _EventJs implements PopStateEvent native "*PopSta
teEvent" { |
| 5984 | 5984 |
| 5985 final Object state; | 5985 final Object state; |
| 5986 } | 5986 } |
| 5987 | 5987 |
| 5988 class _PositionErrorJs extends _DOMTypeJs implements PositionError native "*Posi
tionError" { | 5988 class _PositionErrorJs extends _DOMTypeJs implements PositionError native "*Posi
tionError" { |
| 5989 | 5989 |
| 5990 static final int PERMISSION_DENIED = 1; | 5990 static const int PERMISSION_DENIED = 1; |
| 5991 | 5991 |
| 5992 static final int POSITION_UNAVAILABLE = 2; | 5992 static const int POSITION_UNAVAILABLE = 2; |
| 5993 | 5993 |
| 5994 static final int TIMEOUT = 3; | 5994 static const int TIMEOUT = 3; |
| 5995 | 5995 |
| 5996 final int code; | 5996 final int code; |
| 5997 | 5997 |
| 5998 final String message; | 5998 final String message; |
| 5999 } | 5999 } |
| 6000 | 6000 |
| 6001 class _ProcessingInstructionJs extends _NodeJs implements ProcessingInstruction
native "*ProcessingInstruction" { | 6001 class _ProcessingInstructionJs extends _NodeJs implements ProcessingInstruction
native "*ProcessingInstruction" { |
| 6002 | 6002 |
| 6003 String data; | 6003 String data; |
| 6004 | 6004 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 6034 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 6034 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 6035 } | 6035 } |
| 6036 | 6036 |
| 6037 class _RadioNodeListJs extends _NodeListJs implements RadioNodeList native "*Rad
ioNodeList" { | 6037 class _RadioNodeListJs extends _NodeListJs implements RadioNodeList native "*Rad
ioNodeList" { |
| 6038 | 6038 |
| 6039 String value; | 6039 String value; |
| 6040 } | 6040 } |
| 6041 | 6041 |
| 6042 class _RangeJs extends _DOMTypeJs implements Range native "*Range" { | 6042 class _RangeJs extends _DOMTypeJs implements Range native "*Range" { |
| 6043 | 6043 |
| 6044 static final int END_TO_END = 2; | 6044 static const int END_TO_END = 2; |
| 6045 | 6045 |
| 6046 static final int END_TO_START = 3; | 6046 static const int END_TO_START = 3; |
| 6047 | 6047 |
| 6048 static final int NODE_AFTER = 1; | 6048 static const int NODE_AFTER = 1; |
| 6049 | 6049 |
| 6050 static final int NODE_BEFORE = 0; | 6050 static const int NODE_BEFORE = 0; |
| 6051 | 6051 |
| 6052 static final int NODE_BEFORE_AND_AFTER = 2; | 6052 static const int NODE_BEFORE_AND_AFTER = 2; |
| 6053 | 6053 |
| 6054 static final int NODE_INSIDE = 3; | 6054 static const int NODE_INSIDE = 3; |
| 6055 | 6055 |
| 6056 static final int START_TO_END = 1; | 6056 static const int START_TO_END = 1; |
| 6057 | 6057 |
| 6058 static final int START_TO_START = 0; | 6058 static const int START_TO_START = 0; |
| 6059 | 6059 |
| 6060 final bool collapsed; | 6060 final bool collapsed; |
| 6061 | 6061 |
| 6062 final _NodeJs commonAncestorContainer; | 6062 final _NodeJs commonAncestorContainer; |
| 6063 | 6063 |
| 6064 final _NodeJs endContainer; | 6064 final _NodeJs endContainer; |
| 6065 | 6065 |
| 6066 final int endOffset; | 6066 final int endOffset; |
| 6067 | 6067 |
| 6068 final _NodeJs startContainer; | 6068 final _NodeJs startContainer; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6115 | 6115 |
| 6116 void setStartBefore(_NodeJs refNode) native; | 6116 void setStartBefore(_NodeJs refNode) native; |
| 6117 | 6117 |
| 6118 void surroundContents(_NodeJs newParent) native; | 6118 void surroundContents(_NodeJs newParent) native; |
| 6119 | 6119 |
| 6120 String toString() native; | 6120 String toString() native; |
| 6121 } | 6121 } |
| 6122 | 6122 |
| 6123 class _RangeExceptionJs extends _DOMTypeJs implements RangeException native "*Ra
ngeException" { | 6123 class _RangeExceptionJs extends _DOMTypeJs implements RangeException native "*Ra
ngeException" { |
| 6124 | 6124 |
| 6125 static final int BAD_BOUNDARYPOINTS_ERR = 1; | 6125 static const int BAD_BOUNDARYPOINTS_ERR = 1; |
| 6126 | 6126 |
| 6127 static final int INVALID_NODE_TYPE_ERR = 2; | 6127 static const int INVALID_NODE_TYPE_ERR = 2; |
| 6128 | 6128 |
| 6129 final int code; | 6129 final int code; |
| 6130 | 6130 |
| 6131 final String message; | 6131 final String message; |
| 6132 | 6132 |
| 6133 final String name; | 6133 final String name; |
| 6134 | 6134 |
| 6135 String toString() native; | 6135 String toString() native; |
| 6136 } | 6136 } |
| 6137 | 6137 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 6160 | 6160 |
| 6161 final _CSSPrimitiveValueJs left; | 6161 final _CSSPrimitiveValueJs left; |
| 6162 | 6162 |
| 6163 final _CSSPrimitiveValueJs right; | 6163 final _CSSPrimitiveValueJs right; |
| 6164 | 6164 |
| 6165 final _CSSPrimitiveValueJs top; | 6165 final _CSSPrimitiveValueJs top; |
| 6166 } | 6166 } |
| 6167 | 6167 |
| 6168 class _SQLErrorJs extends _DOMTypeJs implements SQLError native "*SQLError" { | 6168 class _SQLErrorJs extends _DOMTypeJs implements SQLError native "*SQLError" { |
| 6169 | 6169 |
| 6170 static final int CONSTRAINT_ERR = 6; | 6170 static const int CONSTRAINT_ERR = 6; |
| 6171 | 6171 |
| 6172 static final int DATABASE_ERR = 1; | 6172 static const int DATABASE_ERR = 1; |
| 6173 | 6173 |
| 6174 static final int QUOTA_ERR = 4; | 6174 static const int QUOTA_ERR = 4; |
| 6175 | 6175 |
| 6176 static final int SYNTAX_ERR = 5; | 6176 static const int SYNTAX_ERR = 5; |
| 6177 | 6177 |
| 6178 static final int TIMEOUT_ERR = 7; | 6178 static const int TIMEOUT_ERR = 7; |
| 6179 | 6179 |
| 6180 static final int TOO_LARGE_ERR = 3; | 6180 static const int TOO_LARGE_ERR = 3; |
| 6181 | 6181 |
| 6182 static final int UNKNOWN_ERR = 0; | 6182 static const int UNKNOWN_ERR = 0; |
| 6183 | 6183 |
| 6184 static final int VERSION_ERR = 2; | 6184 static const int VERSION_ERR = 2; |
| 6185 | 6185 |
| 6186 final int code; | 6186 final int code; |
| 6187 | 6187 |
| 6188 final String message; | 6188 final String message; |
| 6189 } | 6189 } |
| 6190 | 6190 |
| 6191 class _SQLExceptionJs extends _DOMTypeJs implements SQLException native "*SQLExc
eption" { | 6191 class _SQLExceptionJs extends _DOMTypeJs implements SQLException native "*SQLExc
eption" { |
| 6192 | 6192 |
| 6193 static final int CONSTRAINT_ERR = 6; | 6193 static const int CONSTRAINT_ERR = 6; |
| 6194 | 6194 |
| 6195 static final int DATABASE_ERR = 1; | 6195 static const int DATABASE_ERR = 1; |
| 6196 | 6196 |
| 6197 static final int QUOTA_ERR = 4; | 6197 static const int QUOTA_ERR = 4; |
| 6198 | 6198 |
| 6199 static final int SYNTAX_ERR = 5; | 6199 static const int SYNTAX_ERR = 5; |
| 6200 | 6200 |
| 6201 static final int TIMEOUT_ERR = 7; | 6201 static const int TIMEOUT_ERR = 7; |
| 6202 | 6202 |
| 6203 static final int TOO_LARGE_ERR = 3; | 6203 static const int TOO_LARGE_ERR = 3; |
| 6204 | 6204 |
| 6205 static final int UNKNOWN_ERR = 0; | 6205 static const int UNKNOWN_ERR = 0; |
| 6206 | 6206 |
| 6207 static final int VERSION_ERR = 2; | 6207 static const int VERSION_ERR = 2; |
| 6208 | 6208 |
| 6209 final int code; | 6209 final int code; |
| 6210 | 6210 |
| 6211 final String message; | 6211 final String message; |
| 6212 } | 6212 } |
| 6213 | 6213 |
| 6214 class _SQLResultSetJs extends _DOMTypeJs implements SQLResultSet native "*SQLRes
ultSet" { | 6214 class _SQLResultSetJs extends _DOMTypeJs implements SQLResultSet native "*SQLRes
ultSet" { |
| 6215 | 6215 |
| 6216 final int insertId; | 6216 final int insertId; |
| 6217 | 6217 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6306 // From SVGURIReference | 6306 // From SVGURIReference |
| 6307 | 6307 |
| 6308 final _SVGAnimatedStringJs href; | 6308 final _SVGAnimatedStringJs href; |
| 6309 } | 6309 } |
| 6310 | 6310 |
| 6311 class _SVGAltGlyphItemElementJs extends _SVGElementJs implements SVGAltGlyphItem
Element native "*SVGAltGlyphItemElement" { | 6311 class _SVGAltGlyphItemElementJs extends _SVGElementJs implements SVGAltGlyphItem
Element native "*SVGAltGlyphItemElement" { |
| 6312 } | 6312 } |
| 6313 | 6313 |
| 6314 class _SVGAngleJs extends _DOMTypeJs implements SVGAngle native "*SVGAngle" { | 6314 class _SVGAngleJs extends _DOMTypeJs implements SVGAngle native "*SVGAngle" { |
| 6315 | 6315 |
| 6316 static final int SVG_ANGLETYPE_DEG = 2; | 6316 static const int SVG_ANGLETYPE_DEG = 2; |
| 6317 | 6317 |
| 6318 static final int SVG_ANGLETYPE_GRAD = 4; | 6318 static const int SVG_ANGLETYPE_GRAD = 4; |
| 6319 | 6319 |
| 6320 static final int SVG_ANGLETYPE_RAD = 3; | 6320 static const int SVG_ANGLETYPE_RAD = 3; |
| 6321 | 6321 |
| 6322 static final int SVG_ANGLETYPE_UNKNOWN = 0; | 6322 static const int SVG_ANGLETYPE_UNKNOWN = 0; |
| 6323 | 6323 |
| 6324 static final int SVG_ANGLETYPE_UNSPECIFIED = 1; | 6324 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; |
| 6325 | 6325 |
| 6326 final int unitType; | 6326 final int unitType; |
| 6327 | 6327 |
| 6328 num value; | 6328 num value; |
| 6329 | 6329 |
| 6330 String valueAsString; | 6330 String valueAsString; |
| 6331 | 6331 |
| 6332 num valueInSpecifiedUnits; | 6332 num valueInSpecifiedUnits; |
| 6333 | 6333 |
| 6334 void convertToSpecifiedUnits(int unitType) native; | 6334 void convertToSpecifiedUnits(int unitType) native; |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6572 | 6572 |
| 6573 _SVGMatrixJs getCTM() native; | 6573 _SVGMatrixJs getCTM() native; |
| 6574 | 6574 |
| 6575 _SVGMatrixJs getScreenCTM() native; | 6575 _SVGMatrixJs getScreenCTM() native; |
| 6576 | 6576 |
| 6577 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; | 6577 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
| 6578 } | 6578 } |
| 6579 | 6579 |
| 6580 class _SVGColorJs extends _CSSValueJs implements SVGColor native "*SVGColor" { | 6580 class _SVGColorJs extends _CSSValueJs implements SVGColor native "*SVGColor" { |
| 6581 | 6581 |
| 6582 static final int SVG_COLORTYPE_CURRENTCOLOR = 3; | 6582 static const int SVG_COLORTYPE_CURRENTCOLOR = 3; |
| 6583 | 6583 |
| 6584 static final int SVG_COLORTYPE_RGBCOLOR = 1; | 6584 static const int SVG_COLORTYPE_RGBCOLOR = 1; |
| 6585 | 6585 |
| 6586 static final int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; | 6586 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 6587 | 6587 |
| 6588 static final int SVG_COLORTYPE_UNKNOWN = 0; | 6588 static const int SVG_COLORTYPE_UNKNOWN = 0; |
| 6589 | 6589 |
| 6590 final int colorType; | 6590 final int colorType; |
| 6591 | 6591 |
| 6592 final _RGBColorJs rgbColor; | 6592 final _RGBColorJs rgbColor; |
| 6593 | 6593 |
| 6594 void setColor(int colorType, String rgbColor, String iccColor) native; | 6594 void setColor(int colorType, String rgbColor, String iccColor) native; |
| 6595 | 6595 |
| 6596 void setRGBColor(String rgbColor) native; | 6596 void setRGBColor(String rgbColor) native; |
| 6597 | 6597 |
| 6598 void setRGBColorICCColor(String rgbColor, String iccColor) native; | 6598 void setRGBColorICCColor(String rgbColor, String iccColor) native; |
| 6599 } | 6599 } |
| 6600 | 6600 |
| 6601 class _SVGComponentTransferFunctionElementJs extends _SVGElementJs implements SV
GComponentTransferFunctionElement native "*SVGComponentTransferFunctionElement"
{ | 6601 class _SVGComponentTransferFunctionElementJs extends _SVGElementJs implements SV
GComponentTransferFunctionElement native "*SVGComponentTransferFunctionElement"
{ |
| 6602 | 6602 |
| 6603 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; | 6603 static const int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; |
| 6604 | 6604 |
| 6605 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; | 6605 static const int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; |
| 6606 | 6606 |
| 6607 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; | 6607 static const int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; |
| 6608 | 6608 |
| 6609 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; | 6609 static const int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; |
| 6610 | 6610 |
| 6611 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; | 6611 static const int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; |
| 6612 | 6612 |
| 6613 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; | 6613 static const int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; |
| 6614 | 6614 |
| 6615 final _SVGAnimatedNumberJs amplitude; | 6615 final _SVGAnimatedNumberJs amplitude; |
| 6616 | 6616 |
| 6617 final _SVGAnimatedNumberJs exponent; | 6617 final _SVGAnimatedNumberJs exponent; |
| 6618 | 6618 |
| 6619 final _SVGAnimatedNumberJs intercept; | 6619 final _SVGAnimatedNumberJs intercept; |
| 6620 | 6620 |
| 6621 final _SVGAnimatedNumberJs offset; | 6621 final _SVGAnimatedNumberJs offset; |
| 6622 | 6622 |
| 6623 final _SVGAnimatedNumberJs slope; | 6623 final _SVGAnimatedNumberJs slope; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6820 | 6820 |
| 6821 _SVGMatrixJs getCTM() native; | 6821 _SVGMatrixJs getCTM() native; |
| 6822 | 6822 |
| 6823 _SVGMatrixJs getScreenCTM() native; | 6823 _SVGMatrixJs getScreenCTM() native; |
| 6824 | 6824 |
| 6825 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; | 6825 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
| 6826 } | 6826 } |
| 6827 | 6827 |
| 6828 class _SVGExceptionJs extends _DOMTypeJs implements SVGException native "*SVGExc
eption" { | 6828 class _SVGExceptionJs extends _DOMTypeJs implements SVGException native "*SVGExc
eption" { |
| 6829 | 6829 |
| 6830 static final int SVG_INVALID_VALUE_ERR = 1; | 6830 static const int SVG_INVALID_VALUE_ERR = 1; |
| 6831 | 6831 |
| 6832 static final int SVG_MATRIX_NOT_INVERTABLE = 2; | 6832 static const int SVG_MATRIX_NOT_INVERTABLE = 2; |
| 6833 | 6833 |
| 6834 static final int SVG_WRONG_TYPE_ERR = 0; | 6834 static const int SVG_WRONG_TYPE_ERR = 0; |
| 6835 | 6835 |
| 6836 final int code; | 6836 final int code; |
| 6837 | 6837 |
| 6838 final String message; | 6838 final String message; |
| 6839 | 6839 |
| 6840 final String name; | 6840 final String name; |
| 6841 | 6841 |
| 6842 String toString() native; | 6842 String toString() native; |
| 6843 } | 6843 } |
| 6844 | 6844 |
| 6845 class _SVGFEBlendElementJs extends _SVGElementJs implements SVGFEBlendElement na
tive "*SVGFEBlendElement" { | 6845 class _SVGFEBlendElementJs extends _SVGElementJs implements SVGFEBlendElement na
tive "*SVGFEBlendElement" { |
| 6846 | 6846 |
| 6847 static final int SVG_FEBLEND_MODE_DARKEN = 4; | 6847 static const int SVG_FEBLEND_MODE_DARKEN = 4; |
| 6848 | 6848 |
| 6849 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; | 6849 static const int SVG_FEBLEND_MODE_LIGHTEN = 5; |
| 6850 | 6850 |
| 6851 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; | 6851 static const int SVG_FEBLEND_MODE_MULTIPLY = 2; |
| 6852 | 6852 |
| 6853 static final int SVG_FEBLEND_MODE_NORMAL = 1; | 6853 static const int SVG_FEBLEND_MODE_NORMAL = 1; |
| 6854 | 6854 |
| 6855 static final int SVG_FEBLEND_MODE_SCREEN = 3; | 6855 static const int SVG_FEBLEND_MODE_SCREEN = 3; |
| 6856 | 6856 |
| 6857 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; | 6857 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; |
| 6858 | 6858 |
| 6859 final _SVGAnimatedStringJs in1; | 6859 final _SVGAnimatedStringJs in1; |
| 6860 | 6860 |
| 6861 final _SVGAnimatedStringJs in2; | 6861 final _SVGAnimatedStringJs in2; |
| 6862 | 6862 |
| 6863 final _SVGAnimatedEnumerationJs mode; | 6863 final _SVGAnimatedEnumerationJs mode; |
| 6864 | 6864 |
| 6865 // From SVGFilterPrimitiveStandardAttributes | 6865 // From SVGFilterPrimitiveStandardAttributes |
| 6866 | 6866 |
| 6867 final _SVGAnimatedLengthJs height; | 6867 final _SVGAnimatedLengthJs height; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 6880 _SVGAnimatedStringJs get className() native "return this.className;"; | 6880 _SVGAnimatedStringJs get className() native "return this.className;"; |
| 6881 | 6881 |
| 6882 // Use implementation from Element. | 6882 // Use implementation from Element. |
| 6883 // final _CSSStyleDeclarationJs style; | 6883 // final _CSSStyleDeclarationJs style; |
| 6884 | 6884 |
| 6885 _CSSValueJs getPresentationAttribute(String name) native; | 6885 _CSSValueJs getPresentationAttribute(String name) native; |
| 6886 } | 6886 } |
| 6887 | 6887 |
| 6888 class _SVGFEColorMatrixElementJs extends _SVGElementJs implements SVGFEColorMatr
ixElement native "*SVGFEColorMatrixElement" { | 6888 class _SVGFEColorMatrixElementJs extends _SVGElementJs implements SVGFEColorMatr
ixElement native "*SVGFEColorMatrixElement" { |
| 6889 | 6889 |
| 6890 static final int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; | 6890 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; |
| 6891 | 6891 |
| 6892 static final int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; | 6892 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; |
| 6893 | 6893 |
| 6894 static final int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; | 6894 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; |
| 6895 | 6895 |
| 6896 static final int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; | 6896 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; |
| 6897 | 6897 |
| 6898 static final int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; | 6898 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; |
| 6899 | 6899 |
| 6900 final _SVGAnimatedStringJs in1; | 6900 final _SVGAnimatedStringJs in1; |
| 6901 | 6901 |
| 6902 final _SVGAnimatedEnumerationJs type; | 6902 final _SVGAnimatedEnumerationJs type; |
| 6903 | 6903 |
| 6904 final _SVGAnimatedNumberListJs values; | 6904 final _SVGAnimatedNumberListJs values; |
| 6905 | 6905 |
| 6906 // From SVGFilterPrimitiveStandardAttributes | 6906 // From SVGFilterPrimitiveStandardAttributes |
| 6907 | 6907 |
| 6908 final _SVGAnimatedLengthJs height; | 6908 final _SVGAnimatedLengthJs height; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6948 _SVGAnimatedStringJs get className() native "return this.className;"; | 6948 _SVGAnimatedStringJs get className() native "return this.className;"; |
| 6949 | 6949 |
| 6950 // Use implementation from Element. | 6950 // Use implementation from Element. |
| 6951 // final _CSSStyleDeclarationJs style; | 6951 // final _CSSStyleDeclarationJs style; |
| 6952 | 6952 |
| 6953 _CSSValueJs getPresentationAttribute(String name) native; | 6953 _CSSValueJs getPresentationAttribute(String name) native; |
| 6954 } | 6954 } |
| 6955 | 6955 |
| 6956 class _SVGFECompositeElementJs extends _SVGElementJs implements SVGFECompositeEl
ement native "*SVGFECompositeElement" { | 6956 class _SVGFECompositeElementJs extends _SVGElementJs implements SVGFECompositeEl
ement native "*SVGFECompositeElement" { |
| 6957 | 6957 |
| 6958 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; | 6958 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
| 6959 | 6959 |
| 6960 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; | 6960 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; |
| 6961 | 6961 |
| 6962 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2; | 6962 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2; |
| 6963 | 6963 |
| 6964 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3; | 6964 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3; |
| 6965 | 6965 |
| 6966 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1; | 6966 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1; |
| 6967 | 6967 |
| 6968 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; | 6968 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; |
| 6969 | 6969 |
| 6970 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5; | 6970 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; |
| 6971 | 6971 |
| 6972 final _SVGAnimatedStringJs in1; | 6972 final _SVGAnimatedStringJs in1; |
| 6973 | 6973 |
| 6974 final _SVGAnimatedStringJs in2; | 6974 final _SVGAnimatedStringJs in2; |
| 6975 | 6975 |
| 6976 final _SVGAnimatedNumberJs k1; | 6976 final _SVGAnimatedNumberJs k1; |
| 6977 | 6977 |
| 6978 final _SVGAnimatedNumberJs k2; | 6978 final _SVGAnimatedNumberJs k2; |
| 6979 | 6979 |
| 6980 final _SVGAnimatedNumberJs k3; | 6980 final _SVGAnimatedNumberJs k3; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 7001 _SVGAnimatedStringJs get className() native "return this.className;"; | 7001 _SVGAnimatedStringJs get className() native "return this.className;"; |
| 7002 | 7002 |
| 7003 // Use implementation from Element. | 7003 // Use implementation from Element. |
| 7004 // final _CSSStyleDeclarationJs style; | 7004 // final _CSSStyleDeclarationJs style; |
| 7005 | 7005 |
| 7006 _CSSValueJs getPresentationAttribute(String name) native; | 7006 _CSSValueJs getPresentationAttribute(String name) native; |
| 7007 } | 7007 } |
| 7008 | 7008 |
| 7009 class _SVGFEConvolveMatrixElementJs extends _SVGElementJs implements SVGFEConvol
veMatrixElement native "*SVGFEConvolveMatrixElement" { | 7009 class _SVGFEConvolveMatrixElementJs extends _SVGElementJs implements SVGFEConvol
veMatrixElement native "*SVGFEConvolveMatrixElement" { |
| 7010 | 7010 |
| 7011 static final int SVG_EDGEMODE_DUPLICATE = 1; | 7011 static const int SVG_EDGEMODE_DUPLICATE = 1; |
| 7012 | 7012 |
| 7013 static final int SVG_EDGEMODE_NONE = 3; | 7013 static const int SVG_EDGEMODE_NONE = 3; |
| 7014 | 7014 |
| 7015 static final int SVG_EDGEMODE_UNKNOWN = 0; | 7015 static const int SVG_EDGEMODE_UNKNOWN = 0; |
| 7016 | 7016 |
| 7017 static final int SVG_EDGEMODE_WRAP = 2; | 7017 static const int SVG_EDGEMODE_WRAP = 2; |
| 7018 | 7018 |
| 7019 final _SVGAnimatedNumberJs bias; | 7019 final _SVGAnimatedNumberJs bias; |
| 7020 | 7020 |
| 7021 final _SVGAnimatedNumberJs divisor; | 7021 final _SVGAnimatedNumberJs divisor; |
| 7022 | 7022 |
| 7023 final _SVGAnimatedEnumerationJs edgeMode; | 7023 final _SVGAnimatedEnumerationJs edgeMode; |
| 7024 | 7024 |
| 7025 final _SVGAnimatedStringJs in1; | 7025 final _SVGAnimatedStringJs in1; |
| 7026 | 7026 |
| 7027 final _SVGAnimatedNumberListJs kernelMatrix; | 7027 final _SVGAnimatedNumberListJs kernelMatrix; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7093 _SVGAnimatedStringJs get className() native "return this.className;"; | 7093 _SVGAnimatedStringJs get className() native "return this.className;"; |
| 7094 | 7094 |
| 7095 // Use implementation from Element. | 7095 // Use implementation from Element. |
| 7096 // final _CSSStyleDeclarationJs style; | 7096 // final _CSSStyleDeclarationJs style; |
| 7097 | 7097 |
| 7098 _CSSValueJs getPresentationAttribute(String name) native; | 7098 _CSSValueJs getPresentationAttribute(String name) native; |
| 7099 } | 7099 } |
| 7100 | 7100 |
| 7101 class _SVGFEDisplacementMapElementJs extends _SVGElementJs implements SVGFEDispl
acementMapElement native "*SVGFEDisplacementMapElement" { | 7101 class _SVGFEDisplacementMapElementJs extends _SVGElementJs implements SVGFEDispl
acementMapElement native "*SVGFEDisplacementMapElement" { |
| 7102 | 7102 |
| 7103 static final int SVG_CHANNEL_A = 4; | 7103 static const int SVG_CHANNEL_A = 4; |
| 7104 | 7104 |
| 7105 static final int SVG_CHANNEL_B = 3; | 7105 static const int SVG_CHANNEL_B = 3; |
| 7106 | 7106 |
| 7107 static final int SVG_CHANNEL_G = 2; | 7107 static const int SVG_CHANNEL_G = 2; |
| 7108 | 7108 |
| 7109 static final int SVG_CHANNEL_R = 1; | 7109 static const int SVG_CHANNEL_R = 1; |
| 7110 | 7110 |
| 7111 static final int SVG_CHANNEL_UNKNOWN = 0; | 7111 static const int SVG_CHANNEL_UNKNOWN = 0; |
| 7112 | 7112 |
| 7113 final _SVGAnimatedStringJs in1; | 7113 final _SVGAnimatedStringJs in1; |
| 7114 | 7114 |
| 7115 final _SVGAnimatedStringJs in2; | 7115 final _SVGAnimatedStringJs in2; |
| 7116 | 7116 |
| 7117 final _SVGAnimatedNumberJs scale; | 7117 final _SVGAnimatedNumberJs scale; |
| 7118 | 7118 |
| 7119 final _SVGAnimatedEnumerationJs xChannelSelector; | 7119 final _SVGAnimatedEnumerationJs xChannelSelector; |
| 7120 | 7120 |
| 7121 final _SVGAnimatedEnumerationJs yChannelSelector; | 7121 final _SVGAnimatedEnumerationJs yChannelSelector; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7323 _CSSValueJs getPresentationAttribute(String name) native; | 7323 _CSSValueJs getPresentationAttribute(String name) native; |
| 7324 } | 7324 } |
| 7325 | 7325 |
| 7326 class _SVGFEMergeNodeElementJs extends _SVGElementJs implements SVGFEMergeNodeEl
ement native "*SVGFEMergeNodeElement" { | 7326 class _SVGFEMergeNodeElementJs extends _SVGElementJs implements SVGFEMergeNodeEl
ement native "*SVGFEMergeNodeElement" { |
| 7327 | 7327 |
| 7328 final _SVGAnimatedStringJs in1; | 7328 final _SVGAnimatedStringJs in1; |
| 7329 } | 7329 } |
| 7330 | 7330 |
| 7331 class _SVGFEMorphologyElementJs extends _SVGElementJs implements SVGFEMorphology
Element native "*SVGFEMorphologyElement" { | 7331 class _SVGFEMorphologyElementJs extends _SVGElementJs implements SVGFEMorphology
Element native "*SVGFEMorphologyElement" { |
| 7332 | 7332 |
| 7333 static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; | 7333 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
| 7334 | 7334 |
| 7335 static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; | 7335 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; |
| 7336 | 7336 |
| 7337 static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; | 7337 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; |
| 7338 | 7338 |
| 7339 final _SVGAnimatedStringJs in1; | 7339 final _SVGAnimatedStringJs in1; |
| 7340 | 7340 |
| 7341 final _SVGAnimatedEnumerationJs operator; | 7341 final _SVGAnimatedEnumerationJs operator; |
| 7342 | 7342 |
| 7343 final _SVGAnimatedNumberJs radiusX; | 7343 final _SVGAnimatedNumberJs radiusX; |
| 7344 | 7344 |
| 7345 final _SVGAnimatedNumberJs radiusY; | 7345 final _SVGAnimatedNumberJs radiusY; |
| 7346 | 7346 |
| 7347 void setRadius(num radiusX, num radiusY) native; | 7347 void setRadius(num radiusX, num radiusY) native; |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7483 _SVGAnimatedStringJs get className() native "return this.className;"; | 7483 _SVGAnimatedStringJs get className() native "return this.className;"; |
| 7484 | 7484 |
| 7485 // Use implementation from Element. | 7485 // Use implementation from Element. |
| 7486 // final _CSSStyleDeclarationJs style; | 7486 // final _CSSStyleDeclarationJs style; |
| 7487 | 7487 |
| 7488 _CSSValueJs getPresentationAttribute(String name) native; | 7488 _CSSValueJs getPresentationAttribute(String name) native; |
| 7489 } | 7489 } |
| 7490 | 7490 |
| 7491 class _SVGFETurbulenceElementJs extends _SVGElementJs implements SVGFETurbulence
Element native "*SVGFETurbulenceElement" { | 7491 class _SVGFETurbulenceElementJs extends _SVGElementJs implements SVGFETurbulence
Element native "*SVGFETurbulenceElement" { |
| 7492 | 7492 |
| 7493 static final int SVG_STITCHTYPE_NOSTITCH = 2; | 7493 static const int SVG_STITCHTYPE_NOSTITCH = 2; |
| 7494 | 7494 |
| 7495 static final int SVG_STITCHTYPE_STITCH = 1; | 7495 static const int SVG_STITCHTYPE_STITCH = 1; |
| 7496 | 7496 |
| 7497 static final int SVG_STITCHTYPE_UNKNOWN = 0; | 7497 static const int SVG_STITCHTYPE_UNKNOWN = 0; |
| 7498 | 7498 |
| 7499 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; | 7499 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; |
| 7500 | 7500 |
| 7501 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2; | 7501 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; |
| 7502 | 7502 |
| 7503 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0; | 7503 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; |
| 7504 | 7504 |
| 7505 final _SVGAnimatedNumberJs baseFrequencyX; | 7505 final _SVGAnimatedNumberJs baseFrequencyX; |
| 7506 | 7506 |
| 7507 final _SVGAnimatedNumberJs baseFrequencyY; | 7507 final _SVGAnimatedNumberJs baseFrequencyY; |
| 7508 | 7508 |
| 7509 final _SVGAnimatedIntegerJs numOctaves; | 7509 final _SVGAnimatedIntegerJs numOctaves; |
| 7510 | 7510 |
| 7511 final _SVGAnimatedNumberJs seed; | 7511 final _SVGAnimatedNumberJs seed; |
| 7512 | 7512 |
| 7513 final _SVGAnimatedEnumerationJs stitchTiles; | 7513 final _SVGAnimatedEnumerationJs stitchTiles; |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7737 _SVGAnimatedStringJs get className() native "return this.className;"; | 7737 _SVGAnimatedStringJs get className() native "return this.className;"; |
| 7738 | 7738 |
| 7739 // Use implementation from Element. | 7739 // Use implementation from Element. |
| 7740 // final _CSSStyleDeclarationJs style; | 7740 // final _CSSStyleDeclarationJs style; |
| 7741 | 7741 |
| 7742 _CSSValueJs getPresentationAttribute(String name) native; | 7742 _CSSValueJs getPresentationAttribute(String name) native; |
| 7743 } | 7743 } |
| 7744 | 7744 |
| 7745 class _SVGGradientElementJs extends _SVGElementJs implements SVGGradientElement
native "*SVGGradientElement" { | 7745 class _SVGGradientElementJs extends _SVGElementJs implements SVGGradientElement
native "*SVGGradientElement" { |
| 7746 | 7746 |
| 7747 static final int SVG_SPREADMETHOD_PAD = 1; | 7747 static const int SVG_SPREADMETHOD_PAD = 1; |
| 7748 | 7748 |
| 7749 static final int SVG_SPREADMETHOD_REFLECT = 2; | 7749 static const int SVG_SPREADMETHOD_REFLECT = 2; |
| 7750 | 7750 |
| 7751 static final int SVG_SPREADMETHOD_REPEAT = 3; | 7751 static const int SVG_SPREADMETHOD_REPEAT = 3; |
| 7752 | 7752 |
| 7753 static final int SVG_SPREADMETHOD_UNKNOWN = 0; | 7753 static const int SVG_SPREADMETHOD_UNKNOWN = 0; |
| 7754 | 7754 |
| 7755 final _SVGAnimatedTransformListJs gradientTransform; | 7755 final _SVGAnimatedTransformListJs gradientTransform; |
| 7756 | 7756 |
| 7757 final _SVGAnimatedEnumerationJs gradientUnits; | 7757 final _SVGAnimatedEnumerationJs gradientUnits; |
| 7758 | 7758 |
| 7759 final _SVGAnimatedEnumerationJs spreadMethod; | 7759 final _SVGAnimatedEnumerationJs spreadMethod; |
| 7760 | 7760 |
| 7761 // From SVGURIReference | 7761 // From SVGURIReference |
| 7762 | 7762 |
| 7763 final _SVGAnimatedStringJs href; | 7763 final _SVGAnimatedStringJs href; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7840 | 7840 |
| 7841 _SVGMatrixJs getCTM() native; | 7841 _SVGMatrixJs getCTM() native; |
| 7842 | 7842 |
| 7843 _SVGMatrixJs getScreenCTM() native; | 7843 _SVGMatrixJs getScreenCTM() native; |
| 7844 | 7844 |
| 7845 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; | 7845 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
| 7846 } | 7846 } |
| 7847 | 7847 |
| 7848 class _SVGLengthJs extends _DOMTypeJs implements SVGLength native "*SVGLength" { | 7848 class _SVGLengthJs extends _DOMTypeJs implements SVGLength native "*SVGLength" { |
| 7849 | 7849 |
| 7850 static final int SVG_LENGTHTYPE_CM = 6; | 7850 static const int SVG_LENGTHTYPE_CM = 6; |
| 7851 | 7851 |
| 7852 static final int SVG_LENGTHTYPE_EMS = 3; | 7852 static const int SVG_LENGTHTYPE_EMS = 3; |
| 7853 | 7853 |
| 7854 static final int SVG_LENGTHTYPE_EXS = 4; | 7854 static const int SVG_LENGTHTYPE_EXS = 4; |
| 7855 | 7855 |
| 7856 static final int SVG_LENGTHTYPE_IN = 8; | 7856 static const int SVG_LENGTHTYPE_IN = 8; |
| 7857 | 7857 |
| 7858 static final int SVG_LENGTHTYPE_MM = 7; | 7858 static const int SVG_LENGTHTYPE_MM = 7; |
| 7859 | 7859 |
| 7860 static final int SVG_LENGTHTYPE_NUMBER = 1; | 7860 static const int SVG_LENGTHTYPE_NUMBER = 1; |
| 7861 | 7861 |
| 7862 static final int SVG_LENGTHTYPE_PC = 10; | 7862 static const int SVG_LENGTHTYPE_PC = 10; |
| 7863 | 7863 |
| 7864 static final int SVG_LENGTHTYPE_PERCENTAGE = 2; | 7864 static const int SVG_LENGTHTYPE_PERCENTAGE = 2; |
| 7865 | 7865 |
| 7866 static final int SVG_LENGTHTYPE_PT = 9; | 7866 static const int SVG_LENGTHTYPE_PT = 9; |
| 7867 | 7867 |
| 7868 static final int SVG_LENGTHTYPE_PX = 5; | 7868 static const int SVG_LENGTHTYPE_PX = 5; |
| 7869 | 7869 |
| 7870 static final int SVG_LENGTHTYPE_UNKNOWN = 0; | 7870 static const int SVG_LENGTHTYPE_UNKNOWN = 0; |
| 7871 | 7871 |
| 7872 final int unitType; | 7872 final int unitType; |
| 7873 | 7873 |
| 7874 num value; | 7874 num value; |
| 7875 | 7875 |
| 7876 String valueAsString; | 7876 String valueAsString; |
| 7877 | 7877 |
| 7878 num valueInSpecifiedUnits; | 7878 num valueInSpecifiedUnits; |
| 7879 | 7879 |
| 7880 void convertToSpecifiedUnits(int unitType) native; | 7880 void convertToSpecifiedUnits(int unitType) native; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7977 | 7977 |
| 7978 final _SVGAnimatedStringJs href; | 7978 final _SVGAnimatedStringJs href; |
| 7979 | 7979 |
| 7980 // From SVGExternalResourcesRequired | 7980 // From SVGExternalResourcesRequired |
| 7981 | 7981 |
| 7982 final _SVGAnimatedBooleanJs externalResourcesRequired; | 7982 final _SVGAnimatedBooleanJs externalResourcesRequired; |
| 7983 } | 7983 } |
| 7984 | 7984 |
| 7985 class _SVGMarkerElementJs extends _SVGElementJs implements SVGMarkerElement nati
ve "*SVGMarkerElement" { | 7985 class _SVGMarkerElementJs extends _SVGElementJs implements SVGMarkerElement nati
ve "*SVGMarkerElement" { |
| 7986 | 7986 |
| 7987 static final int SVG_MARKERUNITS_STROKEWIDTH = 2; | 7987 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; |
| 7988 | 7988 |
| 7989 static final int SVG_MARKERUNITS_UNKNOWN = 0; | 7989 static const int SVG_MARKERUNITS_UNKNOWN = 0; |
| 7990 | 7990 |
| 7991 static final int SVG_MARKERUNITS_USERSPACEONUSE = 1; | 7991 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1; |
| 7992 | 7992 |
| 7993 static final int SVG_MARKER_ORIENT_ANGLE = 2; | 7993 static const int SVG_MARKER_ORIENT_ANGLE = 2; |
| 7994 | 7994 |
| 7995 static final int SVG_MARKER_ORIENT_AUTO = 1; | 7995 static const int SVG_MARKER_ORIENT_AUTO = 1; |
| 7996 | 7996 |
| 7997 static final int SVG_MARKER_ORIENT_UNKNOWN = 0; | 7997 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; |
| 7998 | 7998 |
| 7999 final _SVGAnimatedLengthJs markerHeight; | 7999 final _SVGAnimatedLengthJs markerHeight; |
| 8000 | 8000 |
| 8001 final _SVGAnimatedEnumerationJs markerUnits; | 8001 final _SVGAnimatedEnumerationJs markerUnits; |
| 8002 | 8002 |
| 8003 final _SVGAnimatedLengthJs markerWidth; | 8003 final _SVGAnimatedLengthJs markerWidth; |
| 8004 | 8004 |
| 8005 final _SVGAnimatedAngleJs orientAngle; | 8005 final _SVGAnimatedAngleJs orientAngle; |
| 8006 | 8006 |
| 8007 final _SVGAnimatedEnumerationJs orientType; | 8007 final _SVGAnimatedEnumerationJs orientType; |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8148 | 8148 |
| 8149 _SVGNumberJs insertItemBefore(_SVGNumberJs item, int index) native; | 8149 _SVGNumberJs insertItemBefore(_SVGNumberJs item, int index) native; |
| 8150 | 8150 |
| 8151 _SVGNumberJs removeItem(int index) native; | 8151 _SVGNumberJs removeItem(int index) native; |
| 8152 | 8152 |
| 8153 _SVGNumberJs replaceItem(_SVGNumberJs item, int index) native; | 8153 _SVGNumberJs replaceItem(_SVGNumberJs item, int index) native; |
| 8154 } | 8154 } |
| 8155 | 8155 |
| 8156 class _SVGPaintJs extends _SVGColorJs implements SVGPaint native "*SVGPaint" { | 8156 class _SVGPaintJs extends _SVGColorJs implements SVGPaint native "*SVGPaint" { |
| 8157 | 8157 |
| 8158 static final int SVG_PAINTTYPE_CURRENTCOLOR = 102; | 8158 static const int SVG_PAINTTYPE_CURRENTCOLOR = 102; |
| 8159 | 8159 |
| 8160 static final int SVG_PAINTTYPE_NONE = 101; | 8160 static const int SVG_PAINTTYPE_NONE = 101; |
| 8161 | 8161 |
| 8162 static final int SVG_PAINTTYPE_RGBCOLOR = 1; | 8162 static const int SVG_PAINTTYPE_RGBCOLOR = 1; |
| 8163 | 8163 |
| 8164 static final int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; | 8164 static const int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 8165 | 8165 |
| 8166 static final int SVG_PAINTTYPE_UNKNOWN = 0; | 8166 static const int SVG_PAINTTYPE_UNKNOWN = 0; |
| 8167 | 8167 |
| 8168 static final int SVG_PAINTTYPE_URI = 107; | 8168 static const int SVG_PAINTTYPE_URI = 107; |
| 8169 | 8169 |
| 8170 static final int SVG_PAINTTYPE_URI_CURRENTCOLOR = 104; | 8170 static const int SVG_PAINTTYPE_URI_CURRENTCOLOR = 104; |
| 8171 | 8171 |
| 8172 static final int SVG_PAINTTYPE_URI_NONE = 103; | 8172 static const int SVG_PAINTTYPE_URI_NONE = 103; |
| 8173 | 8173 |
| 8174 static final int SVG_PAINTTYPE_URI_RGBCOLOR = 105; | 8174 static const int SVG_PAINTTYPE_URI_RGBCOLOR = 105; |
| 8175 | 8175 |
| 8176 static final int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106; | 8176 static const int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106; |
| 8177 | 8177 |
| 8178 final int paintType; | 8178 final int paintType; |
| 8179 | 8179 |
| 8180 final String uri; | 8180 final String uri; |
| 8181 | 8181 |
| 8182 void setPaint(int paintType, String uri, String rgbColor, String iccColor) nat
ive; | 8182 void setPaint(int paintType, String uri, String rgbColor, String iccColor) nat
ive; |
| 8183 | 8183 |
| 8184 void setUri(String uri) native; | 8184 void setUri(String uri) native; |
| 8185 } | 8185 } |
| 8186 | 8186 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8284 | 8284 |
| 8285 _SVGMatrixJs getCTM() native; | 8285 _SVGMatrixJs getCTM() native; |
| 8286 | 8286 |
| 8287 _SVGMatrixJs getScreenCTM() native; | 8287 _SVGMatrixJs getScreenCTM() native; |
| 8288 | 8288 |
| 8289 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; | 8289 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
| 8290 } | 8290 } |
| 8291 | 8291 |
| 8292 class _SVGPathSegJs extends _DOMTypeJs implements SVGPathSeg native "*SVGPathSeg
" { | 8292 class _SVGPathSegJs extends _DOMTypeJs implements SVGPathSeg native "*SVGPathSeg
" { |
| 8293 | 8293 |
| 8294 static final int PATHSEG_ARC_ABS = 10; | 8294 static const int PATHSEG_ARC_ABS = 10; |
| 8295 | 8295 |
| 8296 static final int PATHSEG_ARC_REL = 11; | 8296 static const int PATHSEG_ARC_REL = 11; |
| 8297 | 8297 |
| 8298 static final int PATHSEG_CLOSEPATH = 1; | 8298 static const int PATHSEG_CLOSEPATH = 1; |
| 8299 | 8299 |
| 8300 static final int PATHSEG_CURVETO_CUBIC_ABS = 6; | 8300 static const int PATHSEG_CURVETO_CUBIC_ABS = 6; |
| 8301 | 8301 |
| 8302 static final int PATHSEG_CURVETO_CUBIC_REL = 7; | 8302 static const int PATHSEG_CURVETO_CUBIC_REL = 7; |
| 8303 | 8303 |
| 8304 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; | 8304 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; |
| 8305 | 8305 |
| 8306 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; | 8306 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; |
| 8307 | 8307 |
| 8308 static final int PATHSEG_CURVETO_QUADRATIC_ABS = 8; | 8308 static const int PATHSEG_CURVETO_QUADRATIC_ABS = 8; |
| 8309 | 8309 |
| 8310 static final int PATHSEG_CURVETO_QUADRATIC_REL = 9; | 8310 static const int PATHSEG_CURVETO_QUADRATIC_REL = 9; |
| 8311 | 8311 |
| 8312 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; | 8312 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; |
| 8313 | 8313 |
| 8314 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; | 8314 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; |
| 8315 | 8315 |
| 8316 static final int PATHSEG_LINETO_ABS = 4; | 8316 static const int PATHSEG_LINETO_ABS = 4; |
| 8317 | 8317 |
| 8318 static final int PATHSEG_LINETO_HORIZONTAL_ABS = 12; | 8318 static const int PATHSEG_LINETO_HORIZONTAL_ABS = 12; |
| 8319 | 8319 |
| 8320 static final int PATHSEG_LINETO_HORIZONTAL_REL = 13; | 8320 static const int PATHSEG_LINETO_HORIZONTAL_REL = 13; |
| 8321 | 8321 |
| 8322 static final int PATHSEG_LINETO_REL = 5; | 8322 static const int PATHSEG_LINETO_REL = 5; |
| 8323 | 8323 |
| 8324 static final int PATHSEG_LINETO_VERTICAL_ABS = 14; | 8324 static const int PATHSEG_LINETO_VERTICAL_ABS = 14; |
| 8325 | 8325 |
| 8326 static final int PATHSEG_LINETO_VERTICAL_REL = 15; | 8326 static const int PATHSEG_LINETO_VERTICAL_REL = 15; |
| 8327 | 8327 |
| 8328 static final int PATHSEG_MOVETO_ABS = 2; | 8328 static const int PATHSEG_MOVETO_ABS = 2; |
| 8329 | 8329 |
| 8330 static final int PATHSEG_MOVETO_REL = 3; | 8330 static const int PATHSEG_MOVETO_REL = 3; |
| 8331 | 8331 |
| 8332 static final int PATHSEG_UNKNOWN = 0; | 8332 static const int PATHSEG_UNKNOWN = 0; |
| 8333 | 8333 |
| 8334 final int pathSegType; | 8334 final int pathSegType; |
| 8335 | 8335 |
| 8336 final String pathSegTypeAsLetter; | 8336 final String pathSegTypeAsLetter; |
| 8337 } | 8337 } |
| 8338 | 8338 |
| 8339 class _SVGPathSegArcAbsJs extends _SVGPathSegJs implements SVGPathSegArcAbs nati
ve "*SVGPathSegArcAbs" { | 8339 class _SVGPathSegArcAbsJs extends _SVGPathSegJs implements SVGPathSegArcAbs nati
ve "*SVGPathSegArcAbs" { |
| 8340 | 8340 |
| 8341 num angle; | 8341 num angle; |
| 8342 | 8342 |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8718 | 8718 |
| 8719 _SVGMatrixJs getCTM() native; | 8719 _SVGMatrixJs getCTM() native; |
| 8720 | 8720 |
| 8721 _SVGMatrixJs getScreenCTM() native; | 8721 _SVGMatrixJs getScreenCTM() native; |
| 8722 | 8722 |
| 8723 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; | 8723 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
| 8724 } | 8724 } |
| 8725 | 8725 |
| 8726 class _SVGPreserveAspectRatioJs extends _DOMTypeJs implements SVGPreserveAspectR
atio native "*SVGPreserveAspectRatio" { | 8726 class _SVGPreserveAspectRatioJs extends _DOMTypeJs implements SVGPreserveAspectR
atio native "*SVGPreserveAspectRatio" { |
| 8727 | 8727 |
| 8728 static final int SVG_MEETORSLICE_MEET = 1; | 8728 static const int SVG_MEETORSLICE_MEET = 1; |
| 8729 | 8729 |
| 8730 static final int SVG_MEETORSLICE_SLICE = 2; | 8730 static const int SVG_MEETORSLICE_SLICE = 2; |
| 8731 | 8731 |
| 8732 static final int SVG_MEETORSLICE_UNKNOWN = 0; | 8732 static const int SVG_MEETORSLICE_UNKNOWN = 0; |
| 8733 | 8733 |
| 8734 static final int SVG_PRESERVEASPECTRATIO_NONE = 1; | 8734 static const int SVG_PRESERVEASPECTRATIO_NONE = 1; |
| 8735 | 8735 |
| 8736 static final int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; | 8736 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; |
| 8737 | 8737 |
| 8738 static final int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10; | 8738 static const int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10; |
| 8739 | 8739 |
| 8740 static final int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7; | 8740 static const int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7; |
| 8741 | 8741 |
| 8742 static final int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4; | 8742 static const int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4; |
| 8743 | 8743 |
| 8744 static final int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9; | 8744 static const int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9; |
| 8745 | 8745 |
| 8746 static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; | 8746 static const int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; |
| 8747 | 8747 |
| 8748 static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; | 8748 static const int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; |
| 8749 | 8749 |
| 8750 static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; | 8750 static const int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; |
| 8751 | 8751 |
| 8752 static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; | 8752 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; |
| 8753 | 8753 |
| 8754 static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; | 8754 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; |
| 8755 | 8755 |
| 8756 int align; | 8756 int align; |
| 8757 | 8757 |
| 8758 int meetOrSlice; | 8758 int meetOrSlice; |
| 8759 } | 8759 } |
| 8760 | 8760 |
| 8761 class _SVGRadialGradientElementJs extends _SVGGradientElementJs implements SVGRa
dialGradientElement native "*SVGRadialGradientElement" { | 8761 class _SVGRadialGradientElementJs extends _SVGGradientElementJs implements SVGRa
dialGradientElement native "*SVGRadialGradientElement" { |
| 8762 | 8762 |
| 8763 final _SVGAnimatedLengthJs cx; | 8763 final _SVGAnimatedLengthJs cx; |
| 8764 | 8764 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8840 | 8840 |
| 8841 _SVGMatrixJs getCTM() native; | 8841 _SVGMatrixJs getCTM() native; |
| 8842 | 8842 |
| 8843 _SVGMatrixJs getScreenCTM() native; | 8843 _SVGMatrixJs getScreenCTM() native; |
| 8844 | 8844 |
| 8845 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; | 8845 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
| 8846 } | 8846 } |
| 8847 | 8847 |
| 8848 class _SVGRenderingIntentJs extends _DOMTypeJs implements SVGRenderingIntent nat
ive "*SVGRenderingIntent" { | 8848 class _SVGRenderingIntentJs extends _DOMTypeJs implements SVGRenderingIntent nat
ive "*SVGRenderingIntent" { |
| 8849 | 8849 |
| 8850 static final int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; | 8850 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; |
| 8851 | 8851 |
| 8852 static final int RENDERING_INTENT_AUTO = 1; | 8852 static const int RENDERING_INTENT_AUTO = 1; |
| 8853 | 8853 |
| 8854 static final int RENDERING_INTENT_PERCEPTUAL = 2; | 8854 static const int RENDERING_INTENT_PERCEPTUAL = 2; |
| 8855 | 8855 |
| 8856 static final int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; | 8856 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; |
| 8857 | 8857 |
| 8858 static final int RENDERING_INTENT_SATURATION = 4; | 8858 static const int RENDERING_INTENT_SATURATION = 4; |
| 8859 | 8859 |
| 8860 static final int RENDERING_INTENT_UNKNOWN = 0; | 8860 static const int RENDERING_INTENT_UNKNOWN = 0; |
| 8861 } | 8861 } |
| 8862 | 8862 |
| 8863 class _SVGSVGElementJs extends _SVGElementJs implements SVGSVGElement native "*S
VGSVGElement" { | 8863 class _SVGSVGElementJs extends _SVGElementJs implements SVGSVGElement native "*S
VGSVGElement" { |
| 8864 | 8864 |
| 8865 String contentScriptType; | 8865 String contentScriptType; |
| 8866 | 8866 |
| 8867 String contentStyleType; | 8867 String contentStyleType; |
| 8868 | 8868 |
| 8869 num currentScale; | 8869 num currentScale; |
| 8870 | 8870 |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9145 // From SVGURIReference | 9145 // From SVGURIReference |
| 9146 | 9146 |
| 9147 final _SVGAnimatedStringJs href; | 9147 final _SVGAnimatedStringJs href; |
| 9148 } | 9148 } |
| 9149 | 9149 |
| 9150 class _SVGTSpanElementJs extends _SVGTextPositioningElementJs implements SVGTSpa
nElement native "*SVGTSpanElement" { | 9150 class _SVGTSpanElementJs extends _SVGTextPositioningElementJs implements SVGTSpa
nElement native "*SVGTSpanElement" { |
| 9151 } | 9151 } |
| 9152 | 9152 |
| 9153 class _SVGTextContentElementJs extends _SVGElementJs implements SVGTextContentEl
ement native "*SVGTextContentElement" { | 9153 class _SVGTextContentElementJs extends _SVGElementJs implements SVGTextContentEl
ement native "*SVGTextContentElement" { |
| 9154 | 9154 |
| 9155 static final int LENGTHADJUST_SPACING = 1; | 9155 static const int LENGTHADJUST_SPACING = 1; |
| 9156 | 9156 |
| 9157 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; | 9157 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; |
| 9158 | 9158 |
| 9159 static final int LENGTHADJUST_UNKNOWN = 0; | 9159 static const int LENGTHADJUST_UNKNOWN = 0; |
| 9160 | 9160 |
| 9161 final _SVGAnimatedEnumerationJs lengthAdjust; | 9161 final _SVGAnimatedEnumerationJs lengthAdjust; |
| 9162 | 9162 |
| 9163 final _SVGAnimatedLengthJs textLength; | 9163 final _SVGAnimatedLengthJs textLength; |
| 9164 | 9164 |
| 9165 int getCharNumAtPosition(_SVGPointJs point) native; | 9165 int getCharNumAtPosition(_SVGPointJs point) native; |
| 9166 | 9166 |
| 9167 num getComputedTextLength() native; | 9167 num getComputedTextLength() native; |
| 9168 | 9168 |
| 9169 _SVGPointJs getEndPositionOfChar(int offset) native; | 9169 _SVGPointJs getEndPositionOfChar(int offset) native; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9227 | 9227 |
| 9228 _SVGMatrixJs getCTM() native; | 9228 _SVGMatrixJs getCTM() native; |
| 9229 | 9229 |
| 9230 _SVGMatrixJs getScreenCTM() native; | 9230 _SVGMatrixJs getScreenCTM() native; |
| 9231 | 9231 |
| 9232 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; | 9232 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
| 9233 } | 9233 } |
| 9234 | 9234 |
| 9235 class _SVGTextPathElementJs extends _SVGTextContentElementJs implements SVGTextP
athElement native "*SVGTextPathElement" { | 9235 class _SVGTextPathElementJs extends _SVGTextContentElementJs implements SVGTextP
athElement native "*SVGTextPathElement" { |
| 9236 | 9236 |
| 9237 static final int TEXTPATH_METHODTYPE_ALIGN = 1; | 9237 static const int TEXTPATH_METHODTYPE_ALIGN = 1; |
| 9238 | 9238 |
| 9239 static final int TEXTPATH_METHODTYPE_STRETCH = 2; | 9239 static const int TEXTPATH_METHODTYPE_STRETCH = 2; |
| 9240 | 9240 |
| 9241 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0; | 9241 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0; |
| 9242 | 9242 |
| 9243 static final int TEXTPATH_SPACINGTYPE_AUTO = 1; | 9243 static const int TEXTPATH_SPACINGTYPE_AUTO = 1; |
| 9244 | 9244 |
| 9245 static final int TEXTPATH_SPACINGTYPE_EXACT = 2; | 9245 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; |
| 9246 | 9246 |
| 9247 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; | 9247 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; |
| 9248 | 9248 |
| 9249 final _SVGAnimatedEnumerationJs method; | 9249 final _SVGAnimatedEnumerationJs method; |
| 9250 | 9250 |
| 9251 final _SVGAnimatedEnumerationJs spacing; | 9251 final _SVGAnimatedEnumerationJs spacing; |
| 9252 | 9252 |
| 9253 final _SVGAnimatedLengthJs startOffset; | 9253 final _SVGAnimatedLengthJs startOffset; |
| 9254 | 9254 |
| 9255 // From SVGURIReference | 9255 // From SVGURIReference |
| 9256 | 9256 |
| 9257 final _SVGAnimatedStringJs href; | 9257 final _SVGAnimatedStringJs href; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 9284 _SVGAnimatedStringJs get className() native "return this.className;"; | 9284 _SVGAnimatedStringJs get className() native "return this.className;"; |
| 9285 | 9285 |
| 9286 // Use implementation from Element. | 9286 // Use implementation from Element. |
| 9287 // final _CSSStyleDeclarationJs style; | 9287 // final _CSSStyleDeclarationJs style; |
| 9288 | 9288 |
| 9289 _CSSValueJs getPresentationAttribute(String name) native; | 9289 _CSSValueJs getPresentationAttribute(String name) native; |
| 9290 } | 9290 } |
| 9291 | 9291 |
| 9292 class _SVGTransformJs extends _DOMTypeJs implements SVGTransform native "*SVGTra
nsform" { | 9292 class _SVGTransformJs extends _DOMTypeJs implements SVGTransform native "*SVGTra
nsform" { |
| 9293 | 9293 |
| 9294 static final int SVG_TRANSFORM_MATRIX = 1; | 9294 static const int SVG_TRANSFORM_MATRIX = 1; |
| 9295 | 9295 |
| 9296 static final int SVG_TRANSFORM_ROTATE = 4; | 9296 static const int SVG_TRANSFORM_ROTATE = 4; |
| 9297 | 9297 |
| 9298 static final int SVG_TRANSFORM_SCALE = 3; | 9298 static const int SVG_TRANSFORM_SCALE = 3; |
| 9299 | 9299 |
| 9300 static final int SVG_TRANSFORM_SKEWX = 5; | 9300 static const int SVG_TRANSFORM_SKEWX = 5; |
| 9301 | 9301 |
| 9302 static final int SVG_TRANSFORM_SKEWY = 6; | 9302 static const int SVG_TRANSFORM_SKEWY = 6; |
| 9303 | 9303 |
| 9304 static final int SVG_TRANSFORM_TRANSLATE = 2; | 9304 static const int SVG_TRANSFORM_TRANSLATE = 2; |
| 9305 | 9305 |
| 9306 static final int SVG_TRANSFORM_UNKNOWN = 0; | 9306 static const int SVG_TRANSFORM_UNKNOWN = 0; |
| 9307 | 9307 |
| 9308 final num angle; | 9308 final num angle; |
| 9309 | 9309 |
| 9310 final _SVGMatrixJs matrix; | 9310 final _SVGMatrixJs matrix; |
| 9311 | 9311 |
| 9312 final int type; | 9312 final int type; |
| 9313 | 9313 |
| 9314 void setMatrix(_SVGMatrixJs matrix) native; | 9314 void setMatrix(_SVGMatrixJs matrix) native; |
| 9315 | 9315 |
| 9316 void setRotate(num angle, num cx, num cy) native; | 9316 void setRotate(num angle, num cx, num cy) native; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 9342 | 9342 |
| 9343 _SVGTransformJs insertItemBefore(_SVGTransformJs item, int index) native; | 9343 _SVGTransformJs insertItemBefore(_SVGTransformJs item, int index) native; |
| 9344 | 9344 |
| 9345 _SVGTransformJs removeItem(int index) native; | 9345 _SVGTransformJs removeItem(int index) native; |
| 9346 | 9346 |
| 9347 _SVGTransformJs replaceItem(_SVGTransformJs item, int index) native; | 9347 _SVGTransformJs replaceItem(_SVGTransformJs item, int index) native; |
| 9348 } | 9348 } |
| 9349 | 9349 |
| 9350 class _SVGUnitTypesJs extends _DOMTypeJs implements SVGUnitTypes native "*SVGUni
tTypes" { | 9350 class _SVGUnitTypesJs extends _DOMTypeJs implements SVGUnitTypes native "*SVGUni
tTypes" { |
| 9351 | 9351 |
| 9352 static final int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; | 9352 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; |
| 9353 | 9353 |
| 9354 static final int SVG_UNIT_TYPE_UNKNOWN = 0; | 9354 static const int SVG_UNIT_TYPE_UNKNOWN = 0; |
| 9355 | 9355 |
| 9356 static final int SVG_UNIT_TYPE_USERSPACEONUSE = 1; | 9356 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; |
| 9357 } | 9357 } |
| 9358 | 9358 |
| 9359 class _SVGUseElementJs extends _SVGElementJs implements SVGUseElement native "*S
VGUseElement" { | 9359 class _SVGUseElementJs extends _SVGElementJs implements SVGUseElement native "*S
VGUseElement" { |
| 9360 | 9360 |
| 9361 final _SVGElementInstanceJs animatedInstanceRoot; | 9361 final _SVGElementInstanceJs animatedInstanceRoot; |
| 9362 | 9362 |
| 9363 final _SVGAnimatedLengthJs height; | 9363 final _SVGAnimatedLengthJs height; |
| 9364 | 9364 |
| 9365 final _SVGElementInstanceJs instanceRoot; | 9365 final _SVGElementInstanceJs instanceRoot; |
| 9366 | 9366 |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9652 | 9652 |
| 9653 class _SpeechRecognitionAlternativeJs extends _DOMTypeJs implements SpeechRecogn
itionAlternative native "*SpeechRecognitionAlternative" { | 9653 class _SpeechRecognitionAlternativeJs extends _DOMTypeJs implements SpeechRecogn
itionAlternative native "*SpeechRecognitionAlternative" { |
| 9654 | 9654 |
| 9655 final num confidence; | 9655 final num confidence; |
| 9656 | 9656 |
| 9657 final String transcript; | 9657 final String transcript; |
| 9658 } | 9658 } |
| 9659 | 9659 |
| 9660 class _SpeechRecognitionErrorJs extends _EventJs implements SpeechRecognitionErr
or native "*SpeechRecognitionError" { | 9660 class _SpeechRecognitionErrorJs extends _EventJs implements SpeechRecognitionErr
or native "*SpeechRecognitionError" { |
| 9661 | 9661 |
| 9662 static final int ABORTED = 2; | 9662 static const int ABORTED = 2; |
| 9663 | 9663 |
| 9664 static final int AUDIO_CAPTURE = 3; | 9664 static const int AUDIO_CAPTURE = 3; |
| 9665 | 9665 |
| 9666 static final int BAD_GRAMMAR = 7; | 9666 static const int BAD_GRAMMAR = 7; |
| 9667 | 9667 |
| 9668 static final int LANGUAGE_NOT_SUPPORTED = 8; | 9668 static const int LANGUAGE_NOT_SUPPORTED = 8; |
| 9669 | 9669 |
| 9670 static final int NETWORK = 4; | 9670 static const int NETWORK = 4; |
| 9671 | 9671 |
| 9672 static final int NOT_ALLOWED = 5; | 9672 static const int NOT_ALLOWED = 5; |
| 9673 | 9673 |
| 9674 static final int NO_SPEECH = 1; | 9674 static const int NO_SPEECH = 1; |
| 9675 | 9675 |
| 9676 static final int OTHER = 0; | 9676 static const int OTHER = 0; |
| 9677 | 9677 |
| 9678 static final int SERVICE_NOT_ALLOWED = 6; | 9678 static const int SERVICE_NOT_ALLOWED = 6; |
| 9679 | 9679 |
| 9680 final int code; | 9680 final int code; |
| 9681 | 9681 |
| 9682 final String message; | 9682 final String message; |
| 9683 } | 9683 } |
| 9684 | 9684 |
| 9685 class _SpeechRecognitionEventJs extends _EventJs implements SpeechRecognitionEve
nt native "*SpeechRecognitionEvent" { | 9685 class _SpeechRecognitionEventJs extends _EventJs implements SpeechRecognitionEve
nt native "*SpeechRecognitionEvent" { |
| 9686 | 9686 |
| 9687 final _SpeechRecognitionResultJs result; | 9687 final _SpeechRecognitionResultJs result; |
| 9688 | 9688 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9760 | 9760 |
| 9761 final _StorageJs storageArea; | 9761 final _StorageJs storageArea; |
| 9762 | 9762 |
| 9763 final String url; | 9763 final String url; |
| 9764 | 9764 |
| 9765 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S
tring keyArg, String oldValueArg, String newValueArg, String urlArg, _StorageJs
storageAreaArg) native; | 9765 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S
tring keyArg, String oldValueArg, String newValueArg, String urlArg, _StorageJs
storageAreaArg) native; |
| 9766 } | 9766 } |
| 9767 | 9767 |
| 9768 class _StorageInfoJs extends _DOMTypeJs implements StorageInfo native "*StorageI
nfo" { | 9768 class _StorageInfoJs extends _DOMTypeJs implements StorageInfo native "*StorageI
nfo" { |
| 9769 | 9769 |
| 9770 static final int PERSISTENT = 1; | 9770 static const int PERSISTENT = 1; |
| 9771 | 9771 |
| 9772 static final int TEMPORARY = 0; | 9772 static const int TEMPORARY = 0; |
| 9773 | 9773 |
| 9774 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba
ck, StorageInfoErrorCallback errorCallback]) native; | 9774 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba
ck, StorageInfoErrorCallback errorCallback]) native; |
| 9775 | 9775 |
| 9776 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb
ack quotaCallback, StorageInfoErrorCallback errorCallback]) native; | 9776 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb
ack quotaCallback, StorageInfoErrorCallback errorCallback]) native; |
| 9777 } | 9777 } |
| 9778 | 9778 |
| 9779 class _StyleMediaJs extends _DOMTypeJs implements StyleMedia native "*StyleMedia
" { | 9779 class _StyleMediaJs extends _DOMTypeJs implements StyleMedia native "*StyleMedia
" { |
| 9780 | 9780 |
| 9781 final String type; | 9781 final String type; |
| 9782 | 9782 |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9905 void initTextEvent(String typeArg, bool canBubbleArg, bool cancelableArg, _DOM
WindowJs viewArg, String dataArg) native; | 9905 void initTextEvent(String typeArg, bool canBubbleArg, bool cancelableArg, _DOM
WindowJs viewArg, String dataArg) native; |
| 9906 } | 9906 } |
| 9907 | 9907 |
| 9908 class _TextMetricsJs extends _DOMTypeJs implements TextMetrics native "*TextMetr
ics" { | 9908 class _TextMetricsJs extends _DOMTypeJs implements TextMetrics native "*TextMetr
ics" { |
| 9909 | 9909 |
| 9910 final num width; | 9910 final num width; |
| 9911 } | 9911 } |
| 9912 | 9912 |
| 9913 class _TextTrackJs extends _EventTargetJs implements TextTrack native "*TextTrac
k" { | 9913 class _TextTrackJs extends _EventTargetJs implements TextTrack native "*TextTrac
k" { |
| 9914 | 9914 |
| 9915 static final int DISABLED = 0; | 9915 static const int DISABLED = 0; |
| 9916 | 9916 |
| 9917 static final int HIDDEN = 1; | 9917 static const int HIDDEN = 1; |
| 9918 | 9918 |
| 9919 static final int SHOWING = 2; | 9919 static const int SHOWING = 2; |
| 9920 | 9920 |
| 9921 final _TextTrackCueListJs activeCues; | 9921 final _TextTrackCueListJs activeCues; |
| 9922 | 9922 |
| 9923 final _TextTrackCueListJs cues; | 9923 final _TextTrackCueListJs cues; |
| 9924 | 9924 |
| 9925 final String kind; | 9925 final String kind; |
| 9926 | 9926 |
| 9927 final String label; | 9927 final String label; |
| 9928 | 9928 |
| 9929 final String language; | 9929 final String language; |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10192 | 10192 |
| 10193 final _DOMWindowJs view; | 10193 final _DOMWindowJs view; |
| 10194 | 10194 |
| 10195 final int which; | 10195 final int which; |
| 10196 | 10196 |
| 10197 void initUIEvent(String type, bool canBubble, bool cancelable, _DOMWindowJs vi
ew, int detail) native; | 10197 void initUIEvent(String type, bool canBubble, bool cancelable, _DOMWindowJs vi
ew, int detail) native; |
| 10198 } | 10198 } |
| 10199 | 10199 |
| 10200 class _Uint16ArrayJs extends _ArrayBufferViewJs implements Uint16Array, List<int
> native "*Uint16Array" { | 10200 class _Uint16ArrayJs extends _ArrayBufferViewJs implements Uint16Array, List<int
> native "*Uint16Array" { |
| 10201 | 10201 |
| 10202 static final int BYTES_PER_ELEMENT = 2; | 10202 static const int BYTES_PER_ELEMENT = 2; |
| 10203 | 10203 |
| 10204 final int length; | 10204 final int length; |
| 10205 | 10205 |
| 10206 int operator[](int index) native "return this[index];"; | 10206 int operator[](int index) native "return this[index];"; |
| 10207 | 10207 |
| 10208 void operator[]=(int index, int value) native "this[index] = value"; | 10208 void operator[]=(int index, int value) native "this[index] = value"; |
| 10209 // -- start List<int> mixins. | 10209 // -- start List<int> mixins. |
| 10210 // int is the element type. | 10210 // int is the element type. |
| 10211 | 10211 |
| 10212 // From Iterable<int>: | 10212 // From Iterable<int>: |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10283 | 10283 |
| 10284 // -- end List<int> mixins. | 10284 // -- end List<int> mixins. |
| 10285 | 10285 |
| 10286 void setElements(Object array, [int offset]) native 'set'; | 10286 void setElements(Object array, [int offset]) native 'set'; |
| 10287 | 10287 |
| 10288 _Uint16ArrayJs subarray(int start, [int end]) native; | 10288 _Uint16ArrayJs subarray(int start, [int end]) native; |
| 10289 } | 10289 } |
| 10290 | 10290 |
| 10291 class _Uint32ArrayJs extends _ArrayBufferViewJs implements Uint32Array, List<int
> native "*Uint32Array" { | 10291 class _Uint32ArrayJs extends _ArrayBufferViewJs implements Uint32Array, List<int
> native "*Uint32Array" { |
| 10292 | 10292 |
| 10293 static final int BYTES_PER_ELEMENT = 4; | 10293 static const int BYTES_PER_ELEMENT = 4; |
| 10294 | 10294 |
| 10295 final int length; | 10295 final int length; |
| 10296 | 10296 |
| 10297 int operator[](int index) native "return this[index];"; | 10297 int operator[](int index) native "return this[index];"; |
| 10298 | 10298 |
| 10299 void operator[]=(int index, int value) native "this[index] = value"; | 10299 void operator[]=(int index, int value) native "this[index] = value"; |
| 10300 // -- start List<int> mixins. | 10300 // -- start List<int> mixins. |
| 10301 // int is the element type. | 10301 // int is the element type. |
| 10302 | 10302 |
| 10303 // From Iterable<int>: | 10303 // From Iterable<int>: |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10374 | 10374 |
| 10375 // -- end List<int> mixins. | 10375 // -- end List<int> mixins. |
| 10376 | 10376 |
| 10377 void setElements(Object array, [int offset]) native 'set'; | 10377 void setElements(Object array, [int offset]) native 'set'; |
| 10378 | 10378 |
| 10379 _Uint32ArrayJs subarray(int start, [int end]) native; | 10379 _Uint32ArrayJs subarray(int start, [int end]) native; |
| 10380 } | 10380 } |
| 10381 | 10381 |
| 10382 class _Uint8ArrayJs extends _ArrayBufferViewJs implements Uint8Array, List<int>
native "*Uint8Array" { | 10382 class _Uint8ArrayJs extends _ArrayBufferViewJs implements Uint8Array, List<int>
native "*Uint8Array" { |
| 10383 | 10383 |
| 10384 static final int BYTES_PER_ELEMENT = 1; | 10384 static const int BYTES_PER_ELEMENT = 1; |
| 10385 | 10385 |
| 10386 final int length; | 10386 final int length; |
| 10387 | 10387 |
| 10388 int operator[](int index) native "return this[index];"; | 10388 int operator[](int index) native "return this[index];"; |
| 10389 | 10389 |
| 10390 void operator[]=(int index, int value) native "this[index] = value"; | 10390 void operator[]=(int index, int value) native "this[index] = value"; |
| 10391 // -- start List<int> mixins. | 10391 // -- start List<int> mixins. |
| 10392 // int is the element type. | 10392 // int is the element type. |
| 10393 | 10393 |
| 10394 // From Iterable<int>: | 10394 // From Iterable<int>: |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10516 final int size; | 10516 final int size; |
| 10517 | 10517 |
| 10518 final int type; | 10518 final int type; |
| 10519 } | 10519 } |
| 10520 | 10520 |
| 10521 class _WebGLBufferJs extends _DOMTypeJs implements WebGLBuffer native "*WebGLBuf
fer" { | 10521 class _WebGLBufferJs extends _DOMTypeJs implements WebGLBuffer native "*WebGLBuf
fer" { |
| 10522 } | 10522 } |
| 10523 | 10523 |
| 10524 class _WebGLCompressedTextureS3TCJs extends _DOMTypeJs implements WebGLCompresse
dTextureS3TC native "*WebGLCompressedTextureS3TC" { | 10524 class _WebGLCompressedTextureS3TCJs extends _DOMTypeJs implements WebGLCompresse
dTextureS3TC native "*WebGLCompressedTextureS3TC" { |
| 10525 | 10525 |
| 10526 static final int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; | 10526 static const int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; |
| 10527 | 10527 |
| 10528 static final int COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2; | 10528 static const int COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2; |
| 10529 | 10529 |
| 10530 static final int COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3; | 10530 static const int COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3; |
| 10531 | 10531 |
| 10532 static final int COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0; | 10532 static const int COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0; |
| 10533 } | 10533 } |
| 10534 | 10534 |
| 10535 class _WebGLContextAttributesJs extends _DOMTypeJs implements WebGLContextAttrib
utes native "*WebGLContextAttributes" { | 10535 class _WebGLContextAttributesJs extends _DOMTypeJs implements WebGLContextAttrib
utes native "*WebGLContextAttributes" { |
| 10536 | 10536 |
| 10537 bool alpha; | 10537 bool alpha; |
| 10538 | 10538 |
| 10539 bool antialias; | 10539 bool antialias; |
| 10540 | 10540 |
| 10541 bool depth; | 10541 bool depth; |
| 10542 | 10542 |
| 10543 bool premultipliedAlpha; | 10543 bool premultipliedAlpha; |
| 10544 | 10544 |
| 10545 bool preserveDrawingBuffer; | 10545 bool preserveDrawingBuffer; |
| 10546 | 10546 |
| 10547 bool stencil; | 10547 bool stencil; |
| 10548 } | 10548 } |
| 10549 | 10549 |
| 10550 class _WebGLContextEventJs extends _EventJs implements WebGLContextEvent native
"*WebGLContextEvent" { | 10550 class _WebGLContextEventJs extends _EventJs implements WebGLContextEvent native
"*WebGLContextEvent" { |
| 10551 | 10551 |
| 10552 final String statusMessage; | 10552 final String statusMessage; |
| 10553 } | 10553 } |
| 10554 | 10554 |
| 10555 class _WebGLDebugRendererInfoJs extends _DOMTypeJs implements WebGLDebugRenderer
Info native "*WebGLDebugRendererInfo" { | 10555 class _WebGLDebugRendererInfoJs extends _DOMTypeJs implements WebGLDebugRenderer
Info native "*WebGLDebugRendererInfo" { |
| 10556 | 10556 |
| 10557 static final int UNMASKED_RENDERER_WEBGL = 0x9246; | 10557 static const int UNMASKED_RENDERER_WEBGL = 0x9246; |
| 10558 | 10558 |
| 10559 static final int UNMASKED_VENDOR_WEBGL = 0x9245; | 10559 static const int UNMASKED_VENDOR_WEBGL = 0x9245; |
| 10560 } | 10560 } |
| 10561 | 10561 |
| 10562 class _WebGLDebugShadersJs extends _DOMTypeJs implements WebGLDebugShaders nativ
e "*WebGLDebugShaders" { | 10562 class _WebGLDebugShadersJs extends _DOMTypeJs implements WebGLDebugShaders nativ
e "*WebGLDebugShaders" { |
| 10563 | 10563 |
| 10564 String getTranslatedShaderSource(_WebGLShaderJs shader) native; | 10564 String getTranslatedShaderSource(_WebGLShaderJs shader) native; |
| 10565 } | 10565 } |
| 10566 | 10566 |
| 10567 class _WebGLDepthTextureJs extends _DOMTypeJs implements WebGLDepthTexture nativ
e "*WebGLDepthTexture" { | 10567 class _WebGLDepthTextureJs extends _DOMTypeJs implements WebGLDepthTexture nativ
e "*WebGLDepthTexture" { |
| 10568 | 10568 |
| 10569 static final int UNSIGNED_INT_24_8_WEBGL = 0x84FA; | 10569 static const int UNSIGNED_INT_24_8_WEBGL = 0x84FA; |
| 10570 } | 10570 } |
| 10571 | 10571 |
| 10572 class _WebGLFramebufferJs extends _DOMTypeJs implements WebGLFramebuffer native
"*WebGLFramebuffer" { | 10572 class _WebGLFramebufferJs extends _DOMTypeJs implements WebGLFramebuffer native
"*WebGLFramebuffer" { |
| 10573 } | 10573 } |
| 10574 | 10574 |
| 10575 class _WebGLLoseContextJs extends _DOMTypeJs implements WebGLLoseContext native
"*WebGLLoseContext" { | 10575 class _WebGLLoseContextJs extends _DOMTypeJs implements WebGLLoseContext native
"*WebGLLoseContext" { |
| 10576 | 10576 |
| 10577 void loseContext() native; | 10577 void loseContext() native; |
| 10578 | 10578 |
| 10579 void restoreContext() native; | 10579 void restoreContext() native; |
| 10580 } | 10580 } |
| 10581 | 10581 |
| 10582 class _WebGLProgramJs extends _DOMTypeJs implements WebGLProgram native "*WebGLP
rogram" { | 10582 class _WebGLProgramJs extends _DOMTypeJs implements WebGLProgram native "*WebGLP
rogram" { |
| 10583 } | 10583 } |
| 10584 | 10584 |
| 10585 class _WebGLRenderbufferJs extends _DOMTypeJs implements WebGLRenderbuffer nativ
e "*WebGLRenderbuffer" { | 10585 class _WebGLRenderbufferJs extends _DOMTypeJs implements WebGLRenderbuffer nativ
e "*WebGLRenderbuffer" { |
| 10586 } | 10586 } |
| 10587 | 10587 |
| 10588 class _WebGLRenderingContextJs extends _CanvasRenderingContextJs implements WebG
LRenderingContext native "*WebGLRenderingContext" { | 10588 class _WebGLRenderingContextJs extends _CanvasRenderingContextJs implements WebG
LRenderingContext native "*WebGLRenderingContext" { |
| 10589 | 10589 |
| 10590 static final int ACTIVE_ATTRIBUTES = 0x8B89; | 10590 static const int ACTIVE_ATTRIBUTES = 0x8B89; |
| 10591 | 10591 |
| 10592 static final int ACTIVE_TEXTURE = 0x84E0; | 10592 static const int ACTIVE_TEXTURE = 0x84E0; |
| 10593 | 10593 |
| 10594 static final int ACTIVE_UNIFORMS = 0x8B86; | 10594 static const int ACTIVE_UNIFORMS = 0x8B86; |
| 10595 | 10595 |
| 10596 static final int ALIASED_LINE_WIDTH_RANGE = 0x846E; | 10596 static const int ALIASED_LINE_WIDTH_RANGE = 0x846E; |
| 10597 | 10597 |
| 10598 static final int ALIASED_POINT_SIZE_RANGE = 0x846D; | 10598 static const int ALIASED_POINT_SIZE_RANGE = 0x846D; |
| 10599 | 10599 |
| 10600 static final int ALPHA = 0x1906; | 10600 static const int ALPHA = 0x1906; |
| 10601 | 10601 |
| 10602 static final int ALPHA_BITS = 0x0D55; | 10602 static const int ALPHA_BITS = 0x0D55; |
| 10603 | 10603 |
| 10604 static final int ALWAYS = 0x0207; | 10604 static const int ALWAYS = 0x0207; |
| 10605 | 10605 |
| 10606 static final int ARRAY_BUFFER = 0x8892; | 10606 static const int ARRAY_BUFFER = 0x8892; |
| 10607 | 10607 |
| 10608 static final int ARRAY_BUFFER_BINDING = 0x8894; | 10608 static const int ARRAY_BUFFER_BINDING = 0x8894; |
| 10609 | 10609 |
| 10610 static final int ATTACHED_SHADERS = 0x8B85; | 10610 static const int ATTACHED_SHADERS = 0x8B85; |
| 10611 | 10611 |
| 10612 static final int BACK = 0x0405; | 10612 static const int BACK = 0x0405; |
| 10613 | 10613 |
| 10614 static final int BLEND = 0x0BE2; | 10614 static const int BLEND = 0x0BE2; |
| 10615 | 10615 |
| 10616 static final int BLEND_COLOR = 0x8005; | 10616 static const int BLEND_COLOR = 0x8005; |
| 10617 | 10617 |
| 10618 static final int BLEND_DST_ALPHA = 0x80CA; | 10618 static const int BLEND_DST_ALPHA = 0x80CA; |
| 10619 | 10619 |
| 10620 static final int BLEND_DST_RGB = 0x80C8; | 10620 static const int BLEND_DST_RGB = 0x80C8; |
| 10621 | 10621 |
| 10622 static final int BLEND_EQUATION = 0x8009; | 10622 static const int BLEND_EQUATION = 0x8009; |
| 10623 | 10623 |
| 10624 static final int BLEND_EQUATION_ALPHA = 0x883D; | 10624 static const int BLEND_EQUATION_ALPHA = 0x883D; |
| 10625 | 10625 |
| 10626 static final int BLEND_EQUATION_RGB = 0x8009; | 10626 static const int BLEND_EQUATION_RGB = 0x8009; |
| 10627 | 10627 |
| 10628 static final int BLEND_SRC_ALPHA = 0x80CB; | 10628 static const int BLEND_SRC_ALPHA = 0x80CB; |
| 10629 | 10629 |
| 10630 static final int BLEND_SRC_RGB = 0x80C9; | 10630 static const int BLEND_SRC_RGB = 0x80C9; |
| 10631 | 10631 |
| 10632 static final int BLUE_BITS = 0x0D54; | 10632 static const int BLUE_BITS = 0x0D54; |
| 10633 | 10633 |
| 10634 static final int BOOL = 0x8B56; | 10634 static const int BOOL = 0x8B56; |
| 10635 | 10635 |
| 10636 static final int BOOL_VEC2 = 0x8B57; | 10636 static const int BOOL_VEC2 = 0x8B57; |
| 10637 | 10637 |
| 10638 static final int BOOL_VEC3 = 0x8B58; | 10638 static const int BOOL_VEC3 = 0x8B58; |
| 10639 | 10639 |
| 10640 static final int BOOL_VEC4 = 0x8B59; | 10640 static const int BOOL_VEC4 = 0x8B59; |
| 10641 | 10641 |
| 10642 static final int BROWSER_DEFAULT_WEBGL = 0x9244; | 10642 static const int BROWSER_DEFAULT_WEBGL = 0x9244; |
| 10643 | 10643 |
| 10644 static final int BUFFER_SIZE = 0x8764; | 10644 static const int BUFFER_SIZE = 0x8764; |
| 10645 | 10645 |
| 10646 static final int BUFFER_USAGE = 0x8765; | 10646 static const int BUFFER_USAGE = 0x8765; |
| 10647 | 10647 |
| 10648 static final int BYTE = 0x1400; | 10648 static const int BYTE = 0x1400; |
| 10649 | 10649 |
| 10650 static final int CCW = 0x0901; | 10650 static const int CCW = 0x0901; |
| 10651 | 10651 |
| 10652 static final int CLAMP_TO_EDGE = 0x812F; | 10652 static const int CLAMP_TO_EDGE = 0x812F; |
| 10653 | 10653 |
| 10654 static final int COLOR_ATTACHMENT0 = 0x8CE0; | 10654 static const int COLOR_ATTACHMENT0 = 0x8CE0; |
| 10655 | 10655 |
| 10656 static final int COLOR_BUFFER_BIT = 0x00004000; | 10656 static const int COLOR_BUFFER_BIT = 0x00004000; |
| 10657 | 10657 |
| 10658 static final int COLOR_CLEAR_VALUE = 0x0C22; | 10658 static const int COLOR_CLEAR_VALUE = 0x0C22; |
| 10659 | 10659 |
| 10660 static final int COLOR_WRITEMASK = 0x0C23; | 10660 static const int COLOR_WRITEMASK = 0x0C23; |
| 10661 | 10661 |
| 10662 static final int COMPILE_STATUS = 0x8B81; | 10662 static const int COMPILE_STATUS = 0x8B81; |
| 10663 | 10663 |
| 10664 static final int COMPRESSED_TEXTURE_FORMATS = 0x86A3; | 10664 static const int COMPRESSED_TEXTURE_FORMATS = 0x86A3; |
| 10665 | 10665 |
| 10666 static final int CONSTANT_ALPHA = 0x8003; | 10666 static const int CONSTANT_ALPHA = 0x8003; |
| 10667 | 10667 |
| 10668 static final int CONSTANT_COLOR = 0x8001; | 10668 static const int CONSTANT_COLOR = 0x8001; |
| 10669 | 10669 |
| 10670 static final int CONTEXT_LOST_WEBGL = 0x9242; | 10670 static const int CONTEXT_LOST_WEBGL = 0x9242; |
| 10671 | 10671 |
| 10672 static final int CULL_FACE = 0x0B44; | 10672 static const int CULL_FACE = 0x0B44; |
| 10673 | 10673 |
| 10674 static final int CULL_FACE_MODE = 0x0B45; | 10674 static const int CULL_FACE_MODE = 0x0B45; |
| 10675 | 10675 |
| 10676 static final int CURRENT_PROGRAM = 0x8B8D; | 10676 static const int CURRENT_PROGRAM = 0x8B8D; |
| 10677 | 10677 |
| 10678 static final int CURRENT_VERTEX_ATTRIB = 0x8626; | 10678 static const int CURRENT_VERTEX_ATTRIB = 0x8626; |
| 10679 | 10679 |
| 10680 static final int CW = 0x0900; | 10680 static const int CW = 0x0900; |
| 10681 | 10681 |
| 10682 static final int DECR = 0x1E03; | 10682 static const int DECR = 0x1E03; |
| 10683 | 10683 |
| 10684 static final int DECR_WRAP = 0x8508; | 10684 static const int DECR_WRAP = 0x8508; |
| 10685 | 10685 |
| 10686 static final int DELETE_STATUS = 0x8B80; | 10686 static const int DELETE_STATUS = 0x8B80; |
| 10687 | 10687 |
| 10688 static final int DEPTH_ATTACHMENT = 0x8D00; | 10688 static const int DEPTH_ATTACHMENT = 0x8D00; |
| 10689 | 10689 |
| 10690 static final int DEPTH_BITS = 0x0D56; | 10690 static const int DEPTH_BITS = 0x0D56; |
| 10691 | 10691 |
| 10692 static final int DEPTH_BUFFER_BIT = 0x00000100; | 10692 static const int DEPTH_BUFFER_BIT = 0x00000100; |
| 10693 | 10693 |
| 10694 static final int DEPTH_CLEAR_VALUE = 0x0B73; | 10694 static const int DEPTH_CLEAR_VALUE = 0x0B73; |
| 10695 | 10695 |
| 10696 static final int DEPTH_COMPONENT = 0x1902; | 10696 static const int DEPTH_COMPONENT = 0x1902; |
| 10697 | 10697 |
| 10698 static final int DEPTH_COMPONENT16 = 0x81A5; | 10698 static const int DEPTH_COMPONENT16 = 0x81A5; |
| 10699 | 10699 |
| 10700 static final int DEPTH_FUNC = 0x0B74; | 10700 static const int DEPTH_FUNC = 0x0B74; |
| 10701 | 10701 |
| 10702 static final int DEPTH_RANGE = 0x0B70; | 10702 static const int DEPTH_RANGE = 0x0B70; |
| 10703 | 10703 |
| 10704 static final int DEPTH_STENCIL = 0x84F9; | 10704 static const int DEPTH_STENCIL = 0x84F9; |
| 10705 | 10705 |
| 10706 static final int DEPTH_STENCIL_ATTACHMENT = 0x821A; | 10706 static const int DEPTH_STENCIL_ATTACHMENT = 0x821A; |
| 10707 | 10707 |
| 10708 static final int DEPTH_TEST = 0x0B71; | 10708 static const int DEPTH_TEST = 0x0B71; |
| 10709 | 10709 |
| 10710 static final int DEPTH_WRITEMASK = 0x0B72; | 10710 static const int DEPTH_WRITEMASK = 0x0B72; |
| 10711 | 10711 |
| 10712 static final int DITHER = 0x0BD0; | 10712 static const int DITHER = 0x0BD0; |
| 10713 | 10713 |
| 10714 static final int DONT_CARE = 0x1100; | 10714 static const int DONT_CARE = 0x1100; |
| 10715 | 10715 |
| 10716 static final int DST_ALPHA = 0x0304; | 10716 static const int DST_ALPHA = 0x0304; |
| 10717 | 10717 |
| 10718 static final int DST_COLOR = 0x0306; | 10718 static const int DST_COLOR = 0x0306; |
| 10719 | 10719 |
| 10720 static final int DYNAMIC_DRAW = 0x88E8; | 10720 static const int DYNAMIC_DRAW = 0x88E8; |
| 10721 | 10721 |
| 10722 static final int ELEMENT_ARRAY_BUFFER = 0x8893; | 10722 static const int ELEMENT_ARRAY_BUFFER = 0x8893; |
| 10723 | 10723 |
| 10724 static final int ELEMENT_ARRAY_BUFFER_BINDING = 0x8895; | 10724 static const int ELEMENT_ARRAY_BUFFER_BINDING = 0x8895; |
| 10725 | 10725 |
| 10726 static final int EQUAL = 0x0202; | 10726 static const int EQUAL = 0x0202; |
| 10727 | 10727 |
| 10728 static final int FASTEST = 0x1101; | 10728 static const int FASTEST = 0x1101; |
| 10729 | 10729 |
| 10730 static final int FLOAT = 0x1406; | 10730 static const int FLOAT = 0x1406; |
| 10731 | 10731 |
| 10732 static final int FLOAT_MAT2 = 0x8B5A; | 10732 static const int FLOAT_MAT2 = 0x8B5A; |
| 10733 | 10733 |
| 10734 static final int FLOAT_MAT3 = 0x8B5B; | 10734 static const int FLOAT_MAT3 = 0x8B5B; |
| 10735 | 10735 |
| 10736 static final int FLOAT_MAT4 = 0x8B5C; | 10736 static const int FLOAT_MAT4 = 0x8B5C; |
| 10737 | 10737 |
| 10738 static final int FLOAT_VEC2 = 0x8B50; | 10738 static const int FLOAT_VEC2 = 0x8B50; |
| 10739 | 10739 |
| 10740 static final int FLOAT_VEC3 = 0x8B51; | 10740 static const int FLOAT_VEC3 = 0x8B51; |
| 10741 | 10741 |
| 10742 static final int FLOAT_VEC4 = 0x8B52; | 10742 static const int FLOAT_VEC4 = 0x8B52; |
| 10743 | 10743 |
| 10744 static final int FRAGMENT_SHADER = 0x8B30; | 10744 static const int FRAGMENT_SHADER = 0x8B30; |
| 10745 | 10745 |
| 10746 static final int FRAMEBUFFER = 0x8D40; | 10746 static const int FRAMEBUFFER = 0x8D40; |
| 10747 | 10747 |
| 10748 static final int FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1; | 10748 static const int FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1; |
| 10749 | 10749 |
| 10750 static final int FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE = 0x8CD0; | 10750 static const int FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE = 0x8CD0; |
| 10751 | 10751 |
| 10752 static final int FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3; | 10752 static const int FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3; |
| 10753 | 10753 |
| 10754 static final int FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2; | 10754 static const int FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2; |
| 10755 | 10755 |
| 10756 static final int FRAMEBUFFER_BINDING = 0x8CA6; | 10756 static const int FRAMEBUFFER_BINDING = 0x8CA6; |
| 10757 | 10757 |
| 10758 static final int FRAMEBUFFER_COMPLETE = 0x8CD5; | 10758 static const int FRAMEBUFFER_COMPLETE = 0x8CD5; |
| 10759 | 10759 |
| 10760 static final int FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6; | 10760 static const int FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6; |
| 10761 | 10761 |
| 10762 static final int FRAMEBUFFER_INCOMPLETE_DIMENSIONS = 0x8CD9; | 10762 static const int FRAMEBUFFER_INCOMPLETE_DIMENSIONS = 0x8CD9; |
| 10763 | 10763 |
| 10764 static final int FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7; | 10764 static const int FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7; |
| 10765 | 10765 |
| 10766 static final int FRAMEBUFFER_UNSUPPORTED = 0x8CDD; | 10766 static const int FRAMEBUFFER_UNSUPPORTED = 0x8CDD; |
| 10767 | 10767 |
| 10768 static final int FRONT = 0x0404; | 10768 static const int FRONT = 0x0404; |
| 10769 | 10769 |
| 10770 static final int FRONT_AND_BACK = 0x0408; | 10770 static const int FRONT_AND_BACK = 0x0408; |
| 10771 | 10771 |
| 10772 static final int FRONT_FACE = 0x0B46; | 10772 static const int FRONT_FACE = 0x0B46; |
| 10773 | 10773 |
| 10774 static final int FUNC_ADD = 0x8006; | 10774 static const int FUNC_ADD = 0x8006; |
| 10775 | 10775 |
| 10776 static final int FUNC_REVERSE_SUBTRACT = 0x800B; | 10776 static const int FUNC_REVERSE_SUBTRACT = 0x800B; |
| 10777 | 10777 |
| 10778 static final int FUNC_SUBTRACT = 0x800A; | 10778 static const int FUNC_SUBTRACT = 0x800A; |
| 10779 | 10779 |
| 10780 static final int GENERATE_MIPMAP_HINT = 0x8192; | 10780 static const int GENERATE_MIPMAP_HINT = 0x8192; |
| 10781 | 10781 |
| 10782 static final int GEQUAL = 0x0206; | 10782 static const int GEQUAL = 0x0206; |
| 10783 | 10783 |
| 10784 static final int GREATER = 0x0204; | 10784 static const int GREATER = 0x0204; |
| 10785 | 10785 |
| 10786 static final int GREEN_BITS = 0x0D53; | 10786 static const int GREEN_BITS = 0x0D53; |
| 10787 | 10787 |
| 10788 static final int HIGH_FLOAT = 0x8DF2; | 10788 static const int HIGH_FLOAT = 0x8DF2; |
| 10789 | 10789 |
| 10790 static final int HIGH_INT = 0x8DF5; | 10790 static const int HIGH_INT = 0x8DF5; |
| 10791 | 10791 |
| 10792 static final int INCR = 0x1E02; | 10792 static const int INCR = 0x1E02; |
| 10793 | 10793 |
| 10794 static final int INCR_WRAP = 0x8507; | 10794 static const int INCR_WRAP = 0x8507; |
| 10795 | 10795 |
| 10796 static final int INT = 0x1404; | 10796 static const int INT = 0x1404; |
| 10797 | 10797 |
| 10798 static final int INT_VEC2 = 0x8B53; | 10798 static const int INT_VEC2 = 0x8B53; |
| 10799 | 10799 |
| 10800 static final int INT_VEC3 = 0x8B54; | 10800 static const int INT_VEC3 = 0x8B54; |
| 10801 | 10801 |
| 10802 static final int INT_VEC4 = 0x8B55; | 10802 static const int INT_VEC4 = 0x8B55; |
| 10803 | 10803 |
| 10804 static final int INVALID_ENUM = 0x0500; | 10804 static const int INVALID_ENUM = 0x0500; |
| 10805 | 10805 |
| 10806 static final int INVALID_FRAMEBUFFER_OPERATION = 0x0506; | 10806 static const int INVALID_FRAMEBUFFER_OPERATION = 0x0506; |
| 10807 | 10807 |
| 10808 static final int INVALID_OPERATION = 0x0502; | 10808 static const int INVALID_OPERATION = 0x0502; |
| 10809 | 10809 |
| 10810 static final int INVALID_VALUE = 0x0501; | 10810 static const int INVALID_VALUE = 0x0501; |
| 10811 | 10811 |
| 10812 static final int INVERT = 0x150A; | 10812 static const int INVERT = 0x150A; |
| 10813 | 10813 |
| 10814 static final int KEEP = 0x1E00; | 10814 static const int KEEP = 0x1E00; |
| 10815 | 10815 |
| 10816 static final int LEQUAL = 0x0203; | 10816 static const int LEQUAL = 0x0203; |
| 10817 | 10817 |
| 10818 static final int LESS = 0x0201; | 10818 static const int LESS = 0x0201; |
| 10819 | 10819 |
| 10820 static final int LINEAR = 0x2601; | 10820 static const int LINEAR = 0x2601; |
| 10821 | 10821 |
| 10822 static final int LINEAR_MIPMAP_LINEAR = 0x2703; | 10822 static const int LINEAR_MIPMAP_LINEAR = 0x2703; |
| 10823 | 10823 |
| 10824 static final int LINEAR_MIPMAP_NEAREST = 0x2701; | 10824 static const int LINEAR_MIPMAP_NEAREST = 0x2701; |
| 10825 | 10825 |
| 10826 static final int LINES = 0x0001; | 10826 static const int LINES = 0x0001; |
| 10827 | 10827 |
| 10828 static final int LINE_LOOP = 0x0002; | 10828 static const int LINE_LOOP = 0x0002; |
| 10829 | 10829 |
| 10830 static final int LINE_STRIP = 0x0003; | 10830 static const int LINE_STRIP = 0x0003; |
| 10831 | 10831 |
| 10832 static final int LINE_WIDTH = 0x0B21; | 10832 static const int LINE_WIDTH = 0x0B21; |
| 10833 | 10833 |
| 10834 static final int LINK_STATUS = 0x8B82; | 10834 static const int LINK_STATUS = 0x8B82; |
| 10835 | 10835 |
| 10836 static final int LOW_FLOAT = 0x8DF0; | 10836 static const int LOW_FLOAT = 0x8DF0; |
| 10837 | 10837 |
| 10838 static final int LOW_INT = 0x8DF3; | 10838 static const int LOW_INT = 0x8DF3; |
| 10839 | 10839 |
| 10840 static final int LUMINANCE = 0x1909; | 10840 static const int LUMINANCE = 0x1909; |
| 10841 | 10841 |
| 10842 static final int LUMINANCE_ALPHA = 0x190A; | 10842 static const int LUMINANCE_ALPHA = 0x190A; |
| 10843 | 10843 |
| 10844 static final int MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8B4D; | 10844 static const int MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8B4D; |
| 10845 | 10845 |
| 10846 static final int MAX_CUBE_MAP_TEXTURE_SIZE = 0x851C; | 10846 static const int MAX_CUBE_MAP_TEXTURE_SIZE = 0x851C; |
| 10847 | 10847 |
| 10848 static final int MAX_FRAGMENT_UNIFORM_VECTORS = 0x8DFD; | 10848 static const int MAX_FRAGMENT_UNIFORM_VECTORS = 0x8DFD; |
| 10849 | 10849 |
| 10850 static final int MAX_RENDERBUFFER_SIZE = 0x84E8; | 10850 static const int MAX_RENDERBUFFER_SIZE = 0x84E8; |
| 10851 | 10851 |
| 10852 static final int MAX_TEXTURE_IMAGE_UNITS = 0x8872; | 10852 static const int MAX_TEXTURE_IMAGE_UNITS = 0x8872; |
| 10853 | 10853 |
| 10854 static final int MAX_TEXTURE_SIZE = 0x0D33; | 10854 static const int MAX_TEXTURE_SIZE = 0x0D33; |
| 10855 | 10855 |
| 10856 static final int MAX_VARYING_VECTORS = 0x8DFC; | 10856 static const int MAX_VARYING_VECTORS = 0x8DFC; |
| 10857 | 10857 |
| 10858 static final int MAX_VERTEX_ATTRIBS = 0x8869; | 10858 static const int MAX_VERTEX_ATTRIBS = 0x8869; |
| 10859 | 10859 |
| 10860 static final int MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8B4C; | 10860 static const int MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8B4C; |
| 10861 | 10861 |
| 10862 static final int MAX_VERTEX_UNIFORM_VECTORS = 0x8DFB; | 10862 static const int MAX_VERTEX_UNIFORM_VECTORS = 0x8DFB; |
| 10863 | 10863 |
| 10864 static final int MAX_VIEWPORT_DIMS = 0x0D3A; | 10864 static const int MAX_VIEWPORT_DIMS = 0x0D3A; |
| 10865 | 10865 |
| 10866 static final int MEDIUM_FLOAT = 0x8DF1; | 10866 static const int MEDIUM_FLOAT = 0x8DF1; |
| 10867 | 10867 |
| 10868 static final int MEDIUM_INT = 0x8DF4; | 10868 static const int MEDIUM_INT = 0x8DF4; |
| 10869 | 10869 |
| 10870 static final int MIRRORED_REPEAT = 0x8370; | 10870 static const int MIRRORED_REPEAT = 0x8370; |
| 10871 | 10871 |
| 10872 static final int NEAREST = 0x2600; | 10872 static const int NEAREST = 0x2600; |
| 10873 | 10873 |
| 10874 static final int NEAREST_MIPMAP_LINEAR = 0x2702; | 10874 static const int NEAREST_MIPMAP_LINEAR = 0x2702; |
| 10875 | 10875 |
| 10876 static final int NEAREST_MIPMAP_NEAREST = 0x2700; | 10876 static const int NEAREST_MIPMAP_NEAREST = 0x2700; |
| 10877 | 10877 |
| 10878 static final int NEVER = 0x0200; | 10878 static const int NEVER = 0x0200; |
| 10879 | 10879 |
| 10880 static final int NICEST = 0x1102; | 10880 static const int NICEST = 0x1102; |
| 10881 | 10881 |
| 10882 static final int NONE = 0; | 10882 static const int NONE = 0; |
| 10883 | 10883 |
| 10884 static final int NOTEQUAL = 0x0205; | 10884 static const int NOTEQUAL = 0x0205; |
| 10885 | 10885 |
| 10886 static final int NO_ERROR = 0; | 10886 static const int NO_ERROR = 0; |
| 10887 | 10887 |
| 10888 static final int ONE = 1; | 10888 static const int ONE = 1; |
| 10889 | 10889 |
| 10890 static final int ONE_MINUS_CONSTANT_ALPHA = 0x8004; | 10890 static const int ONE_MINUS_CONSTANT_ALPHA = 0x8004; |
| 10891 | 10891 |
| 10892 static final int ONE_MINUS_CONSTANT_COLOR = 0x8002; | 10892 static const int ONE_MINUS_CONSTANT_COLOR = 0x8002; |
| 10893 | 10893 |
| 10894 static final int ONE_MINUS_DST_ALPHA = 0x0305; | 10894 static const int ONE_MINUS_DST_ALPHA = 0x0305; |
| 10895 | 10895 |
| 10896 static final int ONE_MINUS_DST_COLOR = 0x0307; | 10896 static const int ONE_MINUS_DST_COLOR = 0x0307; |
| 10897 | 10897 |
| 10898 static final int ONE_MINUS_SRC_ALPHA = 0x0303; | 10898 static const int ONE_MINUS_SRC_ALPHA = 0x0303; |
| 10899 | 10899 |
| 10900 static final int ONE_MINUS_SRC_COLOR = 0x0301; | 10900 static const int ONE_MINUS_SRC_COLOR = 0x0301; |
| 10901 | 10901 |
| 10902 static final int OUT_OF_MEMORY = 0x0505; | 10902 static const int OUT_OF_MEMORY = 0x0505; |
| 10903 | 10903 |
| 10904 static final int PACK_ALIGNMENT = 0x0D05; | 10904 static const int PACK_ALIGNMENT = 0x0D05; |
| 10905 | 10905 |
| 10906 static final int POINTS = 0x0000; | 10906 static const int POINTS = 0x0000; |
| 10907 | 10907 |
| 10908 static final int POLYGON_OFFSET_FACTOR = 0x8038; | 10908 static const int POLYGON_OFFSET_FACTOR = 0x8038; |
| 10909 | 10909 |
| 10910 static final int POLYGON_OFFSET_FILL = 0x8037; | 10910 static const int POLYGON_OFFSET_FILL = 0x8037; |
| 10911 | 10911 |
| 10912 static final int POLYGON_OFFSET_UNITS = 0x2A00; | 10912 static const int POLYGON_OFFSET_UNITS = 0x2A00; |
| 10913 | 10913 |
| 10914 static final int RED_BITS = 0x0D52; | 10914 static const int RED_BITS = 0x0D52; |
| 10915 | 10915 |
| 10916 static final int RENDERBUFFER = 0x8D41; | 10916 static const int RENDERBUFFER = 0x8D41; |
| 10917 | 10917 |
| 10918 static final int RENDERBUFFER_ALPHA_SIZE = 0x8D53; | 10918 static const int RENDERBUFFER_ALPHA_SIZE = 0x8D53; |
| 10919 | 10919 |
| 10920 static final int RENDERBUFFER_BINDING = 0x8CA7; | 10920 static const int RENDERBUFFER_BINDING = 0x8CA7; |
| 10921 | 10921 |
| 10922 static final int RENDERBUFFER_BLUE_SIZE = 0x8D52; | 10922 static const int RENDERBUFFER_BLUE_SIZE = 0x8D52; |
| 10923 | 10923 |
| 10924 static final int RENDERBUFFER_DEPTH_SIZE = 0x8D54; | 10924 static const int RENDERBUFFER_DEPTH_SIZE = 0x8D54; |
| 10925 | 10925 |
| 10926 static final int RENDERBUFFER_GREEN_SIZE = 0x8D51; | 10926 static const int RENDERBUFFER_GREEN_SIZE = 0x8D51; |
| 10927 | 10927 |
| 10928 static final int RENDERBUFFER_HEIGHT = 0x8D43; | 10928 static const int RENDERBUFFER_HEIGHT = 0x8D43; |
| 10929 | 10929 |
| 10930 static final int RENDERBUFFER_INTERNAL_FORMAT = 0x8D44; | 10930 static const int RENDERBUFFER_INTERNAL_FORMAT = 0x8D44; |
| 10931 | 10931 |
| 10932 static final int RENDERBUFFER_RED_SIZE = 0x8D50; | 10932 static const int RENDERBUFFER_RED_SIZE = 0x8D50; |
| 10933 | 10933 |
| 10934 static final int RENDERBUFFER_STENCIL_SIZE = 0x8D55; | 10934 static const int RENDERBUFFER_STENCIL_SIZE = 0x8D55; |
| 10935 | 10935 |
| 10936 static final int RENDERBUFFER_WIDTH = 0x8D42; | 10936 static const int RENDERBUFFER_WIDTH = 0x8D42; |
| 10937 | 10937 |
| 10938 static final int RENDERER = 0x1F01; | 10938 static const int RENDERER = 0x1F01; |
| 10939 | 10939 |
| 10940 static final int REPEAT = 0x2901; | 10940 static const int REPEAT = 0x2901; |
| 10941 | 10941 |
| 10942 static final int REPLACE = 0x1E01; | 10942 static const int REPLACE = 0x1E01; |
| 10943 | 10943 |
| 10944 static final int RGB = 0x1907; | 10944 static const int RGB = 0x1907; |
| 10945 | 10945 |
| 10946 static final int RGB565 = 0x8D62; | 10946 static const int RGB565 = 0x8D62; |
| 10947 | 10947 |
| 10948 static final int RGB5_A1 = 0x8057; | 10948 static const int RGB5_A1 = 0x8057; |
| 10949 | 10949 |
| 10950 static final int RGBA = 0x1908; | 10950 static const int RGBA = 0x1908; |
| 10951 | 10951 |
| 10952 static final int RGBA4 = 0x8056; | 10952 static const int RGBA4 = 0x8056; |
| 10953 | 10953 |
| 10954 static final int SAMPLER_2D = 0x8B5E; | 10954 static const int SAMPLER_2D = 0x8B5E; |
| 10955 | 10955 |
| 10956 static final int SAMPLER_CUBE = 0x8B60; | 10956 static const int SAMPLER_CUBE = 0x8B60; |
| 10957 | 10957 |
| 10958 static final int SAMPLES = 0x80A9; | 10958 static const int SAMPLES = 0x80A9; |
| 10959 | 10959 |
| 10960 static final int SAMPLE_ALPHA_TO_COVERAGE = 0x809E; | 10960 static const int SAMPLE_ALPHA_TO_COVERAGE = 0x809E; |
| 10961 | 10961 |
| 10962 static final int SAMPLE_BUFFERS = 0x80A8; | 10962 static const int SAMPLE_BUFFERS = 0x80A8; |
| 10963 | 10963 |
| 10964 static final int SAMPLE_COVERAGE = 0x80A0; | 10964 static const int SAMPLE_COVERAGE = 0x80A0; |
| 10965 | 10965 |
| 10966 static final int SAMPLE_COVERAGE_INVERT = 0x80AB; | 10966 static const int SAMPLE_COVERAGE_INVERT = 0x80AB; |
| 10967 | 10967 |
| 10968 static final int SAMPLE_COVERAGE_VALUE = 0x80AA; | 10968 static const int SAMPLE_COVERAGE_VALUE = 0x80AA; |
| 10969 | 10969 |
| 10970 static final int SCISSOR_BOX = 0x0C10; | 10970 static const int SCISSOR_BOX = 0x0C10; |
| 10971 | 10971 |
| 10972 static final int SCISSOR_TEST = 0x0C11; | 10972 static const int SCISSOR_TEST = 0x0C11; |
| 10973 | 10973 |
| 10974 static final int SHADER_TYPE = 0x8B4F; | 10974 static const int SHADER_TYPE = 0x8B4F; |
| 10975 | 10975 |
| 10976 static final int SHADING_LANGUAGE_VERSION = 0x8B8C; | 10976 static const int SHADING_LANGUAGE_VERSION = 0x8B8C; |
| 10977 | 10977 |
| 10978 static final int SHORT = 0x1402; | 10978 static const int SHORT = 0x1402; |
| 10979 | 10979 |
| 10980 static final int SRC_ALPHA = 0x0302; | 10980 static const int SRC_ALPHA = 0x0302; |
| 10981 | 10981 |
| 10982 static final int SRC_ALPHA_SATURATE = 0x0308; | 10982 static const int SRC_ALPHA_SATURATE = 0x0308; |
| 10983 | 10983 |
| 10984 static final int SRC_COLOR = 0x0300; | 10984 static const int SRC_COLOR = 0x0300; |
| 10985 | 10985 |
| 10986 static final int STATIC_DRAW = 0x88E4; | 10986 static const int STATIC_DRAW = 0x88E4; |
| 10987 | 10987 |
| 10988 static final int STENCIL_ATTACHMENT = 0x8D20; | 10988 static const int STENCIL_ATTACHMENT = 0x8D20; |
| 10989 | 10989 |
| 10990 static final int STENCIL_BACK_FAIL = 0x8801; | 10990 static const int STENCIL_BACK_FAIL = 0x8801; |
| 10991 | 10991 |
| 10992 static final int STENCIL_BACK_FUNC = 0x8800; | 10992 static const int STENCIL_BACK_FUNC = 0x8800; |
| 10993 | 10993 |
| 10994 static final int STENCIL_BACK_PASS_DEPTH_FAIL = 0x8802; | 10994 static const int STENCIL_BACK_PASS_DEPTH_FAIL = 0x8802; |
| 10995 | 10995 |
| 10996 static final int STENCIL_BACK_PASS_DEPTH_PASS = 0x8803; | 10996 static const int STENCIL_BACK_PASS_DEPTH_PASS = 0x8803; |
| 10997 | 10997 |
| 10998 static final int STENCIL_BACK_REF = 0x8CA3; | 10998 static const int STENCIL_BACK_REF = 0x8CA3; |
| 10999 | 10999 |
| 11000 static final int STENCIL_BACK_VALUE_MASK = 0x8CA4; | 11000 static const int STENCIL_BACK_VALUE_MASK = 0x8CA4; |
| 11001 | 11001 |
| 11002 static final int STENCIL_BACK_WRITEMASK = 0x8CA5; | 11002 static const int STENCIL_BACK_WRITEMASK = 0x8CA5; |
| 11003 | 11003 |
| 11004 static final int STENCIL_BITS = 0x0D57; | 11004 static const int STENCIL_BITS = 0x0D57; |
| 11005 | 11005 |
| 11006 static final int STENCIL_BUFFER_BIT = 0x00000400; | 11006 static const int STENCIL_BUFFER_BIT = 0x00000400; |
| 11007 | 11007 |
| 11008 static final int STENCIL_CLEAR_VALUE = 0x0B91; | 11008 static const int STENCIL_CLEAR_VALUE = 0x0B91; |
| 11009 | 11009 |
| 11010 static final int STENCIL_FAIL = 0x0B94; | 11010 static const int STENCIL_FAIL = 0x0B94; |
| 11011 | 11011 |
| 11012 static final int STENCIL_FUNC = 0x0B92; | 11012 static const int STENCIL_FUNC = 0x0B92; |
| 11013 | 11013 |
| 11014 static final int STENCIL_INDEX = 0x1901; | 11014 static const int STENCIL_INDEX = 0x1901; |
| 11015 | 11015 |
| 11016 static final int STENCIL_INDEX8 = 0x8D48; | 11016 static const int STENCIL_INDEX8 = 0x8D48; |
| 11017 | 11017 |
| 11018 static final int STENCIL_PASS_DEPTH_FAIL = 0x0B95; | 11018 static const int STENCIL_PASS_DEPTH_FAIL = 0x0B95; |
| 11019 | 11019 |
| 11020 static final int STENCIL_PASS_DEPTH_PASS = 0x0B96; | 11020 static const int STENCIL_PASS_DEPTH_PASS = 0x0B96; |
| 11021 | 11021 |
| 11022 static final int STENCIL_REF = 0x0B97; | 11022 static const int STENCIL_REF = 0x0B97; |
| 11023 | 11023 |
| 11024 static final int STENCIL_TEST = 0x0B90; | 11024 static const int STENCIL_TEST = 0x0B90; |
| 11025 | 11025 |
| 11026 static final int STENCIL_VALUE_MASK = 0x0B93; | 11026 static const int STENCIL_VALUE_MASK = 0x0B93; |
| 11027 | 11027 |
| 11028 static final int STENCIL_WRITEMASK = 0x0B98; | 11028 static const int STENCIL_WRITEMASK = 0x0B98; |
| 11029 | 11029 |
| 11030 static final int STREAM_DRAW = 0x88E0; | 11030 static const int STREAM_DRAW = 0x88E0; |
| 11031 | 11031 |
| 11032 static final int SUBPIXEL_BITS = 0x0D50; | 11032 static const int SUBPIXEL_BITS = 0x0D50; |
| 11033 | 11033 |
| 11034 static final int TEXTURE = 0x1702; | 11034 static const int TEXTURE = 0x1702; |
| 11035 | 11035 |
| 11036 static final int TEXTURE0 = 0x84C0; | 11036 static const int TEXTURE0 = 0x84C0; |
| 11037 | 11037 |
| 11038 static final int TEXTURE1 = 0x84C1; | 11038 static const int TEXTURE1 = 0x84C1; |
| 11039 | 11039 |
| 11040 static final int TEXTURE10 = 0x84CA; | 11040 static const int TEXTURE10 = 0x84CA; |
| 11041 | 11041 |
| 11042 static final int TEXTURE11 = 0x84CB; | 11042 static const int TEXTURE11 = 0x84CB; |
| 11043 | 11043 |
| 11044 static final int TEXTURE12 = 0x84CC; | 11044 static const int TEXTURE12 = 0x84CC; |
| 11045 | 11045 |
| 11046 static final int TEXTURE13 = 0x84CD; | 11046 static const int TEXTURE13 = 0x84CD; |
| 11047 | 11047 |
| 11048 static final int TEXTURE14 = 0x84CE; | 11048 static const int TEXTURE14 = 0x84CE; |
| 11049 | 11049 |
| 11050 static final int TEXTURE15 = 0x84CF; | 11050 static const int TEXTURE15 = 0x84CF; |
| 11051 | 11051 |
| 11052 static final int TEXTURE16 = 0x84D0; | 11052 static const int TEXTURE16 = 0x84D0; |
| 11053 | 11053 |
| 11054 static final int TEXTURE17 = 0x84D1; | 11054 static const int TEXTURE17 = 0x84D1; |
| 11055 | 11055 |
| 11056 static final int TEXTURE18 = 0x84D2; | 11056 static const int TEXTURE18 = 0x84D2; |
| 11057 | 11057 |
| 11058 static final int TEXTURE19 = 0x84D3; | 11058 static const int TEXTURE19 = 0x84D3; |
| 11059 | 11059 |
| 11060 static final int TEXTURE2 = 0x84C2; | 11060 static const int TEXTURE2 = 0x84C2; |
| 11061 | 11061 |
| 11062 static final int TEXTURE20 = 0x84D4; | 11062 static const int TEXTURE20 = 0x84D4; |
| 11063 | 11063 |
| 11064 static final int TEXTURE21 = 0x84D5; | 11064 static const int TEXTURE21 = 0x84D5; |
| 11065 | 11065 |
| 11066 static final int TEXTURE22 = 0x84D6; | 11066 static const int TEXTURE22 = 0x84D6; |
| 11067 | 11067 |
| 11068 static final int TEXTURE23 = 0x84D7; | 11068 static const int TEXTURE23 = 0x84D7; |
| 11069 | 11069 |
| 11070 static final int TEXTURE24 = 0x84D8; | 11070 static const int TEXTURE24 = 0x84D8; |
| 11071 | 11071 |
| 11072 static final int TEXTURE25 = 0x84D9; | 11072 static const int TEXTURE25 = 0x84D9; |
| 11073 | 11073 |
| 11074 static final int TEXTURE26 = 0x84DA; | 11074 static const int TEXTURE26 = 0x84DA; |
| 11075 | 11075 |
| 11076 static final int TEXTURE27 = 0x84DB; | 11076 static const int TEXTURE27 = 0x84DB; |
| 11077 | 11077 |
| 11078 static final int TEXTURE28 = 0x84DC; | 11078 static const int TEXTURE28 = 0x84DC; |
| 11079 | 11079 |
| 11080 static final int TEXTURE29 = 0x84DD; | 11080 static const int TEXTURE29 = 0x84DD; |
| 11081 | 11081 |
| 11082 static final int TEXTURE3 = 0x84C3; | 11082 static const int TEXTURE3 = 0x84C3; |
| 11083 | 11083 |
| 11084 static final int TEXTURE30 = 0x84DE; | 11084 static const int TEXTURE30 = 0x84DE; |
| 11085 | 11085 |
| 11086 static final int TEXTURE31 = 0x84DF; | 11086 static const int TEXTURE31 = 0x84DF; |
| 11087 | 11087 |
| 11088 static final int TEXTURE4 = 0x84C4; | 11088 static const int TEXTURE4 = 0x84C4; |
| 11089 | 11089 |
| 11090 static final int TEXTURE5 = 0x84C5; | 11090 static const int TEXTURE5 = 0x84C5; |
| 11091 | 11091 |
| 11092 static final int TEXTURE6 = 0x84C6; | 11092 static const int TEXTURE6 = 0x84C6; |
| 11093 | 11093 |
| 11094 static final int TEXTURE7 = 0x84C7; | 11094 static const int TEXTURE7 = 0x84C7; |
| 11095 | 11095 |
| 11096 static final int TEXTURE8 = 0x84C8; | 11096 static const int TEXTURE8 = 0x84C8; |
| 11097 | 11097 |
| 11098 static final int TEXTURE9 = 0x84C9; | 11098 static const int TEXTURE9 = 0x84C9; |
| 11099 | 11099 |
| 11100 static final int TEXTURE_2D = 0x0DE1; | 11100 static const int TEXTURE_2D = 0x0DE1; |
| 11101 | 11101 |
| 11102 static final int TEXTURE_BINDING_2D = 0x8069; | 11102 static const int TEXTURE_BINDING_2D = 0x8069; |
| 11103 | 11103 |
| 11104 static final int TEXTURE_BINDING_CUBE_MAP = 0x8514; | 11104 static const int TEXTURE_BINDING_CUBE_MAP = 0x8514; |
| 11105 | 11105 |
| 11106 static final int TEXTURE_CUBE_MAP = 0x8513; | 11106 static const int TEXTURE_CUBE_MAP = 0x8513; |
| 11107 | 11107 |
| 11108 static final int TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516; | 11108 static const int TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516; |
| 11109 | 11109 |
| 11110 static final int TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518; | 11110 static const int TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518; |
| 11111 | 11111 |
| 11112 static final int TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851A; | 11112 static const int TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851A; |
| 11113 | 11113 |
| 11114 static final int TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515; | 11114 static const int TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515; |
| 11115 | 11115 |
| 11116 static final int TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517; | 11116 static const int TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517; |
| 11117 | 11117 |
| 11118 static final int TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519; | 11118 static const int TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519; |
| 11119 | 11119 |
| 11120 static final int TEXTURE_MAG_FILTER = 0x2800; | 11120 static const int TEXTURE_MAG_FILTER = 0x2800; |
| 11121 | 11121 |
| 11122 static final int TEXTURE_MIN_FILTER = 0x2801; | 11122 static const int TEXTURE_MIN_FILTER = 0x2801; |
| 11123 | 11123 |
| 11124 static final int TEXTURE_WRAP_S = 0x2802; | 11124 static const int TEXTURE_WRAP_S = 0x2802; |
| 11125 | 11125 |
| 11126 static final int TEXTURE_WRAP_T = 0x2803; | 11126 static const int TEXTURE_WRAP_T = 0x2803; |
| 11127 | 11127 |
| 11128 static final int TRIANGLES = 0x0004; | 11128 static const int TRIANGLES = 0x0004; |
| 11129 | 11129 |
| 11130 static final int TRIANGLE_FAN = 0x0006; | 11130 static const int TRIANGLE_FAN = 0x0006; |
| 11131 | 11131 |
| 11132 static final int TRIANGLE_STRIP = 0x0005; | 11132 static const int TRIANGLE_STRIP = 0x0005; |
| 11133 | 11133 |
| 11134 static final int UNPACK_ALIGNMENT = 0x0CF5; | 11134 static const int UNPACK_ALIGNMENT = 0x0CF5; |
| 11135 | 11135 |
| 11136 static final int UNPACK_COLORSPACE_CONVERSION_WEBGL = 0x9243; | 11136 static const int UNPACK_COLORSPACE_CONVERSION_WEBGL = 0x9243; |
| 11137 | 11137 |
| 11138 static final int UNPACK_FLIP_Y_WEBGL = 0x9240; | 11138 static const int UNPACK_FLIP_Y_WEBGL = 0x9240; |
| 11139 | 11139 |
| 11140 static final int UNPACK_PREMULTIPLY_ALPHA_WEBGL = 0x9241; | 11140 static const int UNPACK_PREMULTIPLY_ALPHA_WEBGL = 0x9241; |
| 11141 | 11141 |
| 11142 static final int UNSIGNED_BYTE = 0x1401; | 11142 static const int UNSIGNED_BYTE = 0x1401; |
| 11143 | 11143 |
| 11144 static final int UNSIGNED_INT = 0x1405; | 11144 static const int UNSIGNED_INT = 0x1405; |
| 11145 | 11145 |
| 11146 static final int UNSIGNED_SHORT = 0x1403; | 11146 static const int UNSIGNED_SHORT = 0x1403; |
| 11147 | 11147 |
| 11148 static final int UNSIGNED_SHORT_4_4_4_4 = 0x8033; | 11148 static const int UNSIGNED_SHORT_4_4_4_4 = 0x8033; |
| 11149 | 11149 |
| 11150 static final int UNSIGNED_SHORT_5_5_5_1 = 0x8034; | 11150 static const int UNSIGNED_SHORT_5_5_5_1 = 0x8034; |
| 11151 | 11151 |
| 11152 static final int UNSIGNED_SHORT_5_6_5 = 0x8363; | 11152 static const int UNSIGNED_SHORT_5_6_5 = 0x8363; |
| 11153 | 11153 |
| 11154 static final int VALIDATE_STATUS = 0x8B83; | 11154 static const int VALIDATE_STATUS = 0x8B83; |
| 11155 | 11155 |
| 11156 static final int VENDOR = 0x1F00; | 11156 static const int VENDOR = 0x1F00; |
| 11157 | 11157 |
| 11158 static final int VERSION = 0x1F02; | 11158 static const int VERSION = 0x1F02; |
| 11159 | 11159 |
| 11160 static final int VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F; | 11160 static const int VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F; |
| 11161 | 11161 |
| 11162 static final int VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622; | 11162 static const int VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622; |
| 11163 | 11163 |
| 11164 static final int VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A; | 11164 static const int VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A; |
| 11165 | 11165 |
| 11166 static final int VERTEX_ATTRIB_ARRAY_POINTER = 0x8645; | 11166 static const int VERTEX_ATTRIB_ARRAY_POINTER = 0x8645; |
| 11167 | 11167 |
| 11168 static final int VERTEX_ATTRIB_ARRAY_SIZE = 0x8623; | 11168 static const int VERTEX_ATTRIB_ARRAY_SIZE = 0x8623; |
| 11169 | 11169 |
| 11170 static final int VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624; | 11170 static const int VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624; |
| 11171 | 11171 |
| 11172 static final int VERTEX_ATTRIB_ARRAY_TYPE = 0x8625; | 11172 static const int VERTEX_ATTRIB_ARRAY_TYPE = 0x8625; |
| 11173 | 11173 |
| 11174 static final int VERTEX_SHADER = 0x8B31; | 11174 static const int VERTEX_SHADER = 0x8B31; |
| 11175 | 11175 |
| 11176 static final int VIEWPORT = 0x0BA2; | 11176 static const int VIEWPORT = 0x0BA2; |
| 11177 | 11177 |
| 11178 static final int ZERO = 0; | 11178 static const int ZERO = 0; |
| 11179 | 11179 |
| 11180 final int drawingBufferHeight; | 11180 final int drawingBufferHeight; |
| 11181 | 11181 |
| 11182 final int drawingBufferWidth; | 11182 final int drawingBufferWidth; |
| 11183 | 11183 |
| 11184 void activeTexture(int texture) native; | 11184 void activeTexture(int texture) native; |
| 11185 | 11185 |
| 11186 void attachShader(_WebGLProgramJs program, _WebGLShaderJs shader) native; | 11186 void attachShader(_WebGLProgramJs program, _WebGLShaderJs shader) native; |
| 11187 | 11187 |
| 11188 void bindAttribLocation(_WebGLProgramJs program, int index, String name) nativ
e; | 11188 void bindAttribLocation(_WebGLProgramJs program, int index, String name) nativ
e; |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11472 } | 11472 } |
| 11473 | 11473 |
| 11474 class _WebGLUniformLocationJs extends _DOMTypeJs implements WebGLUniformLocation
native "*WebGLUniformLocation" { | 11474 class _WebGLUniformLocationJs extends _DOMTypeJs implements WebGLUniformLocation
native "*WebGLUniformLocation" { |
| 11475 } | 11475 } |
| 11476 | 11476 |
| 11477 class _WebGLVertexArrayObjectOESJs extends _DOMTypeJs implements WebGLVertexArra
yObjectOES native "*WebGLVertexArrayObjectOES" { | 11477 class _WebGLVertexArrayObjectOESJs extends _DOMTypeJs implements WebGLVertexArra
yObjectOES native "*WebGLVertexArrayObjectOES" { |
| 11478 } | 11478 } |
| 11479 | 11479 |
| 11480 class _WebKitAnimationJs extends _DOMTypeJs implements WebKitAnimation native "*
WebKitAnimation" { | 11480 class _WebKitAnimationJs extends _DOMTypeJs implements WebKitAnimation native "*
WebKitAnimation" { |
| 11481 | 11481 |
| 11482 static final int DIRECTION_ALTERNATE = 1; | 11482 static const int DIRECTION_ALTERNATE = 1; |
| 11483 | 11483 |
| 11484 static final int DIRECTION_NORMAL = 0; | 11484 static const int DIRECTION_NORMAL = 0; |
| 11485 | 11485 |
| 11486 static final int FILL_BACKWARDS = 1; | 11486 static const int FILL_BACKWARDS = 1; |
| 11487 | 11487 |
| 11488 static final int FILL_BOTH = 3; | 11488 static const int FILL_BOTH = 3; |
| 11489 | 11489 |
| 11490 static final int FILL_FORWARDS = 2; | 11490 static const int FILL_FORWARDS = 2; |
| 11491 | 11491 |
| 11492 static final int FILL_NONE = 0; | 11492 static const int FILL_NONE = 0; |
| 11493 | 11493 |
| 11494 final num delay; | 11494 final num delay; |
| 11495 | 11495 |
| 11496 final int direction; | 11496 final int direction; |
| 11497 | 11497 |
| 11498 final num duration; | 11498 final num duration; |
| 11499 | 11499 |
| 11500 num elapsedTime; | 11500 num elapsedTime; |
| 11501 | 11501 |
| 11502 final bool ended; | 11502 final bool ended; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 11523 | 11523 |
| 11524 class _WebKitAnimationListJs extends _DOMTypeJs implements WebKitAnimationList n
ative "*WebKitAnimationList" { | 11524 class _WebKitAnimationListJs extends _DOMTypeJs implements WebKitAnimationList n
ative "*WebKitAnimationList" { |
| 11525 | 11525 |
| 11526 final int length; | 11526 final int length; |
| 11527 | 11527 |
| 11528 _WebKitAnimationJs item(int index) native; | 11528 _WebKitAnimationJs item(int index) native; |
| 11529 } | 11529 } |
| 11530 | 11530 |
| 11531 class _WebKitCSSFilterValueJs extends _CSSValueListJs implements WebKitCSSFilter
Value native "*WebKitCSSFilterValue" { | 11531 class _WebKitCSSFilterValueJs extends _CSSValueListJs implements WebKitCSSFilter
Value native "*WebKitCSSFilterValue" { |
| 11532 | 11532 |
| 11533 static final int CSS_FILTER_BLUR = 10; | 11533 static const int CSS_FILTER_BLUR = 10; |
| 11534 | 11534 |
| 11535 static final int CSS_FILTER_BRIGHTNESS = 8; | 11535 static const int CSS_FILTER_BRIGHTNESS = 8; |
| 11536 | 11536 |
| 11537 static final int CSS_FILTER_CONTRAST = 9; | 11537 static const int CSS_FILTER_CONTRAST = 9; |
| 11538 | 11538 |
| 11539 static final int CSS_FILTER_CUSTOM = 12; | 11539 static const int CSS_FILTER_CUSTOM = 12; |
| 11540 | 11540 |
| 11541 static final int CSS_FILTER_DROP_SHADOW = 11; | 11541 static const int CSS_FILTER_DROP_SHADOW = 11; |
| 11542 | 11542 |
| 11543 static final int CSS_FILTER_GRAYSCALE = 2; | 11543 static const int CSS_FILTER_GRAYSCALE = 2; |
| 11544 | 11544 |
| 11545 static final int CSS_FILTER_HUE_ROTATE = 5; | 11545 static const int CSS_FILTER_HUE_ROTATE = 5; |
| 11546 | 11546 |
| 11547 static final int CSS_FILTER_INVERT = 6; | 11547 static const int CSS_FILTER_INVERT = 6; |
| 11548 | 11548 |
| 11549 static final int CSS_FILTER_OPACITY = 7; | 11549 static const int CSS_FILTER_OPACITY = 7; |
| 11550 | 11550 |
| 11551 static final int CSS_FILTER_REFERENCE = 1; | 11551 static const int CSS_FILTER_REFERENCE = 1; |
| 11552 | 11552 |
| 11553 static final int CSS_FILTER_SATURATE = 4; | 11553 static const int CSS_FILTER_SATURATE = 4; |
| 11554 | 11554 |
| 11555 static final int CSS_FILTER_SEPIA = 3; | 11555 static const int CSS_FILTER_SEPIA = 3; |
| 11556 | 11556 |
| 11557 final int operationType; | 11557 final int operationType; |
| 11558 } | 11558 } |
| 11559 | 11559 |
| 11560 class _WebKitCSSKeyframeRuleJs extends _CSSRuleJs implements WebKitCSSKeyframeRu
le native "*WebKitCSSKeyframeRule" { | 11560 class _WebKitCSSKeyframeRuleJs extends _CSSRuleJs implements WebKitCSSKeyframeRu
le native "*WebKitCSSKeyframeRule" { |
| 11561 | 11561 |
| 11562 String keyText; | 11562 String keyText; |
| 11563 | 11563 |
| 11564 final _CSSStyleDeclarationJs style; | 11564 final _CSSStyleDeclarationJs style; |
| 11565 } | 11565 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11639 | 11639 |
| 11640 _WebKitCSSMatrixJs skewY(num angle) native; | 11640 _WebKitCSSMatrixJs skewY(num angle) native; |
| 11641 | 11641 |
| 11642 String toString() native; | 11642 String toString() native; |
| 11643 | 11643 |
| 11644 _WebKitCSSMatrixJs translate(num x, num y, num z) native; | 11644 _WebKitCSSMatrixJs translate(num x, num y, num z) native; |
| 11645 } | 11645 } |
| 11646 | 11646 |
| 11647 class _WebKitCSSTransformValueJs extends _CSSValueListJs implements WebKitCSSTra
nsformValue native "*WebKitCSSTransformValue" { | 11647 class _WebKitCSSTransformValueJs extends _CSSValueListJs implements WebKitCSSTra
nsformValue native "*WebKitCSSTransformValue" { |
| 11648 | 11648 |
| 11649 static final int CSS_MATRIX = 11; | 11649 static const int CSS_MATRIX = 11; |
| 11650 | 11650 |
| 11651 static final int CSS_MATRIX3D = 21; | 11651 static const int CSS_MATRIX3D = 21; |
| 11652 | 11652 |
| 11653 static final int CSS_PERSPECTIVE = 20; | 11653 static const int CSS_PERSPECTIVE = 20; |
| 11654 | 11654 |
| 11655 static final int CSS_ROTATE = 4; | 11655 static const int CSS_ROTATE = 4; |
| 11656 | 11656 |
| 11657 static final int CSS_ROTATE3D = 17; | 11657 static const int CSS_ROTATE3D = 17; |
| 11658 | 11658 |
| 11659 static final int CSS_ROTATEX = 14; | 11659 static const int CSS_ROTATEX = 14; |
| 11660 | 11660 |
| 11661 static final int CSS_ROTATEY = 15; | 11661 static const int CSS_ROTATEY = 15; |
| 11662 | 11662 |
| 11663 static final int CSS_ROTATEZ = 16; | 11663 static const int CSS_ROTATEZ = 16; |
| 11664 | 11664 |
| 11665 static final int CSS_SCALE = 5; | 11665 static const int CSS_SCALE = 5; |
| 11666 | 11666 |
| 11667 static final int CSS_SCALE3D = 19; | 11667 static const int CSS_SCALE3D = 19; |
| 11668 | 11668 |
| 11669 static final int CSS_SCALEX = 6; | 11669 static const int CSS_SCALEX = 6; |
| 11670 | 11670 |
| 11671 static final int CSS_SCALEY = 7; | 11671 static const int CSS_SCALEY = 7; |
| 11672 | 11672 |
| 11673 static final int CSS_SCALEZ = 18; | 11673 static const int CSS_SCALEZ = 18; |
| 11674 | 11674 |
| 11675 static final int CSS_SKEW = 8; | 11675 static const int CSS_SKEW = 8; |
| 11676 | 11676 |
| 11677 static final int CSS_SKEWX = 9; | 11677 static const int CSS_SKEWX = 9; |
| 11678 | 11678 |
| 11679 static final int CSS_SKEWY = 10; | 11679 static const int CSS_SKEWY = 10; |
| 11680 | 11680 |
| 11681 static final int CSS_TRANSLATE = 1; | 11681 static const int CSS_TRANSLATE = 1; |
| 11682 | 11682 |
| 11683 static final int CSS_TRANSLATE3D = 13; | 11683 static const int CSS_TRANSLATE3D = 13; |
| 11684 | 11684 |
| 11685 static final int CSS_TRANSLATEX = 2; | 11685 static const int CSS_TRANSLATEX = 2; |
| 11686 | 11686 |
| 11687 static final int CSS_TRANSLATEY = 3; | 11687 static const int CSS_TRANSLATEY = 3; |
| 11688 | 11688 |
| 11689 static final int CSS_TRANSLATEZ = 12; | 11689 static const int CSS_TRANSLATEZ = 12; |
| 11690 | 11690 |
| 11691 final int operationType; | 11691 final int operationType; |
| 11692 } | 11692 } |
| 11693 | 11693 |
| 11694 class _WebKitNamedFlowJs extends _EventTargetJs implements WebKitNamedFlow nativ
e "*WebKitNamedFlow" { | 11694 class _WebKitNamedFlowJs extends _EventTargetJs implements WebKitNamedFlow nativ
e "*WebKitNamedFlow" { |
| 11695 | 11695 |
| 11696 final int firstEmptyRegionIndex; | 11696 final int firstEmptyRegionIndex; |
| 11697 | 11697 |
| 11698 final String name; | 11698 final String name; |
| 11699 | 11699 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 11721 | 11721 |
| 11722 class _WebKitTransitionEventJs extends _EventJs implements WebKitTransitionEvent
native "*WebKitTransitionEvent" { | 11722 class _WebKitTransitionEventJs extends _EventJs implements WebKitTransitionEvent
native "*WebKitTransitionEvent" { |
| 11723 | 11723 |
| 11724 final num elapsedTime; | 11724 final num elapsedTime; |
| 11725 | 11725 |
| 11726 final String propertyName; | 11726 final String propertyName; |
| 11727 } | 11727 } |
| 11728 | 11728 |
| 11729 class _WebSocketJs extends _EventTargetJs implements WebSocket native "*WebSocke
t" { | 11729 class _WebSocketJs extends _EventTargetJs implements WebSocket native "*WebSocke
t" { |
| 11730 | 11730 |
| 11731 static final int CLOSED = 3; | 11731 static const int CLOSED = 3; |
| 11732 | 11732 |
| 11733 static final int CLOSING = 2; | 11733 static const int CLOSING = 2; |
| 11734 | 11734 |
| 11735 static final int CONNECTING = 0; | 11735 static const int CONNECTING = 0; |
| 11736 | 11736 |
| 11737 static final int OPEN = 1; | 11737 static const int OPEN = 1; |
| 11738 | 11738 |
| 11739 final String URL; | 11739 final String URL; |
| 11740 | 11740 |
| 11741 String binaryType; | 11741 String binaryType; |
| 11742 | 11742 |
| 11743 final int bufferedAmount; | 11743 final int bufferedAmount; |
| 11744 | 11744 |
| 11745 final String extensions; | 11745 final String extensions; |
| 11746 | 11746 |
| 11747 final String protocol; | 11747 final String protocol; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 11778 | 11778 |
| 11779 void postMessage(message, [List messagePorts]) native; | 11779 void postMessage(message, [List messagePorts]) native; |
| 11780 | 11780 |
| 11781 void terminate() native; | 11781 void terminate() native; |
| 11782 | 11782 |
| 11783 void webkitPostMessage(message, [List messagePorts]) native; | 11783 void webkitPostMessage(message, [List messagePorts]) native; |
| 11784 } | 11784 } |
| 11785 | 11785 |
| 11786 class _WorkerContextJs extends _EventTargetJs implements WorkerContext native "*
WorkerContext" { | 11786 class _WorkerContextJs extends _EventTargetJs implements WorkerContext native "*
WorkerContext" { |
| 11787 | 11787 |
| 11788 static final int PERSISTENT = 1; | 11788 static const int PERSISTENT = 1; |
| 11789 | 11789 |
| 11790 static final int TEMPORARY = 0; | 11790 static const int TEMPORARY = 0; |
| 11791 | 11791 |
| 11792 final _WorkerLocationJs location; | 11792 final _WorkerLocationJs location; |
| 11793 | 11793 |
| 11794 final _WorkerNavigatorJs navigator; | 11794 final _WorkerNavigatorJs navigator; |
| 11795 | 11795 |
| 11796 final _WorkerContextJs self; | 11796 final _WorkerContextJs self; |
| 11797 | 11797 |
| 11798 final _IDBFactoryJs webkitIndexedDB; | 11798 final _IDBFactoryJs webkitIndexedDB; |
| 11799 | 11799 |
| 11800 final _NotificationCenterJs webkitNotifications; | 11800 final _NotificationCenterJs webkitNotifications; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11859 | 11859 |
| 11860 final bool onLine; | 11860 final bool onLine; |
| 11861 | 11861 |
| 11862 final String platform; | 11862 final String platform; |
| 11863 | 11863 |
| 11864 final String userAgent; | 11864 final String userAgent; |
| 11865 } | 11865 } |
| 11866 | 11866 |
| 11867 class _XMLHttpRequestJs extends _EventTargetJs implements XMLHttpRequest native
"*XMLHttpRequest" { | 11867 class _XMLHttpRequestJs extends _EventTargetJs implements XMLHttpRequest native
"*XMLHttpRequest" { |
| 11868 | 11868 |
| 11869 static final int DONE = 4; | 11869 static const int DONE = 4; |
| 11870 | 11870 |
| 11871 static final int HEADERS_RECEIVED = 2; | 11871 static const int HEADERS_RECEIVED = 2; |
| 11872 | 11872 |
| 11873 static final int LOADING = 3; | 11873 static const int LOADING = 3; |
| 11874 | 11874 |
| 11875 static final int OPENED = 1; | 11875 static const int OPENED = 1; |
| 11876 | 11876 |
| 11877 static final int UNSENT = 0; | 11877 static const int UNSENT = 0; |
| 11878 | 11878 |
| 11879 final int readyState; | 11879 final int readyState; |
| 11880 | 11880 |
| 11881 final Object response; | 11881 final Object response; |
| 11882 | 11882 |
| 11883 final String responseText; | 11883 final String responseText; |
| 11884 | 11884 |
| 11885 String responseType; | 11885 String responseType; |
| 11886 | 11886 |
| 11887 final _DocumentJs responseXML; | 11887 final _DocumentJs responseXML; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 11910 | 11910 |
| 11911 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; | 11911 void removeEventListener(String type, EventListener listener, [bool useCapture
]) native; |
| 11912 | 11912 |
| 11913 void send([data]) native; | 11913 void send([data]) native; |
| 11914 | 11914 |
| 11915 void setRequestHeader(String header, String value) native; | 11915 void setRequestHeader(String header, String value) native; |
| 11916 } | 11916 } |
| 11917 | 11917 |
| 11918 class _XMLHttpRequestExceptionJs extends _DOMTypeJs implements XMLHttpRequestExc
eption native "*XMLHttpRequestException" { | 11918 class _XMLHttpRequestExceptionJs extends _DOMTypeJs implements XMLHttpRequestExc
eption native "*XMLHttpRequestException" { |
| 11919 | 11919 |
| 11920 static final int ABORT_ERR = 102; | 11920 static const int ABORT_ERR = 102; |
| 11921 | 11921 |
| 11922 static final int NETWORK_ERR = 101; | 11922 static const int NETWORK_ERR = 101; |
| 11923 | 11923 |
| 11924 final int code; | 11924 final int code; |
| 11925 | 11925 |
| 11926 final String message; | 11926 final String message; |
| 11927 | 11927 |
| 11928 final String name; | 11928 final String name; |
| 11929 | 11929 |
| 11930 String toString() native; | 11930 String toString() native; |
| 11931 } | 11931 } |
| 11932 | 11932 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 11955 | 11955 |
| 11956 _XPathExpressionJs createExpression(String expression, _XPathNSResolverJs reso
lver) native; | 11956 _XPathExpressionJs createExpression(String expression, _XPathNSResolverJs reso
lver) native; |
| 11957 | 11957 |
| 11958 _XPathNSResolverJs createNSResolver(_NodeJs nodeResolver) native; | 11958 _XPathNSResolverJs createNSResolver(_NodeJs nodeResolver) native; |
| 11959 | 11959 |
| 11960 _XPathResultJs evaluate(String expression, _NodeJs contextNode, _XPathNSResolv
erJs resolver, int type, _XPathResultJs inResult) native; | 11960 _XPathResultJs evaluate(String expression, _NodeJs contextNode, _XPathNSResolv
erJs resolver, int type, _XPathResultJs inResult) native; |
| 11961 } | 11961 } |
| 11962 | 11962 |
| 11963 class _XPathExceptionJs extends _DOMTypeJs implements XPathException native "*XP
athException" { | 11963 class _XPathExceptionJs extends _DOMTypeJs implements XPathException native "*XP
athException" { |
| 11964 | 11964 |
| 11965 static final int INVALID_EXPRESSION_ERR = 51; | 11965 static const int INVALID_EXPRESSION_ERR = 51; |
| 11966 | 11966 |
| 11967 static final int TYPE_ERR = 52; | 11967 static const int TYPE_ERR = 52; |
| 11968 | 11968 |
| 11969 final int code; | 11969 final int code; |
| 11970 | 11970 |
| 11971 final String message; | 11971 final String message; |
| 11972 | 11972 |
| 11973 final String name; | 11973 final String name; |
| 11974 | 11974 |
| 11975 String toString() native; | 11975 String toString() native; |
| 11976 } | 11976 } |
| 11977 | 11977 |
| 11978 class _XPathExpressionJs extends _DOMTypeJs implements XPathExpression native "*
XPathExpression" { | 11978 class _XPathExpressionJs extends _DOMTypeJs implements XPathExpression native "*
XPathExpression" { |
| 11979 | 11979 |
| 11980 _XPathResultJs evaluate(_NodeJs contextNode, int type, _XPathResultJs inResult
) native; | 11980 _XPathResultJs evaluate(_NodeJs contextNode, int type, _XPathResultJs inResult
) native; |
| 11981 } | 11981 } |
| 11982 | 11982 |
| 11983 class _XPathNSResolverJs extends _DOMTypeJs implements XPathNSResolver native "*
XPathNSResolver" { | 11983 class _XPathNSResolverJs extends _DOMTypeJs implements XPathNSResolver native "*
XPathNSResolver" { |
| 11984 | 11984 |
| 11985 String lookupNamespaceURI(String prefix) native; | 11985 String lookupNamespaceURI(String prefix) native; |
| 11986 } | 11986 } |
| 11987 | 11987 |
| 11988 class _XPathResultJs extends _DOMTypeJs implements XPathResult native "*XPathRes
ult" { | 11988 class _XPathResultJs extends _DOMTypeJs implements XPathResult native "*XPathRes
ult" { |
| 11989 | 11989 |
| 11990 static final int ANY_TYPE = 0; | 11990 static const int ANY_TYPE = 0; |
| 11991 | 11991 |
| 11992 static final int ANY_UNORDERED_NODE_TYPE = 8; | 11992 static const int ANY_UNORDERED_NODE_TYPE = 8; |
| 11993 | 11993 |
| 11994 static final int BOOLEAN_TYPE = 3; | 11994 static const int BOOLEAN_TYPE = 3; |
| 11995 | 11995 |
| 11996 static final int FIRST_ORDERED_NODE_TYPE = 9; | 11996 static const int FIRST_ORDERED_NODE_TYPE = 9; |
| 11997 | 11997 |
| 11998 static final int NUMBER_TYPE = 1; | 11998 static const int NUMBER_TYPE = 1; |
| 11999 | 11999 |
| 12000 static final int ORDERED_NODE_ITERATOR_TYPE = 5; | 12000 static const int ORDERED_NODE_ITERATOR_TYPE = 5; |
| 12001 | 12001 |
| 12002 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7; | 12002 static const int ORDERED_NODE_SNAPSHOT_TYPE = 7; |
| 12003 | 12003 |
| 12004 static final int STRING_TYPE = 2; | 12004 static const int STRING_TYPE = 2; |
| 12005 | 12005 |
| 12006 static final int UNORDERED_NODE_ITERATOR_TYPE = 4; | 12006 static const int UNORDERED_NODE_ITERATOR_TYPE = 4; |
| 12007 | 12007 |
| 12008 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6; | 12008 static const int UNORDERED_NODE_SNAPSHOT_TYPE = 6; |
| 12009 | 12009 |
| 12010 final bool booleanValue; | 12010 final bool booleanValue; |
| 12011 | 12011 |
| 12012 final bool invalidIteratorState; | 12012 final bool invalidIteratorState; |
| 12013 | 12013 |
| 12014 final num numberValue; | 12014 final num numberValue; |
| 12015 | 12015 |
| 12016 final int resultType; | 12016 final int resultType; |
| 12017 | 12017 |
| 12018 final _NodeJs singleNodeValue; | 12018 final _NodeJs singleNodeValue; |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12412 | 12412 |
| 12413 typedef bool AudioBufferCallback(AudioBuffer audioBuffer); | 12413 typedef bool AudioBufferCallback(AudioBuffer audioBuffer); |
| 12414 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12414 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12415 // for details. All rights reserved. Use of this source code is governed by a | 12415 // for details. All rights reserved. Use of this source code is governed by a |
| 12416 // BSD-style license that can be found in the LICENSE file. | 12416 // BSD-style license that can be found in the LICENSE file. |
| 12417 | 12417 |
| 12418 // WARNING: Do not edit - generated code. | 12418 // WARNING: Do not edit - generated code. |
| 12419 | 12419 |
| 12420 interface AudioBufferSourceNode extends AudioSourceNode { | 12420 interface AudioBufferSourceNode extends AudioSourceNode { |
| 12421 | 12421 |
| 12422 static final int FINISHED_STATE = 3; | 12422 static const int FINISHED_STATE = 3; |
| 12423 | 12423 |
| 12424 static final int PLAYING_STATE = 2; | 12424 static const int PLAYING_STATE = 2; |
| 12425 | 12425 |
| 12426 static final int SCHEDULED_STATE = 1; | 12426 static const int SCHEDULED_STATE = 1; |
| 12427 | 12427 |
| 12428 static final int UNSCHEDULED_STATE = 0; | 12428 static const int UNSCHEDULED_STATE = 0; |
| 12429 | 12429 |
| 12430 AudioBuffer buffer; | 12430 AudioBuffer buffer; |
| 12431 | 12431 |
| 12432 final AudioGain gain; | 12432 final AudioGain gain; |
| 12433 | 12433 |
| 12434 bool loop; | 12434 bool loop; |
| 12435 | 12435 |
| 12436 bool looping; | 12436 bool looping; |
| 12437 | 12437 |
| 12438 final AudioParam playbackRate; | 12438 final AudioParam playbackRate; |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12584 void disconnect(int output); | 12584 void disconnect(int output); |
| 12585 } | 12585 } |
| 12586 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12586 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12587 // for details. All rights reserved. Use of this source code is governed by a | 12587 // for details. All rights reserved. Use of this source code is governed by a |
| 12588 // BSD-style license that can be found in the LICENSE file. | 12588 // BSD-style license that can be found in the LICENSE file. |
| 12589 | 12589 |
| 12590 // WARNING: Do not edit - generated code. | 12590 // WARNING: Do not edit - generated code. |
| 12591 | 12591 |
| 12592 interface AudioPannerNode extends AudioNode { | 12592 interface AudioPannerNode extends AudioNode { |
| 12593 | 12593 |
| 12594 static final int EQUALPOWER = 0; | 12594 static const int EQUALPOWER = 0; |
| 12595 | 12595 |
| 12596 static final int EXPONENTIAL_DISTANCE = 2; | 12596 static const int EXPONENTIAL_DISTANCE = 2; |
| 12597 | 12597 |
| 12598 static final int HRTF = 1; | 12598 static const int HRTF = 1; |
| 12599 | 12599 |
| 12600 static final int INVERSE_DISTANCE = 1; | 12600 static const int INVERSE_DISTANCE = 1; |
| 12601 | 12601 |
| 12602 static final int LINEAR_DISTANCE = 0; | 12602 static const int LINEAR_DISTANCE = 0; |
| 12603 | 12603 |
| 12604 static final int SOUNDFIELD = 2; | 12604 static const int SOUNDFIELD = 2; |
| 12605 | 12605 |
| 12606 final AudioGain coneGain; | 12606 final AudioGain coneGain; |
| 12607 | 12607 |
| 12608 num coneInnerAngle; | 12608 num coneInnerAngle; |
| 12609 | 12609 |
| 12610 num coneOuterAngle; | 12610 num coneOuterAngle; |
| 12611 | 12611 |
| 12612 num coneOuterGain; | 12612 num coneOuterGain; |
| 12613 | 12613 |
| 12614 final AudioGain distanceGain; | 12614 final AudioGain distanceGain; |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12727 final String url; | 12727 final String url; |
| 12728 } | 12728 } |
| 12729 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12729 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12730 // for details. All rights reserved. Use of this source code is governed by a | 12730 // for details. All rights reserved. Use of this source code is governed by a |
| 12731 // BSD-style license that can be found in the LICENSE file. | 12731 // BSD-style license that can be found in the LICENSE file. |
| 12732 | 12732 |
| 12733 // WARNING: Do not edit - generated code. | 12733 // WARNING: Do not edit - generated code. |
| 12734 | 12734 |
| 12735 interface BiquadFilterNode extends AudioNode { | 12735 interface BiquadFilterNode extends AudioNode { |
| 12736 | 12736 |
| 12737 static final int ALLPASS = 7; | 12737 static const int ALLPASS = 7; |
| 12738 | 12738 |
| 12739 static final int BANDPASS = 2; | 12739 static const int BANDPASS = 2; |
| 12740 | 12740 |
| 12741 static final int HIGHPASS = 1; | 12741 static const int HIGHPASS = 1; |
| 12742 | 12742 |
| 12743 static final int HIGHSHELF = 4; | 12743 static const int HIGHSHELF = 4; |
| 12744 | 12744 |
| 12745 static final int LOWPASS = 0; | 12745 static const int LOWPASS = 0; |
| 12746 | 12746 |
| 12747 static final int LOWSHELF = 3; | 12747 static const int LOWSHELF = 3; |
| 12748 | 12748 |
| 12749 static final int NOTCH = 6; | 12749 static const int NOTCH = 6; |
| 12750 | 12750 |
| 12751 static final int PEAKING = 5; | 12751 static const int PEAKING = 5; |
| 12752 | 12752 |
| 12753 final AudioParam Q; | 12753 final AudioParam Q; |
| 12754 | 12754 |
| 12755 final AudioParam frequency; | 12755 final AudioParam frequency; |
| 12756 | 12756 |
| 12757 final AudioParam gain; | 12757 final AudioParam gain; |
| 12758 | 12758 |
| 12759 int type; | 12759 int type; |
| 12760 | 12760 |
| 12761 void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse,
Float32Array phaseResponse); | 12761 void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse,
Float32Array phaseResponse); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12849 final CSSStyleDeclaration style; | 12849 final CSSStyleDeclaration style; |
| 12850 } | 12850 } |
| 12851 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12851 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12852 // for details. All rights reserved. Use of this source code is governed by a | 12852 // for details. All rights reserved. Use of this source code is governed by a |
| 12853 // BSD-style license that can be found in the LICENSE file. | 12853 // BSD-style license that can be found in the LICENSE file. |
| 12854 | 12854 |
| 12855 // WARNING: Do not edit - generated code. | 12855 // WARNING: Do not edit - generated code. |
| 12856 | 12856 |
| 12857 interface CSSPrimitiveValue extends CSSValue { | 12857 interface CSSPrimitiveValue extends CSSValue { |
| 12858 | 12858 |
| 12859 static final int CSS_ATTR = 22; | 12859 static const int CSS_ATTR = 22; |
| 12860 | 12860 |
| 12861 static final int CSS_CM = 6; | 12861 static const int CSS_CM = 6; |
| 12862 | 12862 |
| 12863 static final int CSS_COUNTER = 23; | 12863 static const int CSS_COUNTER = 23; |
| 12864 | 12864 |
| 12865 static final int CSS_DEG = 11; | 12865 static const int CSS_DEG = 11; |
| 12866 | 12866 |
| 12867 static final int CSS_DIMENSION = 18; | 12867 static const int CSS_DIMENSION = 18; |
| 12868 | 12868 |
| 12869 static final int CSS_EMS = 3; | 12869 static const int CSS_EMS = 3; |
| 12870 | 12870 |
| 12871 static final int CSS_EXS = 4; | 12871 static const int CSS_EXS = 4; |
| 12872 | 12872 |
| 12873 static final int CSS_GRAD = 13; | 12873 static const int CSS_GRAD = 13; |
| 12874 | 12874 |
| 12875 static final int CSS_HZ = 16; | 12875 static const int CSS_HZ = 16; |
| 12876 | 12876 |
| 12877 static final int CSS_IDENT = 21; | 12877 static const int CSS_IDENT = 21; |
| 12878 | 12878 |
| 12879 static final int CSS_IN = 8; | 12879 static const int CSS_IN = 8; |
| 12880 | 12880 |
| 12881 static final int CSS_KHZ = 17; | 12881 static const int CSS_KHZ = 17; |
| 12882 | 12882 |
| 12883 static final int CSS_MM = 7; | 12883 static const int CSS_MM = 7; |
| 12884 | 12884 |
| 12885 static final int CSS_MS = 14; | 12885 static const int CSS_MS = 14; |
| 12886 | 12886 |
| 12887 static final int CSS_NUMBER = 1; | 12887 static const int CSS_NUMBER = 1; |
| 12888 | 12888 |
| 12889 static final int CSS_PC = 10; | 12889 static const int CSS_PC = 10; |
| 12890 | 12890 |
| 12891 static final int CSS_PERCENTAGE = 2; | 12891 static const int CSS_PERCENTAGE = 2; |
| 12892 | 12892 |
| 12893 static final int CSS_PT = 9; | 12893 static const int CSS_PT = 9; |
| 12894 | 12894 |
| 12895 static final int CSS_PX = 5; | 12895 static const int CSS_PX = 5; |
| 12896 | 12896 |
| 12897 static final int CSS_RAD = 12; | 12897 static const int CSS_RAD = 12; |
| 12898 | 12898 |
| 12899 static final int CSS_RECT = 24; | 12899 static const int CSS_RECT = 24; |
| 12900 | 12900 |
| 12901 static final int CSS_RGBCOLOR = 25; | 12901 static const int CSS_RGBCOLOR = 25; |
| 12902 | 12902 |
| 12903 static final int CSS_S = 15; | 12903 static const int CSS_S = 15; |
| 12904 | 12904 |
| 12905 static final int CSS_STRING = 19; | 12905 static const int CSS_STRING = 19; |
| 12906 | 12906 |
| 12907 static final int CSS_UNKNOWN = 0; | 12907 static const int CSS_UNKNOWN = 0; |
| 12908 | 12908 |
| 12909 static final int CSS_URI = 20; | 12909 static const int CSS_URI = 20; |
| 12910 | 12910 |
| 12911 static final int CSS_VH = 27; | 12911 static const int CSS_VH = 27; |
| 12912 | 12912 |
| 12913 static final int CSS_VMIN = 28; | 12913 static const int CSS_VMIN = 28; |
| 12914 | 12914 |
| 12915 static final int CSS_VW = 26; | 12915 static const int CSS_VW = 26; |
| 12916 | 12916 |
| 12917 final int primitiveType; | 12917 final int primitiveType; |
| 12918 | 12918 |
| 12919 Counter getCounterValue(); | 12919 Counter getCounterValue(); |
| 12920 | 12920 |
| 12921 num getFloatValue(int unitType); | 12921 num getFloatValue(int unitType); |
| 12922 | 12922 |
| 12923 RGBColor getRGBColorValue(); | 12923 RGBColor getRGBColorValue(); |
| 12924 | 12924 |
| 12925 Rect getRectValue(); | 12925 Rect getRectValue(); |
| 12926 | 12926 |
| 12927 String getStringValue(); | 12927 String getStringValue(); |
| 12928 | 12928 |
| 12929 void setFloatValue(int unitType, num floatValue); | 12929 void setFloatValue(int unitType, num floatValue); |
| 12930 | 12930 |
| 12931 void setStringValue(int stringType, String stringValue); | 12931 void setStringValue(int stringType, String stringValue); |
| 12932 } | 12932 } |
| 12933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12934 // for details. All rights reserved. Use of this source code is governed by a | 12934 // for details. All rights reserved. Use of this source code is governed by a |
| 12935 // BSD-style license that can be found in the LICENSE file. | 12935 // BSD-style license that can be found in the LICENSE file. |
| 12936 | 12936 |
| 12937 // WARNING: Do not edit - generated code. | 12937 // WARNING: Do not edit - generated code. |
| 12938 | 12938 |
| 12939 interface CSSRule { | 12939 interface CSSRule { |
| 12940 | 12940 |
| 12941 static final int CHARSET_RULE = 2; | 12941 static const int CHARSET_RULE = 2; |
| 12942 | 12942 |
| 12943 static final int FONT_FACE_RULE = 5; | 12943 static const int FONT_FACE_RULE = 5; |
| 12944 | 12944 |
| 12945 static final int IMPORT_RULE = 3; | 12945 static const int IMPORT_RULE = 3; |
| 12946 | 12946 |
| 12947 static final int MEDIA_RULE = 4; | 12947 static const int MEDIA_RULE = 4; |
| 12948 | 12948 |
| 12949 static final int PAGE_RULE = 6; | 12949 static const int PAGE_RULE = 6; |
| 12950 | 12950 |
| 12951 static final int STYLE_RULE = 1; | 12951 static const int STYLE_RULE = 1; |
| 12952 | 12952 |
| 12953 static final int UNKNOWN_RULE = 0; | 12953 static const int UNKNOWN_RULE = 0; |
| 12954 | 12954 |
| 12955 static final int WEBKIT_KEYFRAMES_RULE = 7; | 12955 static const int WEBKIT_KEYFRAMES_RULE = 7; |
| 12956 | 12956 |
| 12957 static final int WEBKIT_KEYFRAME_RULE = 8; | 12957 static const int WEBKIT_KEYFRAME_RULE = 8; |
| 12958 | 12958 |
| 12959 String cssText; | 12959 String cssText; |
| 12960 | 12960 |
| 12961 final CSSRule parentRule; | 12961 final CSSRule parentRule; |
| 12962 | 12962 |
| 12963 final CSSStyleSheet parentStyleSheet; | 12963 final CSSStyleSheet parentStyleSheet; |
| 12964 | 12964 |
| 12965 final int type; | 12965 final int type; |
| 12966 } | 12966 } |
| 12967 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12967 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13049 interface CSSUnknownRule extends CSSRule { | 13049 interface CSSUnknownRule extends CSSRule { |
| 13050 } | 13050 } |
| 13051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13052 // for details. All rights reserved. Use of this source code is governed by a | 13052 // for details. All rights reserved. Use of this source code is governed by a |
| 13053 // BSD-style license that can be found in the LICENSE file. | 13053 // BSD-style license that can be found in the LICENSE file. |
| 13054 | 13054 |
| 13055 // WARNING: Do not edit - generated code. | 13055 // WARNING: Do not edit - generated code. |
| 13056 | 13056 |
| 13057 interface CSSValue { | 13057 interface CSSValue { |
| 13058 | 13058 |
| 13059 static final int CSS_CUSTOM = 3; | 13059 static const int CSS_CUSTOM = 3; |
| 13060 | 13060 |
| 13061 static final int CSS_INHERIT = 0; | 13061 static const int CSS_INHERIT = 0; |
| 13062 | 13062 |
| 13063 static final int CSS_PRIMITIVE_VALUE = 1; | 13063 static const int CSS_PRIMITIVE_VALUE = 1; |
| 13064 | 13064 |
| 13065 static final int CSS_VALUE_LIST = 2; | 13065 static const int CSS_VALUE_LIST = 2; |
| 13066 | 13066 |
| 13067 String cssText; | 13067 String cssText; |
| 13068 | 13068 |
| 13069 final int cssValueType; | 13069 final int cssValueType; |
| 13070 } | 13070 } |
| 13071 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13071 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13072 // for details. All rights reserved. Use of this source code is governed by a | 13072 // for details. All rights reserved. Use of this source code is governed by a |
| 13073 // BSD-style license that can be found in the LICENSE file. | 13073 // BSD-style license that can be found in the LICENSE file. |
| 13074 | 13074 |
| 13075 // WARNING: Do not edit - generated code. | 13075 // WARNING: Do not edit - generated code. |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13498 | 13498 |
| 13499 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | 13499 void removeEventListener(String type, EventListener listener, [bool useCapture
]); |
| 13500 | 13500 |
| 13501 void swapCache(); | 13501 void swapCache(); |
| 13502 | 13502 |
| 13503 void update(); | 13503 void update(); |
| 13504 } | 13504 } |
| 13505 | 13505 |
| 13506 interface DOMApplicationCache extends ApplicationCache { | 13506 interface DOMApplicationCache extends ApplicationCache { |
| 13507 | 13507 |
| 13508 static final int CHECKING = 2; | 13508 static const int CHECKING = 2; |
| 13509 | 13509 |
| 13510 static final int DOWNLOADING = 3; | 13510 static const int DOWNLOADING = 3; |
| 13511 | 13511 |
| 13512 static final int IDLE = 1; | 13512 static const int IDLE = 1; |
| 13513 | 13513 |
| 13514 static final int OBSOLETE = 5; | 13514 static const int OBSOLETE = 5; |
| 13515 | 13515 |
| 13516 static final int UNCACHED = 0; | 13516 static const int UNCACHED = 0; |
| 13517 | 13517 |
| 13518 static final int UPDATEREADY = 4; | 13518 static const int UPDATEREADY = 4; |
| 13519 } | 13519 } |
| 13520 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13520 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13521 // for details. All rights reserved. Use of this source code is governed by a | 13521 // for details. All rights reserved. Use of this source code is governed by a |
| 13522 // BSD-style license that can be found in the LICENSE file. | 13522 // BSD-style license that can be found in the LICENSE file. |
| 13523 | 13523 |
| 13524 // WARNING: Do not edit - generated code. | 13524 // WARNING: Do not edit - generated code. |
| 13525 | 13525 |
| 13526 interface DOMError { | 13526 interface DOMError { |
| 13527 | 13527 |
| 13528 final String name; | 13528 final String name; |
| 13529 } | 13529 } |
| 13530 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13530 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13531 // for details. All rights reserved. Use of this source code is governed by a | 13531 // for details. All rights reserved. Use of this source code is governed by a |
| 13532 // BSD-style license that can be found in the LICENSE file. | 13532 // BSD-style license that can be found in the LICENSE file. |
| 13533 | 13533 |
| 13534 // WARNING: Do not edit - generated code. | 13534 // WARNING: Do not edit - generated code. |
| 13535 | 13535 |
| 13536 interface DOMException { | 13536 interface DOMException { |
| 13537 | 13537 |
| 13538 static final int ABORT_ERR = 20; | 13538 static const int ABORT_ERR = 20; |
| 13539 | 13539 |
| 13540 static final int DATA_CLONE_ERR = 25; | 13540 static const int DATA_CLONE_ERR = 25; |
| 13541 | 13541 |
| 13542 static final int DOMSTRING_SIZE_ERR = 2; | 13542 static const int DOMSTRING_SIZE_ERR = 2; |
| 13543 | 13543 |
| 13544 static final int HIERARCHY_REQUEST_ERR = 3; | 13544 static const int HIERARCHY_REQUEST_ERR = 3; |
| 13545 | 13545 |
| 13546 static final int INDEX_SIZE_ERR = 1; | 13546 static const int INDEX_SIZE_ERR = 1; |
| 13547 | 13547 |
| 13548 static final int INUSE_ATTRIBUTE_ERR = 10; | 13548 static const int INUSE_ATTRIBUTE_ERR = 10; |
| 13549 | 13549 |
| 13550 static final int INVALID_ACCESS_ERR = 15; | 13550 static const int INVALID_ACCESS_ERR = 15; |
| 13551 | 13551 |
| 13552 static final int INVALID_CHARACTER_ERR = 5; | 13552 static const int INVALID_CHARACTER_ERR = 5; |
| 13553 | 13553 |
| 13554 static final int INVALID_MODIFICATION_ERR = 13; | 13554 static const int INVALID_MODIFICATION_ERR = 13; |
| 13555 | 13555 |
| 13556 static final int INVALID_NODE_TYPE_ERR = 24; | 13556 static const int INVALID_NODE_TYPE_ERR = 24; |
| 13557 | 13557 |
| 13558 static final int INVALID_STATE_ERR = 11; | 13558 static const int INVALID_STATE_ERR = 11; |
| 13559 | 13559 |
| 13560 static final int NAMESPACE_ERR = 14; | 13560 static const int NAMESPACE_ERR = 14; |
| 13561 | 13561 |
| 13562 static final int NETWORK_ERR = 19; | 13562 static const int NETWORK_ERR = 19; |
| 13563 | 13563 |
| 13564 static final int NOT_FOUND_ERR = 8; | 13564 static const int NOT_FOUND_ERR = 8; |
| 13565 | 13565 |
| 13566 static final int NOT_SUPPORTED_ERR = 9; | 13566 static const int NOT_SUPPORTED_ERR = 9; |
| 13567 | 13567 |
| 13568 static final int NO_DATA_ALLOWED_ERR = 6; | 13568 static const int NO_DATA_ALLOWED_ERR = 6; |
| 13569 | 13569 |
| 13570 static final int NO_MODIFICATION_ALLOWED_ERR = 7; | 13570 static const int NO_MODIFICATION_ALLOWED_ERR = 7; |
| 13571 | 13571 |
| 13572 static final int QUOTA_EXCEEDED_ERR = 22; | 13572 static const int QUOTA_EXCEEDED_ERR = 22; |
| 13573 | 13573 |
| 13574 static final int SECURITY_ERR = 18; | 13574 static const int SECURITY_ERR = 18; |
| 13575 | 13575 |
| 13576 static final int SYNTAX_ERR = 12; | 13576 static const int SYNTAX_ERR = 12; |
| 13577 | 13577 |
| 13578 static final int TIMEOUT_ERR = 23; | 13578 static const int TIMEOUT_ERR = 23; |
| 13579 | 13579 |
| 13580 static final int TYPE_MISMATCH_ERR = 17; | 13580 static const int TYPE_MISMATCH_ERR = 17; |
| 13581 | 13581 |
| 13582 static final int URL_MISMATCH_ERR = 21; | 13582 static const int URL_MISMATCH_ERR = 21; |
| 13583 | 13583 |
| 13584 static final int VALIDATION_ERR = 16; | 13584 static const int VALIDATION_ERR = 16; |
| 13585 | 13585 |
| 13586 static final int WRONG_DOCUMENT_ERR = 4; | 13586 static const int WRONG_DOCUMENT_ERR = 4; |
| 13587 | 13587 |
| 13588 final int code; | 13588 final int code; |
| 13589 | 13589 |
| 13590 final String message; | 13590 final String message; |
| 13591 | 13591 |
| 13592 final String name; | 13592 final String name; |
| 13593 | 13593 |
| 13594 String toString(); | 13594 String toString(); |
| 13595 } | 13595 } |
| 13596 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13596 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14045 | 14045 |
| 14046 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback); | 14046 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback); |
| 14047 | 14047 |
| 14048 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal
lback, [ErrorCallback errorCallback]); | 14048 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal
lback, [ErrorCallback errorCallback]); |
| 14049 | 14049 |
| 14050 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k, ErrorCallback errorCallback]); | 14050 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k, ErrorCallback errorCallback]); |
| 14051 } | 14051 } |
| 14052 | 14052 |
| 14053 interface DOMWindow extends Window { | 14053 interface DOMWindow extends Window { |
| 14054 | 14054 |
| 14055 static final int PERSISTENT = 1; | 14055 static const int PERSISTENT = 1; |
| 14056 | 14056 |
| 14057 static final int TEMPORARY = 0; | 14057 static const int TEMPORARY = 0; |
| 14058 } | 14058 } |
| 14059 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 14059 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 14060 // for details. All rights reserved. Use of this source code is governed by a | 14060 // for details. All rights reserved. Use of this source code is governed by a |
| 14061 // BSD-style license that can be found in the LICENSE file. | 14061 // BSD-style license that can be found in the LICENSE file. |
| 14062 | 14062 |
| 14063 // WARNING: Do not edit - generated code. | 14063 // WARNING: Do not edit - generated code. |
| 14064 | 14064 |
| 14065 interface DataTransferItem { | 14065 interface DataTransferItem { |
| 14066 | 14066 |
| 14067 final String kind; | 14067 final String kind; |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14501 final AudioParam threshold; | 14501 final AudioParam threshold; |
| 14502 } | 14502 } |
| 14503 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 14503 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 14504 // for details. All rights reserved. Use of this source code is governed by a | 14504 // for details. All rights reserved. Use of this source code is governed by a |
| 14505 // BSD-style license that can be found in the LICENSE file. | 14505 // BSD-style license that can be found in the LICENSE file. |
| 14506 | 14506 |
| 14507 // WARNING: Do not edit - generated code. | 14507 // WARNING: Do not edit - generated code. |
| 14508 | 14508 |
| 14509 interface EXTTextureFilterAnisotropic { | 14509 interface EXTTextureFilterAnisotropic { |
| 14510 | 14510 |
| 14511 static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; | 14511 static const int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; |
| 14512 | 14512 |
| 14513 static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; | 14513 static const int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; |
| 14514 } | 14514 } |
| 14515 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 14515 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 14516 // for details. All rights reserved. Use of this source code is governed by a | 14516 // for details. All rights reserved. Use of this source code is governed by a |
| 14517 // BSD-style license that can be found in the LICENSE file. | 14517 // BSD-style license that can be found in the LICENSE file. |
| 14518 | 14518 |
| 14519 // WARNING: Do not edit - generated code. | 14519 // WARNING: Do not edit - generated code. |
| 14520 | 14520 |
| 14521 interface Element extends Node, ElementTraversal { | 14521 interface Element extends Node, ElementTraversal { |
| 14522 | 14522 |
| 14523 static final int ALLOW_KEYBOARD_INPUT = 1; | 14523 static const int ALLOW_KEYBOARD_INPUT = 1; |
| 14524 | 14524 |
| 14525 final int childElementCount; | 14525 final int childElementCount; |
| 14526 | 14526 |
| 14527 final DOMTokenList classList; | 14527 final DOMTokenList classList; |
| 14528 | 14528 |
| 14529 String className; | 14529 String className; |
| 14530 | 14530 |
| 14531 final int clientHeight; | 14531 final int clientHeight; |
| 14532 | 14532 |
| 14533 final int clientLeft; | 14533 final int clientLeft; |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14806 final String message; | 14806 final String message; |
| 14807 } | 14807 } |
| 14808 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 14808 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 14809 // for details. All rights reserved. Use of this source code is governed by a | 14809 // for details. All rights reserved. Use of this source code is governed by a |
| 14810 // BSD-style license that can be found in the LICENSE file. | 14810 // BSD-style license that can be found in the LICENSE file. |
| 14811 | 14811 |
| 14812 // WARNING: Do not edit - generated code. | 14812 // WARNING: Do not edit - generated code. |
| 14813 | 14813 |
| 14814 interface Event { | 14814 interface Event { |
| 14815 | 14815 |
| 14816 static final int AT_TARGET = 2; | 14816 static const int AT_TARGET = 2; |
| 14817 | 14817 |
| 14818 static final int BLUR = 8192; | 14818 static const int BLUR = 8192; |
| 14819 | 14819 |
| 14820 static final int BUBBLING_PHASE = 3; | 14820 static const int BUBBLING_PHASE = 3; |
| 14821 | 14821 |
| 14822 static final int CAPTURING_PHASE = 1; | 14822 static const int CAPTURING_PHASE = 1; |
| 14823 | 14823 |
| 14824 static final int CHANGE = 32768; | 14824 static const int CHANGE = 32768; |
| 14825 | 14825 |
| 14826 static final int CLICK = 64; | 14826 static const int CLICK = 64; |
| 14827 | 14827 |
| 14828 static final int DBLCLICK = 128; | 14828 static const int DBLCLICK = 128; |
| 14829 | 14829 |
| 14830 static final int DRAGDROP = 2048; | 14830 static const int DRAGDROP = 2048; |
| 14831 | 14831 |
| 14832 static final int FOCUS = 4096; | 14832 static const int FOCUS = 4096; |
| 14833 | 14833 |
| 14834 static final int KEYDOWN = 256; | 14834 static const int KEYDOWN = 256; |
| 14835 | 14835 |
| 14836 static final int KEYPRESS = 1024; | 14836 static const int KEYPRESS = 1024; |
| 14837 | 14837 |
| 14838 static final int KEYUP = 512; | 14838 static const int KEYUP = 512; |
| 14839 | 14839 |
| 14840 static final int MOUSEDOWN = 1; | 14840 static const int MOUSEDOWN = 1; |
| 14841 | 14841 |
| 14842 static final int MOUSEDRAG = 32; | 14842 static const int MOUSEDRAG = 32; |
| 14843 | 14843 |
| 14844 static final int MOUSEMOVE = 16; | 14844 static const int MOUSEMOVE = 16; |
| 14845 | 14845 |
| 14846 static final int MOUSEOUT = 8; | 14846 static const int MOUSEOUT = 8; |
| 14847 | 14847 |
| 14848 static final int MOUSEOVER = 4; | 14848 static const int MOUSEOVER = 4; |
| 14849 | 14849 |
| 14850 static final int MOUSEUP = 2; | 14850 static const int MOUSEUP = 2; |
| 14851 | 14851 |
| 14852 static final int NONE = 0; | 14852 static const int NONE = 0; |
| 14853 | 14853 |
| 14854 static final int SELECT = 16384; | 14854 static const int SELECT = 16384; |
| 14855 | 14855 |
| 14856 final bool bubbles; | 14856 final bool bubbles; |
| 14857 | 14857 |
| 14858 bool cancelBubble; | 14858 bool cancelBubble; |
| 14859 | 14859 |
| 14860 final bool cancelable; | 14860 final bool cancelable; |
| 14861 | 14861 |
| 14862 final Clipboard clipboardData; | 14862 final Clipboard clipboardData; |
| 14863 | 14863 |
| 14864 final EventTarget currentTarget; | 14864 final EventTarget currentTarget; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 14886 void stopPropagation(); | 14886 void stopPropagation(); |
| 14887 } | 14887 } |
| 14888 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 14888 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 14889 // for details. All rights reserved. Use of this source code is governed by a | 14889 // for details. All rights reserved. Use of this source code is governed by a |
| 14890 // BSD-style license that can be found in the LICENSE file. | 14890 // BSD-style license that can be found in the LICENSE file. |
| 14891 | 14891 |
| 14892 // WARNING: Do not edit - generated code. | 14892 // WARNING: Do not edit - generated code. |
| 14893 | 14893 |
| 14894 interface EventException { | 14894 interface EventException { |
| 14895 | 14895 |
| 14896 static final int DISPATCH_REQUEST_ERR = 1; | 14896 static const int DISPATCH_REQUEST_ERR = 1; |
| 14897 | 14897 |
| 14898 static final int UNSPECIFIED_EVENT_TYPE_ERR = 0; | 14898 static const int UNSPECIFIED_EVENT_TYPE_ERR = 0; |
| 14899 | 14899 |
| 14900 final int code; | 14900 final int code; |
| 14901 | 14901 |
| 14902 final String message; | 14902 final String message; |
| 14903 | 14903 |
| 14904 final String name; | 14904 final String name; |
| 14905 | 14905 |
| 14906 String toString(); | 14906 String toString(); |
| 14907 } | 14907 } |
| 14908 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 14908 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 14909 // for details. All rights reserved. Use of this source code is governed by a | 14909 // for details. All rights reserved. Use of this source code is governed by a |
| 14910 // BSD-style license that can be found in the LICENSE file. | 14910 // BSD-style license that can be found in the LICENSE file. |
| 14911 | 14911 |
| 14912 // WARNING: Do not edit - generated code. | 14912 // WARNING: Do not edit - generated code. |
| 14913 | 14913 |
| 14914 interface EventSource extends EventTarget default _EventSourceFactoryProvider { | 14914 interface EventSource extends EventTarget default _EventSourceFactoryProvider { |
| 14915 | 14915 |
| 14916 EventSource(String scriptUrl); | 14916 EventSource(String scriptUrl); |
| 14917 | 14917 |
| 14918 static final int CLOSED = 2; | 14918 static const int CLOSED = 2; |
| 14919 | 14919 |
| 14920 static final int CONNECTING = 0; | 14920 static const int CONNECTING = 0; |
| 14921 | 14921 |
| 14922 static final int OPEN = 1; | 14922 static const int OPEN = 1; |
| 14923 | 14923 |
| 14924 final String URL; | 14924 final String URL; |
| 14925 | 14925 |
| 14926 final int readyState; | 14926 final int readyState; |
| 14927 | 14927 |
| 14928 final String url; | 14928 final String url; |
| 14929 | 14929 |
| 14930 void addEventListener(String type, EventListener listener, [bool useCapture]); | 14930 void addEventListener(String type, EventListener listener, [bool useCapture]); |
| 14931 | 14931 |
| 14932 void close(); | 14932 void close(); |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14995 File file(); | 14995 File file(); |
| 14996 } | 14996 } |
| 14997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 14997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 14998 // for details. All rights reserved. Use of this source code is governed by a | 14998 // for details. All rights reserved. Use of this source code is governed by a |
| 14999 // BSD-style license that can be found in the LICENSE file. | 14999 // BSD-style license that can be found in the LICENSE file. |
| 15000 | 15000 |
| 15001 // WARNING: Do not edit - generated code. | 15001 // WARNING: Do not edit - generated code. |
| 15002 | 15002 |
| 15003 interface FileError { | 15003 interface FileError { |
| 15004 | 15004 |
| 15005 static final int ABORT_ERR = 3; | 15005 static const int ABORT_ERR = 3; |
| 15006 | 15006 |
| 15007 static final int ENCODING_ERR = 5; | 15007 static const int ENCODING_ERR = 5; |
| 15008 | 15008 |
| 15009 static final int INVALID_MODIFICATION_ERR = 9; | 15009 static const int INVALID_MODIFICATION_ERR = 9; |
| 15010 | 15010 |
| 15011 static final int INVALID_STATE_ERR = 7; | 15011 static const int INVALID_STATE_ERR = 7; |
| 15012 | 15012 |
| 15013 static final int NOT_FOUND_ERR = 1; | 15013 static const int NOT_FOUND_ERR = 1; |
| 15014 | 15014 |
| 15015 static final int NOT_READABLE_ERR = 4; | 15015 static const int NOT_READABLE_ERR = 4; |
| 15016 | 15016 |
| 15017 static final int NO_MODIFICATION_ALLOWED_ERR = 6; | 15017 static const int NO_MODIFICATION_ALLOWED_ERR = 6; |
| 15018 | 15018 |
| 15019 static final int PATH_EXISTS_ERR = 12; | 15019 static const int PATH_EXISTS_ERR = 12; |
| 15020 | 15020 |
| 15021 static final int QUOTA_EXCEEDED_ERR = 10; | 15021 static const int QUOTA_EXCEEDED_ERR = 10; |
| 15022 | 15022 |
| 15023 static final int SECURITY_ERR = 2; | 15023 static const int SECURITY_ERR = 2; |
| 15024 | 15024 |
| 15025 static final int SYNTAX_ERR = 8; | 15025 static const int SYNTAX_ERR = 8; |
| 15026 | 15026 |
| 15027 static final int TYPE_MISMATCH_ERR = 11; | 15027 static const int TYPE_MISMATCH_ERR = 11; |
| 15028 | 15028 |
| 15029 final int code; | 15029 final int code; |
| 15030 } | 15030 } |
| 15031 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15031 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15032 // for details. All rights reserved. Use of this source code is governed by a | 15032 // for details. All rights reserved. Use of this source code is governed by a |
| 15033 // BSD-style license that can be found in the LICENSE file. | 15033 // BSD-style license that can be found in the LICENSE file. |
| 15034 | 15034 |
| 15035 // WARNING: Do not edit - generated code. | 15035 // WARNING: Do not edit - generated code. |
| 15036 | 15036 |
| 15037 interface FileException { | 15037 interface FileException { |
| 15038 | 15038 |
| 15039 static final int ABORT_ERR = 3; | 15039 static const int ABORT_ERR = 3; |
| 15040 | 15040 |
| 15041 static final int ENCODING_ERR = 5; | 15041 static const int ENCODING_ERR = 5; |
| 15042 | 15042 |
| 15043 static final int INVALID_MODIFICATION_ERR = 9; | 15043 static const int INVALID_MODIFICATION_ERR = 9; |
| 15044 | 15044 |
| 15045 static final int INVALID_STATE_ERR = 7; | 15045 static const int INVALID_STATE_ERR = 7; |
| 15046 | 15046 |
| 15047 static final int NOT_FOUND_ERR = 1; | 15047 static const int NOT_FOUND_ERR = 1; |
| 15048 | 15048 |
| 15049 static final int NOT_READABLE_ERR = 4; | 15049 static const int NOT_READABLE_ERR = 4; |
| 15050 | 15050 |
| 15051 static final int NO_MODIFICATION_ALLOWED_ERR = 6; | 15051 static const int NO_MODIFICATION_ALLOWED_ERR = 6; |
| 15052 | 15052 |
| 15053 static final int PATH_EXISTS_ERR = 12; | 15053 static const int PATH_EXISTS_ERR = 12; |
| 15054 | 15054 |
| 15055 static final int QUOTA_EXCEEDED_ERR = 10; | 15055 static const int QUOTA_EXCEEDED_ERR = 10; |
| 15056 | 15056 |
| 15057 static final int SECURITY_ERR = 2; | 15057 static const int SECURITY_ERR = 2; |
| 15058 | 15058 |
| 15059 static final int SYNTAX_ERR = 8; | 15059 static const int SYNTAX_ERR = 8; |
| 15060 | 15060 |
| 15061 static final int TYPE_MISMATCH_ERR = 11; | 15061 static const int TYPE_MISMATCH_ERR = 11; |
| 15062 | 15062 |
| 15063 final int code; | 15063 final int code; |
| 15064 | 15064 |
| 15065 final String message; | 15065 final String message; |
| 15066 | 15066 |
| 15067 final String name; | 15067 final String name; |
| 15068 | 15068 |
| 15069 String toString(); | 15069 String toString(); |
| 15070 } | 15070 } |
| 15071 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15071 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 11 matching lines...) Expand all Loading... |
| 15083 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15083 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15084 // for details. All rights reserved. Use of this source code is governed by a | 15084 // for details. All rights reserved. Use of this source code is governed by a |
| 15085 // BSD-style license that can be found in the LICENSE file. | 15085 // BSD-style license that can be found in the LICENSE file. |
| 15086 | 15086 |
| 15087 // WARNING: Do not edit - generated code. | 15087 // WARNING: Do not edit - generated code. |
| 15088 | 15088 |
| 15089 interface FileReader extends EventTarget default _FileReaderFactoryProvider { | 15089 interface FileReader extends EventTarget default _FileReaderFactoryProvider { |
| 15090 | 15090 |
| 15091 FileReader(); | 15091 FileReader(); |
| 15092 | 15092 |
| 15093 static final int DONE = 2; | 15093 static const int DONE = 2; |
| 15094 | 15094 |
| 15095 static final int EMPTY = 0; | 15095 static const int EMPTY = 0; |
| 15096 | 15096 |
| 15097 static final int LOADING = 1; | 15097 static const int LOADING = 1; |
| 15098 | 15098 |
| 15099 final FileError error; | 15099 final FileError error; |
| 15100 | 15100 |
| 15101 final int readyState; | 15101 final int readyState; |
| 15102 | 15102 |
| 15103 final Object result; | 15103 final Object result; |
| 15104 | 15104 |
| 15105 void abort(); | 15105 void abort(); |
| 15106 | 15106 |
| 15107 void addEventListener(String type, EventListener listener, [bool useCapture]); | 15107 void addEventListener(String type, EventListener listener, [bool useCapture]); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15144 | 15144 |
| 15145 typedef bool FileSystemCallback(DOMFileSystem fileSystem); | 15145 typedef bool FileSystemCallback(DOMFileSystem fileSystem); |
| 15146 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15146 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15147 // for details. All rights reserved. Use of this source code is governed by a | 15147 // for details. All rights reserved. Use of this source code is governed by a |
| 15148 // BSD-style license that can be found in the LICENSE file. | 15148 // BSD-style license that can be found in the LICENSE file. |
| 15149 | 15149 |
| 15150 // WARNING: Do not edit - generated code. | 15150 // WARNING: Do not edit - generated code. |
| 15151 | 15151 |
| 15152 interface FileWriter extends EventTarget { | 15152 interface FileWriter extends EventTarget { |
| 15153 | 15153 |
| 15154 static final int DONE = 2; | 15154 static const int DONE = 2; |
| 15155 | 15155 |
| 15156 static final int INIT = 0; | 15156 static const int INIT = 0; |
| 15157 | 15157 |
| 15158 static final int WRITING = 1; | 15158 static const int WRITING = 1; |
| 15159 | 15159 |
| 15160 final FileError error; | 15160 final FileError error; |
| 15161 | 15161 |
| 15162 final int length; | 15162 final int length; |
| 15163 | 15163 |
| 15164 final int position; | 15164 final int position; |
| 15165 | 15165 |
| 15166 final int readyState; | 15166 final int readyState; |
| 15167 | 15167 |
| 15168 void abort(); | 15168 void abort(); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15211 // WARNING: Do not edit - generated code. | 15211 // WARNING: Do not edit - generated code. |
| 15212 | 15212 |
| 15213 interface Float32Array extends ArrayBufferView, List<num> default _TypedArrayFac
toryProvider { | 15213 interface Float32Array extends ArrayBufferView, List<num> default _TypedArrayFac
toryProvider { |
| 15214 | 15214 |
| 15215 Float32Array(int length); | 15215 Float32Array(int length); |
| 15216 | 15216 |
| 15217 Float32Array.fromList(List<num> list); | 15217 Float32Array.fromList(List<num> list); |
| 15218 | 15218 |
| 15219 Float32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); | 15219 Float32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); |
| 15220 | 15220 |
| 15221 static final int BYTES_PER_ELEMENT = 4; | 15221 static const int BYTES_PER_ELEMENT = 4; |
| 15222 | 15222 |
| 15223 final int length; | 15223 final int length; |
| 15224 | 15224 |
| 15225 void setElements(Object array, [int offset]); | 15225 void setElements(Object array, [int offset]); |
| 15226 | 15226 |
| 15227 Float32Array subarray(int start, [int end]); | 15227 Float32Array subarray(int start, [int end]); |
| 15228 } | 15228 } |
| 15229 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15229 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15230 // for details. All rights reserved. Use of this source code is governed by a | 15230 // for details. All rights reserved. Use of this source code is governed by a |
| 15231 // BSD-style license that can be found in the LICENSE file. | 15231 // BSD-style license that can be found in the LICENSE file. |
| 15232 | 15232 |
| 15233 // WARNING: Do not edit - generated code. | 15233 // WARNING: Do not edit - generated code. |
| 15234 | 15234 |
| 15235 interface Float64Array extends ArrayBufferView, List<num> default _TypedArrayFac
toryProvider { | 15235 interface Float64Array extends ArrayBufferView, List<num> default _TypedArrayFac
toryProvider { |
| 15236 | 15236 |
| 15237 Float64Array(int length); | 15237 Float64Array(int length); |
| 15238 | 15238 |
| 15239 Float64Array.fromList(List<num> list); | 15239 Float64Array.fromList(List<num> list); |
| 15240 | 15240 |
| 15241 Float64Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); | 15241 Float64Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); |
| 15242 | 15242 |
| 15243 static final int BYTES_PER_ELEMENT = 8; | 15243 static const int BYTES_PER_ELEMENT = 8; |
| 15244 | 15244 |
| 15245 final int length; | 15245 final int length; |
| 15246 | 15246 |
| 15247 void setElements(Object array, [int offset]); | 15247 void setElements(Object array, [int offset]); |
| 15248 | 15248 |
| 15249 Float64Array subarray(int start, [int end]); | 15249 Float64Array subarray(int start, [int end]); |
| 15250 } | 15250 } |
| 15251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15252 // for details. All rights reserved. Use of this source code is governed by a | 15252 // for details. All rights reserved. Use of this source code is governed by a |
| 15253 // BSD-style license that can be found in the LICENSE file. | 15253 // BSD-style license that can be found in the LICENSE file. |
| (...skipping 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16291 void stop(); | 16291 void stop(); |
| 16292 } | 16292 } |
| 16293 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 16293 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 16294 // for details. All rights reserved. Use of this source code is governed by a | 16294 // for details. All rights reserved. Use of this source code is governed by a |
| 16295 // BSD-style license that can be found in the LICENSE file. | 16295 // BSD-style license that can be found in the LICENSE file. |
| 16296 | 16296 |
| 16297 // WARNING: Do not edit - generated code. | 16297 // WARNING: Do not edit - generated code. |
| 16298 | 16298 |
| 16299 interface HTMLMediaElement extends HTMLElement { | 16299 interface HTMLMediaElement extends HTMLElement { |
| 16300 | 16300 |
| 16301 static final int HAVE_CURRENT_DATA = 2; | 16301 static const int HAVE_CURRENT_DATA = 2; |
| 16302 | 16302 |
| 16303 static final int HAVE_ENOUGH_DATA = 4; | 16303 static const int HAVE_ENOUGH_DATA = 4; |
| 16304 | 16304 |
| 16305 static final int HAVE_FUTURE_DATA = 3; | 16305 static const int HAVE_FUTURE_DATA = 3; |
| 16306 | 16306 |
| 16307 static final int HAVE_METADATA = 1; | 16307 static const int HAVE_METADATA = 1; |
| 16308 | 16308 |
| 16309 static final int HAVE_NOTHING = 0; | 16309 static const int HAVE_NOTHING = 0; |
| 16310 | 16310 |
| 16311 static final int NETWORK_EMPTY = 0; | 16311 static const int NETWORK_EMPTY = 0; |
| 16312 | 16312 |
| 16313 static final int NETWORK_IDLE = 1; | 16313 static const int NETWORK_IDLE = 1; |
| 16314 | 16314 |
| 16315 static final int NETWORK_LOADING = 2; | 16315 static const int NETWORK_LOADING = 2; |
| 16316 | 16316 |
| 16317 static final int NETWORK_NO_SOURCE = 3; | 16317 static const int NETWORK_NO_SOURCE = 3; |
| 16318 | 16318 |
| 16319 bool autoplay; | 16319 bool autoplay; |
| 16320 | 16320 |
| 16321 final TimeRanges buffered; | 16321 final TimeRanges buffered; |
| 16322 | 16322 |
| 16323 MediaController controller; | 16323 MediaController controller; |
| 16324 | 16324 |
| 16325 bool controls; | 16325 bool controls; |
| 16326 | 16326 |
| 16327 final String currentSrc; | 16327 final String currentSrc; |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17049 String text; | 17049 String text; |
| 17050 } | 17050 } |
| 17051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17052 // for details. All rights reserved. Use of this source code is governed by a | 17052 // for details. All rights reserved. Use of this source code is governed by a |
| 17053 // BSD-style license that can be found in the LICENSE file. | 17053 // BSD-style license that can be found in the LICENSE file. |
| 17054 | 17054 |
| 17055 // WARNING: Do not edit - generated code. | 17055 // WARNING: Do not edit - generated code. |
| 17056 | 17056 |
| 17057 interface HTMLTrackElement extends HTMLElement { | 17057 interface HTMLTrackElement extends HTMLElement { |
| 17058 | 17058 |
| 17059 static final int ERROR = 3; | 17059 static const int ERROR = 3; |
| 17060 | 17060 |
| 17061 static final int LOADED = 2; | 17061 static const int LOADED = 2; |
| 17062 | 17062 |
| 17063 static final int LOADING = 1; | 17063 static const int LOADING = 1; |
| 17064 | 17064 |
| 17065 static final int NONE = 0; | 17065 static const int NONE = 0; |
| 17066 | 17066 |
| 17067 bool defaultValue; | 17067 bool defaultValue; |
| 17068 | 17068 |
| 17069 String kind; | 17069 String kind; |
| 17070 | 17070 |
| 17071 String label; | 17071 String label; |
| 17072 | 17072 |
| 17073 final int readyState; | 17073 final int readyState; |
| 17074 | 17074 |
| 17075 String src; | 17075 String src; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17177 interface IDBAny { | 17177 interface IDBAny { |
| 17178 } | 17178 } |
| 17179 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17179 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17180 // for details. All rights reserved. Use of this source code is governed by a | 17180 // for details. All rights reserved. Use of this source code is governed by a |
| 17181 // BSD-style license that can be found in the LICENSE file. | 17181 // BSD-style license that can be found in the LICENSE file. |
| 17182 | 17182 |
| 17183 // WARNING: Do not edit - generated code. | 17183 // WARNING: Do not edit - generated code. |
| 17184 | 17184 |
| 17185 interface IDBCursor { | 17185 interface IDBCursor { |
| 17186 | 17186 |
| 17187 static final int NEXT = 0; | 17187 static const int NEXT = 0; |
| 17188 | 17188 |
| 17189 static final int NEXT_NO_DUPLICATE = 1; | 17189 static const int NEXT_NO_DUPLICATE = 1; |
| 17190 | 17190 |
| 17191 static final int PREV = 2; | 17191 static const int PREV = 2; |
| 17192 | 17192 |
| 17193 static final int PREV_NO_DUPLICATE = 3; | 17193 static const int PREV_NO_DUPLICATE = 3; |
| 17194 | 17194 |
| 17195 final String direction; | 17195 final String direction; |
| 17196 | 17196 |
| 17197 final /*IDBKey*/ key; | 17197 final /*IDBKey*/ key; |
| 17198 | 17198 |
| 17199 final /*IDBKey*/ primaryKey; | 17199 final /*IDBKey*/ primaryKey; |
| 17200 | 17200 |
| 17201 final /*IDBAny*/ source; | 17201 final /*IDBAny*/ source; |
| 17202 | 17202 |
| 17203 void advance(int count); | 17203 void advance(int count); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17249 IDBTransaction transaction(storeName_OR_storeNames, String mode); | 17249 IDBTransaction transaction(storeName_OR_storeNames, String mode); |
| 17250 } | 17250 } |
| 17251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17252 // for details. All rights reserved. Use of this source code is governed by a | 17252 // for details. All rights reserved. Use of this source code is governed by a |
| 17253 // BSD-style license that can be found in the LICENSE file. | 17253 // BSD-style license that can be found in the LICENSE file. |
| 17254 | 17254 |
| 17255 // WARNING: Do not edit - generated code. | 17255 // WARNING: Do not edit - generated code. |
| 17256 | 17256 |
| 17257 interface IDBDatabaseException { | 17257 interface IDBDatabaseException { |
| 17258 | 17258 |
| 17259 static final int ABORT_ERR = 20; | 17259 static const int ABORT_ERR = 20; |
| 17260 | 17260 |
| 17261 static final int CONSTRAINT_ERR = 4; | 17261 static const int CONSTRAINT_ERR = 4; |
| 17262 | 17262 |
| 17263 static final int DATA_ERR = 5; | 17263 static const int DATA_ERR = 5; |
| 17264 | 17264 |
| 17265 static final int NON_TRANSIENT_ERR = 2; | 17265 static const int NON_TRANSIENT_ERR = 2; |
| 17266 | 17266 |
| 17267 static final int NOT_ALLOWED_ERR = 6; | 17267 static const int NOT_ALLOWED_ERR = 6; |
| 17268 | 17268 |
| 17269 static final int NOT_FOUND_ERR = 8; | 17269 static const int NOT_FOUND_ERR = 8; |
| 17270 | 17270 |
| 17271 static final int NO_ERR = 0; | 17271 static const int NO_ERR = 0; |
| 17272 | 17272 |
| 17273 static final int QUOTA_ERR = 22; | 17273 static const int QUOTA_ERR = 22; |
| 17274 | 17274 |
| 17275 static final int READ_ONLY_ERR = 9; | 17275 static const int READ_ONLY_ERR = 9; |
| 17276 | 17276 |
| 17277 static final int TIMEOUT_ERR = 23; | 17277 static const int TIMEOUT_ERR = 23; |
| 17278 | 17278 |
| 17279 static final int TRANSACTION_INACTIVE_ERR = 7; | 17279 static const int TRANSACTION_INACTIVE_ERR = 7; |
| 17280 | 17280 |
| 17281 static final int UNKNOWN_ERR = 1; | 17281 static const int UNKNOWN_ERR = 1; |
| 17282 | 17282 |
| 17283 static final int VER_ERR = 12; | 17283 static const int VER_ERR = 12; |
| 17284 | 17284 |
| 17285 final int code; | 17285 final int code; |
| 17286 | 17286 |
| 17287 final String message; | 17287 final String message; |
| 17288 | 17288 |
| 17289 final String name; | 17289 final String name; |
| 17290 | 17290 |
| 17291 String toString(); | 17291 String toString(); |
| 17292 } | 17292 } |
| 17293 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17293 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17443 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | 17443 void removeEventListener(String type, EventListener listener, [bool useCapture
]); |
| 17444 } | 17444 } |
| 17445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17446 // for details. All rights reserved. Use of this source code is governed by a | 17446 // for details. All rights reserved. Use of this source code is governed by a |
| 17447 // BSD-style license that can be found in the LICENSE file. | 17447 // BSD-style license that can be found in the LICENSE file. |
| 17448 | 17448 |
| 17449 // WARNING: Do not edit - generated code. | 17449 // WARNING: Do not edit - generated code. |
| 17450 | 17450 |
| 17451 interface IDBTransaction extends EventTarget { | 17451 interface IDBTransaction extends EventTarget { |
| 17452 | 17452 |
| 17453 static final int READ_ONLY = 0; | 17453 static const int READ_ONLY = 0; |
| 17454 | 17454 |
| 17455 static final int READ_WRITE = 1; | 17455 static const int READ_WRITE = 1; |
| 17456 | 17456 |
| 17457 static final int VERSION_CHANGE = 2; | 17457 static const int VERSION_CHANGE = 2; |
| 17458 | 17458 |
| 17459 final IDBDatabase db; | 17459 final IDBDatabase db; |
| 17460 | 17460 |
| 17461 final DOMError error; | 17461 final DOMError error; |
| 17462 | 17462 |
| 17463 final String mode; | 17463 final String mode; |
| 17464 | 17464 |
| 17465 void abort(); | 17465 void abort(); |
| 17466 | 17466 |
| 17467 void addEventListener(String type, EventListener listener, [bool useCapture]); | 17467 void addEventListener(String type, EventListener listener, [bool useCapture]); |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17544 // WARNING: Do not edit - generated code. | 17544 // WARNING: Do not edit - generated code. |
| 17545 | 17545 |
| 17546 interface Int16Array extends ArrayBufferView, List<int> default _TypedArrayFacto
ryProvider { | 17546 interface Int16Array extends ArrayBufferView, List<int> default _TypedArrayFacto
ryProvider { |
| 17547 | 17547 |
| 17548 Int16Array(int length); | 17548 Int16Array(int length); |
| 17549 | 17549 |
| 17550 Int16Array.fromList(List<int> list); | 17550 Int16Array.fromList(List<int> list); |
| 17551 | 17551 |
| 17552 Int16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); | 17552 Int16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); |
| 17553 | 17553 |
| 17554 static final int BYTES_PER_ELEMENT = 2; | 17554 static const int BYTES_PER_ELEMENT = 2; |
| 17555 | 17555 |
| 17556 final int length; | 17556 final int length; |
| 17557 | 17557 |
| 17558 void setElements(Object array, [int offset]); | 17558 void setElements(Object array, [int offset]); |
| 17559 | 17559 |
| 17560 Int16Array subarray(int start, [int end]); | 17560 Int16Array subarray(int start, [int end]); |
| 17561 } | 17561 } |
| 17562 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17562 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17563 // for details. All rights reserved. Use of this source code is governed by a | 17563 // for details. All rights reserved. Use of this source code is governed by a |
| 17564 // BSD-style license that can be found in the LICENSE file. | 17564 // BSD-style license that can be found in the LICENSE file. |
| 17565 | 17565 |
| 17566 // WARNING: Do not edit - generated code. | 17566 // WARNING: Do not edit - generated code. |
| 17567 | 17567 |
| 17568 interface Int32Array extends ArrayBufferView, List<int> default _TypedArrayFacto
ryProvider { | 17568 interface Int32Array extends ArrayBufferView, List<int> default _TypedArrayFacto
ryProvider { |
| 17569 | 17569 |
| 17570 Int32Array(int length); | 17570 Int32Array(int length); |
| 17571 | 17571 |
| 17572 Int32Array.fromList(List<int> list); | 17572 Int32Array.fromList(List<int> list); |
| 17573 | 17573 |
| 17574 Int32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); | 17574 Int32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); |
| 17575 | 17575 |
| 17576 static final int BYTES_PER_ELEMENT = 4; | 17576 static const int BYTES_PER_ELEMENT = 4; |
| 17577 | 17577 |
| 17578 final int length; | 17578 final int length; |
| 17579 | 17579 |
| 17580 void setElements(Object array, [int offset]); | 17580 void setElements(Object array, [int offset]); |
| 17581 | 17581 |
| 17582 Int32Array subarray(int start, [int end]); | 17582 Int32Array subarray(int start, [int end]); |
| 17583 } | 17583 } |
| 17584 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17584 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17585 // for details. All rights reserved. Use of this source code is governed by a | 17585 // for details. All rights reserved. Use of this source code is governed by a |
| 17586 // BSD-style license that can be found in the LICENSE file. | 17586 // BSD-style license that can be found in the LICENSE file. |
| 17587 | 17587 |
| 17588 // WARNING: Do not edit - generated code. | 17588 // WARNING: Do not edit - generated code. |
| 17589 | 17589 |
| 17590 interface Int8Array extends ArrayBufferView, List<int> default _TypedArrayFactor
yProvider { | 17590 interface Int8Array extends ArrayBufferView, List<int> default _TypedArrayFactor
yProvider { |
| 17591 | 17591 |
| 17592 Int8Array(int length); | 17592 Int8Array(int length); |
| 17593 | 17593 |
| 17594 Int8Array.fromList(List<int> list); | 17594 Int8Array.fromList(List<int> list); |
| 17595 | 17595 |
| 17596 Int8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); | 17596 Int8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); |
| 17597 | 17597 |
| 17598 static final int BYTES_PER_ELEMENT = 1; | 17598 static const int BYTES_PER_ELEMENT = 1; |
| 17599 | 17599 |
| 17600 final int length; | 17600 final int length; |
| 17601 | 17601 |
| 17602 void setElements(Object array, [int offset]); | 17602 void setElements(Object array, [int offset]); |
| 17603 | 17603 |
| 17604 Int8Array subarray(int start, [int end]); | 17604 Int8Array subarray(int start, [int end]); |
| 17605 } | 17605 } |
| 17606 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17606 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17607 // for details. All rights reserved. Use of this source code is governed by a | 17607 // for details. All rights reserved. Use of this source code is governed by a |
| 17608 // BSD-style license that can be found in the LICENSE file. | 17608 // BSD-style license that can be found in the LICENSE file. |
| 17609 | 17609 |
| 17610 // WARNING: Do not edit - generated code. | 17610 // WARNING: Do not edit - generated code. |
| 17611 | 17611 |
| 17612 interface JavaScriptAudioNode extends AudioNode, EventTarget { | 17612 interface JavaScriptAudioNode extends AudioNode, EventTarget { |
| 17613 | 17613 |
| 17614 final int bufferSize; | 17614 final int bufferSize; |
| 17615 } | 17615 } |
| 17616 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17616 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17617 // for details. All rights reserved. Use of this source code is governed by a | 17617 // for details. All rights reserved. Use of this source code is governed by a |
| 17618 // BSD-style license that can be found in the LICENSE file. | 17618 // BSD-style license that can be found in the LICENSE file. |
| 17619 | 17619 |
| 17620 // WARNING: Do not edit - generated code. | 17620 // WARNING: Do not edit - generated code. |
| 17621 | 17621 |
| 17622 interface JavaScriptCallFrame { | 17622 interface JavaScriptCallFrame { |
| 17623 | 17623 |
| 17624 static final int CATCH_SCOPE = 4; | 17624 static const int CATCH_SCOPE = 4; |
| 17625 | 17625 |
| 17626 static final int CLOSURE_SCOPE = 3; | 17626 static const int CLOSURE_SCOPE = 3; |
| 17627 | 17627 |
| 17628 static final int GLOBAL_SCOPE = 0; | 17628 static const int GLOBAL_SCOPE = 0; |
| 17629 | 17629 |
| 17630 static final int LOCAL_SCOPE = 1; | 17630 static const int LOCAL_SCOPE = 1; |
| 17631 | 17631 |
| 17632 static final int WITH_SCOPE = 2; | 17632 static const int WITH_SCOPE = 2; |
| 17633 | 17633 |
| 17634 final JavaScriptCallFrame caller; | 17634 final JavaScriptCallFrame caller; |
| 17635 | 17635 |
| 17636 final int column; | 17636 final int column; |
| 17637 | 17637 |
| 17638 final String functionName; | 17638 final String functionName; |
| 17639 | 17639 |
| 17640 final int line; | 17640 final int line; |
| 17641 | 17641 |
| 17642 final List scopeChain; | 17642 final List scopeChain; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17774 final HTMLMediaElement mediaElement; | 17774 final HTMLMediaElement mediaElement; |
| 17775 } | 17775 } |
| 17776 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17776 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17777 // for details. All rights reserved. Use of this source code is governed by a | 17777 // for details. All rights reserved. Use of this source code is governed by a |
| 17778 // BSD-style license that can be found in the LICENSE file. | 17778 // BSD-style license that can be found in the LICENSE file. |
| 17779 | 17779 |
| 17780 // WARNING: Do not edit - generated code. | 17780 // WARNING: Do not edit - generated code. |
| 17781 | 17781 |
| 17782 interface MediaError { | 17782 interface MediaError { |
| 17783 | 17783 |
| 17784 static final int MEDIA_ERR_ABORTED = 1; | 17784 static const int MEDIA_ERR_ABORTED = 1; |
| 17785 | 17785 |
| 17786 static final int MEDIA_ERR_DECODE = 3; | 17786 static const int MEDIA_ERR_DECODE = 3; |
| 17787 | 17787 |
| 17788 static final int MEDIA_ERR_ENCRYPTED = 5; | 17788 static const int MEDIA_ERR_ENCRYPTED = 5; |
| 17789 | 17789 |
| 17790 static final int MEDIA_ERR_NETWORK = 2; | 17790 static const int MEDIA_ERR_NETWORK = 2; |
| 17791 | 17791 |
| 17792 static final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4; | 17792 static const int MEDIA_ERR_SRC_NOT_SUPPORTED = 4; |
| 17793 | 17793 |
| 17794 final int code; | 17794 final int code; |
| 17795 } | 17795 } |
| 17796 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17796 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17797 // for details. All rights reserved. Use of this source code is governed by a | 17797 // for details. All rights reserved. Use of this source code is governed by a |
| 17798 // BSD-style license that can be found in the LICENSE file. | 17798 // BSD-style license that can be found in the LICENSE file. |
| 17799 | 17799 |
| 17800 // WARNING: Do not edit - generated code. | 17800 // WARNING: Do not edit - generated code. |
| 17801 | 17801 |
| 17802 interface MediaKeyError { | 17802 interface MediaKeyError { |
| 17803 | 17803 |
| 17804 static final int MEDIA_KEYERR_CLIENT = 2; | 17804 static const int MEDIA_KEYERR_CLIENT = 2; |
| 17805 | 17805 |
| 17806 static final int MEDIA_KEYERR_DOMAIN = 6; | 17806 static const int MEDIA_KEYERR_DOMAIN = 6; |
| 17807 | 17807 |
| 17808 static final int MEDIA_KEYERR_HARDWARECHANGE = 5; | 17808 static const int MEDIA_KEYERR_HARDWARECHANGE = 5; |
| 17809 | 17809 |
| 17810 static final int MEDIA_KEYERR_OUTPUT = 4; | 17810 static const int MEDIA_KEYERR_OUTPUT = 4; |
| 17811 | 17811 |
| 17812 static final int MEDIA_KEYERR_SERVICE = 3; | 17812 static const int MEDIA_KEYERR_SERVICE = 3; |
| 17813 | 17813 |
| 17814 static final int MEDIA_KEYERR_UNKNOWN = 1; | 17814 static const int MEDIA_KEYERR_UNKNOWN = 1; |
| 17815 | 17815 |
| 17816 final int code; | 17816 final int code; |
| 17817 } | 17817 } |
| 17818 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17818 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17819 // for details. All rights reserved. Use of this source code is governed by a | 17819 // for details. All rights reserved. Use of this source code is governed by a |
| 17820 // BSD-style license that can be found in the LICENSE file. | 17820 // BSD-style license that can be found in the LICENSE file. |
| 17821 | 17821 |
| 17822 // WARNING: Do not edit - generated code. | 17822 // WARNING: Do not edit - generated code. |
| 17823 | 17823 |
| 17824 interface MediaKeyEvent extends Event { | 17824 interface MediaKeyEvent extends Event { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17913 // for details. All rights reserved. Use of this source code is governed by a | 17913 // for details. All rights reserved. Use of this source code is governed by a |
| 17914 // BSD-style license that can be found in the LICENSE file. | 17914 // BSD-style license that can be found in the LICENSE file. |
| 17915 | 17915 |
| 17916 // WARNING: Do not edit - generated code. | 17916 // WARNING: Do not edit - generated code. |
| 17917 | 17917 |
| 17918 interface MediaStream extends EventTarget default _MediaStreamFactoryProvider { | 17918 interface MediaStream extends EventTarget default _MediaStreamFactoryProvider { |
| 17919 | 17919 |
| 17920 MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks
); | 17920 MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks
); |
| 17921 | 17921 |
| 17922 static final int ENDED = 2; | 17922 static const int ENDED = 2; |
| 17923 | 17923 |
| 17924 static final int LIVE = 1; | 17924 static const int LIVE = 1; |
| 17925 | 17925 |
| 17926 final MediaStreamTrackList audioTracks; | 17926 final MediaStreamTrackList audioTracks; |
| 17927 | 17927 |
| 17928 final String label; | 17928 final String label; |
| 17929 | 17929 |
| 17930 final int readyState; | 17930 final int readyState; |
| 17931 | 17931 |
| 17932 final MediaStreamTrackList videoTracks; | 17932 final MediaStreamTrackList videoTracks; |
| 17933 | 17933 |
| 17934 void addEventListener(String type, EventListener listener, [bool useCapture]); | 17934 void addEventListener(String type, EventListener listener, [bool useCapture]); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17970 MediaStream item(int index); | 17970 MediaStream item(int index); |
| 17971 } | 17971 } |
| 17972 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17972 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17973 // for details. All rights reserved. Use of this source code is governed by a | 17973 // for details. All rights reserved. Use of this source code is governed by a |
| 17974 // BSD-style license that can be found in the LICENSE file. | 17974 // BSD-style license that can be found in the LICENSE file. |
| 17975 | 17975 |
| 17976 // WARNING: Do not edit - generated code. | 17976 // WARNING: Do not edit - generated code. |
| 17977 | 17977 |
| 17978 interface MediaStreamTrack extends EventTarget { | 17978 interface MediaStreamTrack extends EventTarget { |
| 17979 | 17979 |
| 17980 static final int ENDED = 2; | 17980 static const int ENDED = 2; |
| 17981 | 17981 |
| 17982 static final int LIVE = 0; | 17982 static const int LIVE = 0; |
| 17983 | 17983 |
| 17984 static final int MUTED = 1; | 17984 static const int MUTED = 1; |
| 17985 | 17985 |
| 17986 bool enabled; | 17986 bool enabled; |
| 17987 | 17987 |
| 17988 final String kind; | 17988 final String kind; |
| 17989 | 17989 |
| 17990 final String label; | 17990 final String label; |
| 17991 | 17991 |
| 17992 final int readyState; | 17992 final int readyState; |
| 17993 | 17993 |
| 17994 void addEventListener(String type, EventListener listener, [bool useCapture]); | 17994 void addEventListener(String type, EventListener listener, [bool useCapture]); |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18176 | 18176 |
| 18177 typedef bool MutationCallback(List<MutationRecord> mutations, MutationObserver o
bserver); | 18177 typedef bool MutationCallback(List<MutationRecord> mutations, MutationObserver o
bserver); |
| 18178 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18178 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18179 // for details. All rights reserved. Use of this source code is governed by a | 18179 // for details. All rights reserved. Use of this source code is governed by a |
| 18180 // BSD-style license that can be found in the LICENSE file. | 18180 // BSD-style license that can be found in the LICENSE file. |
| 18181 | 18181 |
| 18182 // WARNING: Do not edit - generated code. | 18182 // WARNING: Do not edit - generated code. |
| 18183 | 18183 |
| 18184 interface MutationEvent extends Event { | 18184 interface MutationEvent extends Event { |
| 18185 | 18185 |
| 18186 static final int ADDITION = 2; | 18186 static const int ADDITION = 2; |
| 18187 | 18187 |
| 18188 static final int MODIFICATION = 1; | 18188 static const int MODIFICATION = 1; |
| 18189 | 18189 |
| 18190 static final int REMOVAL = 3; | 18190 static const int REMOVAL = 3; |
| 18191 | 18191 |
| 18192 final int attrChange; | 18192 final int attrChange; |
| 18193 | 18193 |
| 18194 final String attrName; | 18194 final String attrName; |
| 18195 | 18195 |
| 18196 final String newValue; | 18196 final String newValue; |
| 18197 | 18197 |
| 18198 final String prevValue; | 18198 final String prevValue; |
| 18199 | 18199 |
| 18200 final Node relatedNode; | 18200 final Node relatedNode; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18316 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success
Callback, [NavigatorUserMediaErrorCallback errorCallback]); | 18316 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success
Callback, [NavigatorUserMediaErrorCallback errorCallback]); |
| 18317 } | 18317 } |
| 18318 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18318 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18319 // for details. All rights reserved. Use of this source code is governed by a | 18319 // for details. All rights reserved. Use of this source code is governed by a |
| 18320 // BSD-style license that can be found in the LICENSE file. | 18320 // BSD-style license that can be found in the LICENSE file. |
| 18321 | 18321 |
| 18322 // WARNING: Do not edit - generated code. | 18322 // WARNING: Do not edit - generated code. |
| 18323 | 18323 |
| 18324 interface NavigatorUserMediaError { | 18324 interface NavigatorUserMediaError { |
| 18325 | 18325 |
| 18326 static final int PERMISSION_DENIED = 1; | 18326 static const int PERMISSION_DENIED = 1; |
| 18327 | 18327 |
| 18328 final int code; | 18328 final int code; |
| 18329 } | 18329 } |
| 18330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18331 // for details. All rights reserved. Use of this source code is governed by a | 18331 // for details. All rights reserved. Use of this source code is governed by a |
| 18332 // BSD-style license that can be found in the LICENSE file. | 18332 // BSD-style license that can be found in the LICENSE file. |
| 18333 | 18333 |
| 18334 // WARNING: Do not edit - generated code. | 18334 // WARNING: Do not edit - generated code. |
| 18335 | 18335 |
| 18336 typedef bool NavigatorUserMediaErrorCallback(NavigatorUserMediaError error); | 18336 typedef bool NavigatorUserMediaErrorCallback(NavigatorUserMediaError error); |
| 18337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18338 // for details. All rights reserved. Use of this source code is governed by a | 18338 // for details. All rights reserved. Use of this source code is governed by a |
| 18339 // BSD-style license that can be found in the LICENSE file. | 18339 // BSD-style license that can be found in the LICENSE file. |
| 18340 | 18340 |
| 18341 // WARNING: Do not edit - generated code. | 18341 // WARNING: Do not edit - generated code. |
| 18342 | 18342 |
| 18343 typedef bool NavigatorUserMediaSuccessCallback(LocalMediaStream stream); | 18343 typedef bool NavigatorUserMediaSuccessCallback(LocalMediaStream stream); |
| 18344 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18344 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18345 // for details. All rights reserved. Use of this source code is governed by a | 18345 // for details. All rights reserved. Use of this source code is governed by a |
| 18346 // BSD-style license that can be found in the LICENSE file. | 18346 // BSD-style license that can be found in the LICENSE file. |
| 18347 | 18347 |
| 18348 // WARNING: Do not edit - generated code. | 18348 // WARNING: Do not edit - generated code. |
| 18349 | 18349 |
| 18350 interface Node extends EventTarget { | 18350 interface Node extends EventTarget { |
| 18351 | 18351 |
| 18352 static final int ATTRIBUTE_NODE = 2; | 18352 static const int ATTRIBUTE_NODE = 2; |
| 18353 | 18353 |
| 18354 static final int CDATA_SECTION_NODE = 4; | 18354 static const int CDATA_SECTION_NODE = 4; |
| 18355 | 18355 |
| 18356 static final int COMMENT_NODE = 8; | 18356 static const int COMMENT_NODE = 8; |
| 18357 | 18357 |
| 18358 static final int DOCUMENT_FRAGMENT_NODE = 11; | 18358 static const int DOCUMENT_FRAGMENT_NODE = 11; |
| 18359 | 18359 |
| 18360 static final int DOCUMENT_NODE = 9; | 18360 static const int DOCUMENT_NODE = 9; |
| 18361 | 18361 |
| 18362 static final int DOCUMENT_POSITION_CONTAINED_BY = 0x10; | 18362 static const int DOCUMENT_POSITION_CONTAINED_BY = 0x10; |
| 18363 | 18363 |
| 18364 static final int DOCUMENT_POSITION_CONTAINS = 0x08; | 18364 static const int DOCUMENT_POSITION_CONTAINS = 0x08; |
| 18365 | 18365 |
| 18366 static final int DOCUMENT_POSITION_DISCONNECTED = 0x01; | 18366 static const int DOCUMENT_POSITION_DISCONNECTED = 0x01; |
| 18367 | 18367 |
| 18368 static final int DOCUMENT_POSITION_FOLLOWING = 0x04; | 18368 static const int DOCUMENT_POSITION_FOLLOWING = 0x04; |
| 18369 | 18369 |
| 18370 static final int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; | 18370 static const int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; |
| 18371 | 18371 |
| 18372 static final int DOCUMENT_POSITION_PRECEDING = 0x02; | 18372 static const int DOCUMENT_POSITION_PRECEDING = 0x02; |
| 18373 | 18373 |
| 18374 static final int DOCUMENT_TYPE_NODE = 10; | 18374 static const int DOCUMENT_TYPE_NODE = 10; |
| 18375 | 18375 |
| 18376 static final int ELEMENT_NODE = 1; | 18376 static const int ELEMENT_NODE = 1; |
| 18377 | 18377 |
| 18378 static final int ENTITY_NODE = 6; | 18378 static const int ENTITY_NODE = 6; |
| 18379 | 18379 |
| 18380 static final int ENTITY_REFERENCE_NODE = 5; | 18380 static const int ENTITY_REFERENCE_NODE = 5; |
| 18381 | 18381 |
| 18382 static final int NOTATION_NODE = 12; | 18382 static const int NOTATION_NODE = 12; |
| 18383 | 18383 |
| 18384 static final int PROCESSING_INSTRUCTION_NODE = 7; | 18384 static const int PROCESSING_INSTRUCTION_NODE = 7; |
| 18385 | 18385 |
| 18386 static final int TEXT_NODE = 3; | 18386 static const int TEXT_NODE = 3; |
| 18387 | 18387 |
| 18388 final NamedNodeMap attributes; | 18388 final NamedNodeMap attributes; |
| 18389 | 18389 |
| 18390 final String baseURI; | 18390 final String baseURI; |
| 18391 | 18391 |
| 18392 final NodeList childNodes; | 18392 final NodeList childNodes; |
| 18393 | 18393 |
| 18394 final Node firstChild; | 18394 final Node firstChild; |
| 18395 | 18395 |
| 18396 final Node lastChild; | 18396 final Node lastChild; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18458 Node replaceChild(Node newChild, Node oldChild); | 18458 Node replaceChild(Node newChild, Node oldChild); |
| 18459 } | 18459 } |
| 18460 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18460 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18461 // for details. All rights reserved. Use of this source code is governed by a | 18461 // for details. All rights reserved. Use of this source code is governed by a |
| 18462 // BSD-style license that can be found in the LICENSE file. | 18462 // BSD-style license that can be found in the LICENSE file. |
| 18463 | 18463 |
| 18464 // WARNING: Do not edit - generated code. | 18464 // WARNING: Do not edit - generated code. |
| 18465 | 18465 |
| 18466 interface NodeFilter { | 18466 interface NodeFilter { |
| 18467 | 18467 |
| 18468 static final int FILTER_ACCEPT = 1; | 18468 static const int FILTER_ACCEPT = 1; |
| 18469 | 18469 |
| 18470 static final int FILTER_REJECT = 2; | 18470 static const int FILTER_REJECT = 2; |
| 18471 | 18471 |
| 18472 static final int FILTER_SKIP = 3; | 18472 static const int FILTER_SKIP = 3; |
| 18473 | 18473 |
| 18474 static final int SHOW_ALL = 0xFFFFFFFF; | 18474 static const int SHOW_ALL = 0xFFFFFFFF; |
| 18475 | 18475 |
| 18476 static final int SHOW_ATTRIBUTE = 0x00000002; | 18476 static const int SHOW_ATTRIBUTE = 0x00000002; |
| 18477 | 18477 |
| 18478 static final int SHOW_CDATA_SECTION = 0x00000008; | 18478 static const int SHOW_CDATA_SECTION = 0x00000008; |
| 18479 | 18479 |
| 18480 static final int SHOW_COMMENT = 0x00000080; | 18480 static const int SHOW_COMMENT = 0x00000080; |
| 18481 | 18481 |
| 18482 static final int SHOW_DOCUMENT = 0x00000100; | 18482 static const int SHOW_DOCUMENT = 0x00000100; |
| 18483 | 18483 |
| 18484 static final int SHOW_DOCUMENT_FRAGMENT = 0x00000400; | 18484 static const int SHOW_DOCUMENT_FRAGMENT = 0x00000400; |
| 18485 | 18485 |
| 18486 static final int SHOW_DOCUMENT_TYPE = 0x00000200; | 18486 static const int SHOW_DOCUMENT_TYPE = 0x00000200; |
| 18487 | 18487 |
| 18488 static final int SHOW_ELEMENT = 0x00000001; | 18488 static const int SHOW_ELEMENT = 0x00000001; |
| 18489 | 18489 |
| 18490 static final int SHOW_ENTITY = 0x00000020; | 18490 static const int SHOW_ENTITY = 0x00000020; |
| 18491 | 18491 |
| 18492 static final int SHOW_ENTITY_REFERENCE = 0x00000010; | 18492 static const int SHOW_ENTITY_REFERENCE = 0x00000010; |
| 18493 | 18493 |
| 18494 static final int SHOW_NOTATION = 0x00000800; | 18494 static const int SHOW_NOTATION = 0x00000800; |
| 18495 | 18495 |
| 18496 static final int SHOW_PROCESSING_INSTRUCTION = 0x00000040; | 18496 static const int SHOW_PROCESSING_INSTRUCTION = 0x00000040; |
| 18497 | 18497 |
| 18498 static final int SHOW_TEXT = 0x00000004; | 18498 static const int SHOW_TEXT = 0x00000004; |
| 18499 | 18499 |
| 18500 int acceptNode(Node n); | 18500 int acceptNode(Node n); |
| 18501 } | 18501 } |
| 18502 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18502 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18503 // for details. All rights reserved. Use of this source code is governed by a | 18503 // for details. All rights reserved. Use of this source code is governed by a |
| 18504 // BSD-style license that can be found in the LICENSE file. | 18504 // BSD-style license that can be found in the LICENSE file. |
| 18505 | 18505 |
| 18506 // WARNING: Do not edit - generated code. | 18506 // WARNING: Do not edit - generated code. |
| 18507 | 18507 |
| 18508 interface NodeIterator { | 18508 interface NodeIterator { |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18603 | 18603 |
| 18604 typedef bool NotificationPermissionCallback(String permission); | 18604 typedef bool NotificationPermissionCallback(String permission); |
| 18605 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18605 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18606 // for details. All rights reserved. Use of this source code is governed by a | 18606 // for details. All rights reserved. Use of this source code is governed by a |
| 18607 // BSD-style license that can be found in the LICENSE file. | 18607 // BSD-style license that can be found in the LICENSE file. |
| 18608 | 18608 |
| 18609 // WARNING: Do not edit - generated code. | 18609 // WARNING: Do not edit - generated code. |
| 18610 | 18610 |
| 18611 interface OESStandardDerivatives { | 18611 interface OESStandardDerivatives { |
| 18612 | 18612 |
| 18613 static final int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; | 18613 static const int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; |
| 18614 } | 18614 } |
| 18615 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18615 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18616 // for details. All rights reserved. Use of this source code is governed by a | 18616 // for details. All rights reserved. Use of this source code is governed by a |
| 18617 // BSD-style license that can be found in the LICENSE file. | 18617 // BSD-style license that can be found in the LICENSE file. |
| 18618 | 18618 |
| 18619 // WARNING: Do not edit - generated code. | 18619 // WARNING: Do not edit - generated code. |
| 18620 | 18620 |
| 18621 interface OESTextureFloat { | 18621 interface OESTextureFloat { |
| 18622 } | 18622 } |
| 18623 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18623 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18624 // for details. All rights reserved. Use of this source code is governed by a | 18624 // for details. All rights reserved. Use of this source code is governed by a |
| 18625 // BSD-style license that can be found in the LICENSE file. | 18625 // BSD-style license that can be found in the LICENSE file. |
| 18626 | 18626 |
| 18627 // WARNING: Do not edit - generated code. | 18627 // WARNING: Do not edit - generated code. |
| 18628 | 18628 |
| 18629 interface OESVertexArrayObject { | 18629 interface OESVertexArrayObject { |
| 18630 | 18630 |
| 18631 static final int VERTEX_ARRAY_BINDING_OES = 0x85B5; | 18631 static const int VERTEX_ARRAY_BINDING_OES = 0x85B5; |
| 18632 | 18632 |
| 18633 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); | 18633 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); |
| 18634 | 18634 |
| 18635 WebGLVertexArrayObjectOES createVertexArrayOES(); | 18635 WebGLVertexArrayObjectOES createVertexArrayOES(); |
| 18636 | 18636 |
| 18637 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); | 18637 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); |
| 18638 | 18638 |
| 18639 bool isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); | 18639 bool isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); |
| 18640 } | 18640 } |
| 18641 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18641 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18642 // for details. All rights reserved. Use of this source code is governed by a | 18642 // for details. All rights reserved. Use of this source code is governed by a |
| 18643 // BSD-style license that can be found in the LICENSE file. | 18643 // BSD-style license that can be found in the LICENSE file. |
| 18644 | 18644 |
| 18645 // WARNING: Do not edit - generated code. | 18645 // WARNING: Do not edit - generated code. |
| 18646 | 18646 |
| 18647 interface OfflineAudioCompletionEvent extends Event { | 18647 interface OfflineAudioCompletionEvent extends Event { |
| 18648 | 18648 |
| 18649 final AudioBuffer renderedBuffer; | 18649 final AudioBuffer renderedBuffer; |
| 18650 } | 18650 } |
| 18651 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18651 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18652 // for details. All rights reserved. Use of this source code is governed by a | 18652 // for details. All rights reserved. Use of this source code is governed by a |
| 18653 // BSD-style license that can be found in the LICENSE file. | 18653 // BSD-style license that can be found in the LICENSE file. |
| 18654 | 18654 |
| 18655 // WARNING: Do not edit - generated code. | 18655 // WARNING: Do not edit - generated code. |
| 18656 | 18656 |
| 18657 interface Oscillator extends AudioSourceNode { | 18657 interface Oscillator extends AudioSourceNode { |
| 18658 | 18658 |
| 18659 static final int CUSTOM = 4; | 18659 static const int CUSTOM = 4; |
| 18660 | 18660 |
| 18661 static final int FINISHED_STATE = 3; | 18661 static const int FINISHED_STATE = 3; |
| 18662 | 18662 |
| 18663 static final int PLAYING_STATE = 2; | 18663 static const int PLAYING_STATE = 2; |
| 18664 | 18664 |
| 18665 static final int SAWTOOTH = 2; | 18665 static const int SAWTOOTH = 2; |
| 18666 | 18666 |
| 18667 static final int SCHEDULED_STATE = 1; | 18667 static const int SCHEDULED_STATE = 1; |
| 18668 | 18668 |
| 18669 static final int SINE = 0; | 18669 static const int SINE = 0; |
| 18670 | 18670 |
| 18671 static final int SQUARE = 1; | 18671 static const int SQUARE = 1; |
| 18672 | 18672 |
| 18673 static final int TRIANGLE = 3; | 18673 static const int TRIANGLE = 3; |
| 18674 | 18674 |
| 18675 static final int UNSCHEDULED_STATE = 0; | 18675 static const int UNSCHEDULED_STATE = 0; |
| 18676 | 18676 |
| 18677 final AudioParam detune; | 18677 final AudioParam detune; |
| 18678 | 18678 |
| 18679 final AudioParam frequency; | 18679 final AudioParam frequency; |
| 18680 | 18680 |
| 18681 final int playbackState; | 18681 final int playbackState; |
| 18682 | 18682 |
| 18683 int type; | 18683 int type; |
| 18684 | 18684 |
| 18685 void noteOff(num when); | 18685 void noteOff(num when); |
| 18686 | 18686 |
| 18687 void noteOn(num when); | 18687 void noteOn(num when); |
| 18688 | 18688 |
| 18689 void setWaveTable(WaveTable waveTable); | 18689 void setWaveTable(WaveTable waveTable); |
| 18690 } | 18690 } |
| 18691 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18691 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18692 // for details. All rights reserved. Use of this source code is governed by a | 18692 // for details. All rights reserved. Use of this source code is governed by a |
| 18693 // BSD-style license that can be found in the LICENSE file. | 18693 // BSD-style license that can be found in the LICENSE file. |
| 18694 | 18694 |
| 18695 // WARNING: Do not edit - generated code. | 18695 // WARNING: Do not edit - generated code. |
| 18696 | 18696 |
| 18697 interface OverflowEvent extends Event { | 18697 interface OverflowEvent extends Event { |
| 18698 | 18698 |
| 18699 static final int BOTH = 2; | 18699 static const int BOTH = 2; |
| 18700 | 18700 |
| 18701 static final int HORIZONTAL = 0; | 18701 static const int HORIZONTAL = 0; |
| 18702 | 18702 |
| 18703 static final int VERTICAL = 1; | 18703 static const int VERTICAL = 1; |
| 18704 | 18704 |
| 18705 final bool horizontalOverflow; | 18705 final bool horizontalOverflow; |
| 18706 | 18706 |
| 18707 final int orient; | 18707 final int orient; |
| 18708 | 18708 |
| 18709 final bool verticalOverflow; | 18709 final bool verticalOverflow; |
| 18710 } | 18710 } |
| 18711 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18711 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18712 // for details. All rights reserved. Use of this source code is governed by a | 18712 // for details. All rights reserved. Use of this source code is governed by a |
| 18713 // BSD-style license that can be found in the LICENSE file. | 18713 // BSD-style license that can be found in the LICENSE file. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 18733 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18733 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18734 // for details. All rights reserved. Use of this source code is governed by a | 18734 // for details. All rights reserved. Use of this source code is governed by a |
| 18735 // BSD-style license that can be found in the LICENSE file. | 18735 // BSD-style license that can be found in the LICENSE file. |
| 18736 | 18736 |
| 18737 // WARNING: Do not edit - generated code. | 18737 // WARNING: Do not edit - generated code. |
| 18738 | 18738 |
| 18739 interface PeerConnection00 extends EventTarget default _PeerConnection00FactoryP
rovider { | 18739 interface PeerConnection00 extends EventTarget default _PeerConnection00FactoryP
rovider { |
| 18740 | 18740 |
| 18741 PeerConnection00(String serverConfiguration, IceCallback iceCallback); | 18741 PeerConnection00(String serverConfiguration, IceCallback iceCallback); |
| 18742 | 18742 |
| 18743 static final int ACTIVE = 2; | 18743 static const int ACTIVE = 2; |
| 18744 | 18744 |
| 18745 static final int CLOSED = 3; | 18745 static const int CLOSED = 3; |
| 18746 | 18746 |
| 18747 static final int ICE_CHECKING = 0x300; | 18747 static const int ICE_CHECKING = 0x300; |
| 18748 | 18748 |
| 18749 static final int ICE_CLOSED = 0x700; | 18749 static const int ICE_CLOSED = 0x700; |
| 18750 | 18750 |
| 18751 static final int ICE_COMPLETED = 0x500; | 18751 static const int ICE_COMPLETED = 0x500; |
| 18752 | 18752 |
| 18753 static final int ICE_CONNECTED = 0x400; | 18753 static const int ICE_CONNECTED = 0x400; |
| 18754 | 18754 |
| 18755 static final int ICE_FAILED = 0x600; | 18755 static const int ICE_FAILED = 0x600; |
| 18756 | 18756 |
| 18757 static final int ICE_GATHERING = 0x100; | 18757 static const int ICE_GATHERING = 0x100; |
| 18758 | 18758 |
| 18759 static final int ICE_WAITING = 0x200; | 18759 static const int ICE_WAITING = 0x200; |
| 18760 | 18760 |
| 18761 static final int NEW = 0; | 18761 static const int NEW = 0; |
| 18762 | 18762 |
| 18763 static final int OPENING = 1; | 18763 static const int OPENING = 1; |
| 18764 | 18764 |
| 18765 static final int SDP_ANSWER = 0x300; | 18765 static const int SDP_ANSWER = 0x300; |
| 18766 | 18766 |
| 18767 static final int SDP_OFFER = 0x100; | 18767 static const int SDP_OFFER = 0x100; |
| 18768 | 18768 |
| 18769 static final int SDP_PRANSWER = 0x200; | 18769 static const int SDP_PRANSWER = 0x200; |
| 18770 | 18770 |
| 18771 final int iceState; | 18771 final int iceState; |
| 18772 | 18772 |
| 18773 final SessionDescription localDescription; | 18773 final SessionDescription localDescription; |
| 18774 | 18774 |
| 18775 final MediaStreamList localStreams; | 18775 final MediaStreamList localStreams; |
| 18776 | 18776 |
| 18777 final int readyState; | 18777 final int readyState; |
| 18778 | 18778 |
| 18779 final SessionDescription remoteDescription; | 18779 final SessionDescription remoteDescription; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18821 num webkitNow(); | 18821 num webkitNow(); |
| 18822 } | 18822 } |
| 18823 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18823 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18824 // for details. All rights reserved. Use of this source code is governed by a | 18824 // for details. All rights reserved. Use of this source code is governed by a |
| 18825 // BSD-style license that can be found in the LICENSE file. | 18825 // BSD-style license that can be found in the LICENSE file. |
| 18826 | 18826 |
| 18827 // WARNING: Do not edit - generated code. | 18827 // WARNING: Do not edit - generated code. |
| 18828 | 18828 |
| 18829 interface PerformanceNavigation { | 18829 interface PerformanceNavigation { |
| 18830 | 18830 |
| 18831 static final int TYPE_BACK_FORWARD = 2; | 18831 static const int TYPE_BACK_FORWARD = 2; |
| 18832 | 18832 |
| 18833 static final int TYPE_NAVIGATE = 0; | 18833 static const int TYPE_NAVIGATE = 0; |
| 18834 | 18834 |
| 18835 static final int TYPE_RELOAD = 1; | 18835 static const int TYPE_RELOAD = 1; |
| 18836 | 18836 |
| 18837 static final int TYPE_RESERVED = 255; | 18837 static const int TYPE_RESERVED = 255; |
| 18838 | 18838 |
| 18839 final int redirectCount; | 18839 final int redirectCount; |
| 18840 | 18840 |
| 18841 final int type; | 18841 final int type; |
| 18842 } | 18842 } |
| 18843 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18843 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18844 // for details. All rights reserved. Use of this source code is governed by a | 18844 // for details. All rights reserved. Use of this source code is governed by a |
| 18845 // BSD-style license that can be found in the LICENSE file. | 18845 // BSD-style license that can be found in the LICENSE file. |
| 18846 | 18846 |
| 18847 // WARNING: Do not edit - generated code. | 18847 // WARNING: Do not edit - generated code. |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18908 | 18908 |
| 18909 typedef bool PositionCallback(Geoposition position); | 18909 typedef bool PositionCallback(Geoposition position); |
| 18910 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18910 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18911 // for details. All rights reserved. Use of this source code is governed by a | 18911 // for details. All rights reserved. Use of this source code is governed by a |
| 18912 // BSD-style license that can be found in the LICENSE file. | 18912 // BSD-style license that can be found in the LICENSE file. |
| 18913 | 18913 |
| 18914 // WARNING: Do not edit - generated code. | 18914 // WARNING: Do not edit - generated code. |
| 18915 | 18915 |
| 18916 interface PositionError { | 18916 interface PositionError { |
| 18917 | 18917 |
| 18918 static final int PERMISSION_DENIED = 1; | 18918 static const int PERMISSION_DENIED = 1; |
| 18919 | 18919 |
| 18920 static final int POSITION_UNAVAILABLE = 2; | 18920 static const int POSITION_UNAVAILABLE = 2; |
| 18921 | 18921 |
| 18922 static final int TIMEOUT = 3; | 18922 static const int TIMEOUT = 3; |
| 18923 | 18923 |
| 18924 final int code; | 18924 final int code; |
| 18925 | 18925 |
| 18926 final String message; | 18926 final String message; |
| 18927 } | 18927 } |
| 18928 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18928 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18929 // for details. All rights reserved. Use of this source code is governed by a | 18929 // for details. All rights reserved. Use of this source code is governed by a |
| 18930 // BSD-style license that can be found in the LICENSE file. | 18930 // BSD-style license that can be found in the LICENSE file. |
| 18931 | 18931 |
| 18932 // WARNING: Do not edit - generated code. | 18932 // WARNING: Do not edit - generated code. |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19001 String value; | 19001 String value; |
| 19002 } | 19002 } |
| 19003 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19003 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19004 // for details. All rights reserved. Use of this source code is governed by a | 19004 // for details. All rights reserved. Use of this source code is governed by a |
| 19005 // BSD-style license that can be found in the LICENSE file. | 19005 // BSD-style license that can be found in the LICENSE file. |
| 19006 | 19006 |
| 19007 // WARNING: Do not edit - generated code. | 19007 // WARNING: Do not edit - generated code. |
| 19008 | 19008 |
| 19009 interface Range { | 19009 interface Range { |
| 19010 | 19010 |
| 19011 static final int END_TO_END = 2; | 19011 static const int END_TO_END = 2; |
| 19012 | 19012 |
| 19013 static final int END_TO_START = 3; | 19013 static const int END_TO_START = 3; |
| 19014 | 19014 |
| 19015 static final int NODE_AFTER = 1; | 19015 static const int NODE_AFTER = 1; |
| 19016 | 19016 |
| 19017 static final int NODE_BEFORE = 0; | 19017 static const int NODE_BEFORE = 0; |
| 19018 | 19018 |
| 19019 static final int NODE_BEFORE_AND_AFTER = 2; | 19019 static const int NODE_BEFORE_AND_AFTER = 2; |
| 19020 | 19020 |
| 19021 static final int NODE_INSIDE = 3; | 19021 static const int NODE_INSIDE = 3; |
| 19022 | 19022 |
| 19023 static final int START_TO_END = 1; | 19023 static const int START_TO_END = 1; |
| 19024 | 19024 |
| 19025 static final int START_TO_START = 0; | 19025 static const int START_TO_START = 0; |
| 19026 | 19026 |
| 19027 final bool collapsed; | 19027 final bool collapsed; |
| 19028 | 19028 |
| 19029 final Node commonAncestorContainer; | 19029 final Node commonAncestorContainer; |
| 19030 | 19030 |
| 19031 final Node endContainer; | 19031 final Node endContainer; |
| 19032 | 19032 |
| 19033 final int endOffset; | 19033 final int endOffset; |
| 19034 | 19034 |
| 19035 final Node startContainer; | 19035 final Node startContainer; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19087 String toString(); | 19087 String toString(); |
| 19088 } | 19088 } |
| 19089 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19089 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19090 // for details. All rights reserved. Use of this source code is governed by a | 19090 // for details. All rights reserved. Use of this source code is governed by a |
| 19091 // BSD-style license that can be found in the LICENSE file. | 19091 // BSD-style license that can be found in the LICENSE file. |
| 19092 | 19092 |
| 19093 // WARNING: Do not edit - generated code. | 19093 // WARNING: Do not edit - generated code. |
| 19094 | 19094 |
| 19095 interface RangeException { | 19095 interface RangeException { |
| 19096 | 19096 |
| 19097 static final int BAD_BOUNDARYPOINTS_ERR = 1; | 19097 static const int BAD_BOUNDARYPOINTS_ERR = 1; |
| 19098 | 19098 |
| 19099 static final int INVALID_NODE_TYPE_ERR = 2; | 19099 static const int INVALID_NODE_TYPE_ERR = 2; |
| 19100 | 19100 |
| 19101 final int code; | 19101 final int code; |
| 19102 | 19102 |
| 19103 final String message; | 19103 final String message; |
| 19104 | 19104 |
| 19105 final String name; | 19105 final String name; |
| 19106 | 19106 |
| 19107 String toString(); | 19107 String toString(); |
| 19108 } | 19108 } |
| 19109 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19109 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19154 | 19154 |
| 19155 typedef bool RequestAnimationFrameCallback(int time); | 19155 typedef bool RequestAnimationFrameCallback(int time); |
| 19156 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19156 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19157 // for details. All rights reserved. Use of this source code is governed by a | 19157 // for details. All rights reserved. Use of this source code is governed by a |
| 19158 // BSD-style license that can be found in the LICENSE file. | 19158 // BSD-style license that can be found in the LICENSE file. |
| 19159 | 19159 |
| 19160 // WARNING: Do not edit - generated code. | 19160 // WARNING: Do not edit - generated code. |
| 19161 | 19161 |
| 19162 interface SQLError { | 19162 interface SQLError { |
| 19163 | 19163 |
| 19164 static final int CONSTRAINT_ERR = 6; | 19164 static const int CONSTRAINT_ERR = 6; |
| 19165 | 19165 |
| 19166 static final int DATABASE_ERR = 1; | 19166 static const int DATABASE_ERR = 1; |
| 19167 | 19167 |
| 19168 static final int QUOTA_ERR = 4; | 19168 static const int QUOTA_ERR = 4; |
| 19169 | 19169 |
| 19170 static final int SYNTAX_ERR = 5; | 19170 static const int SYNTAX_ERR = 5; |
| 19171 | 19171 |
| 19172 static final int TIMEOUT_ERR = 7; | 19172 static const int TIMEOUT_ERR = 7; |
| 19173 | 19173 |
| 19174 static final int TOO_LARGE_ERR = 3; | 19174 static const int TOO_LARGE_ERR = 3; |
| 19175 | 19175 |
| 19176 static final int UNKNOWN_ERR = 0; | 19176 static const int UNKNOWN_ERR = 0; |
| 19177 | 19177 |
| 19178 static final int VERSION_ERR = 2; | 19178 static const int VERSION_ERR = 2; |
| 19179 | 19179 |
| 19180 final int code; | 19180 final int code; |
| 19181 | 19181 |
| 19182 final String message; | 19182 final String message; |
| 19183 } | 19183 } |
| 19184 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19184 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19185 // for details. All rights reserved. Use of this source code is governed by a | 19185 // for details. All rights reserved. Use of this source code is governed by a |
| 19186 // BSD-style license that can be found in the LICENSE file. | 19186 // BSD-style license that can be found in the LICENSE file. |
| 19187 | 19187 |
| 19188 // WARNING: Do not edit - generated code. | 19188 // WARNING: Do not edit - generated code. |
| 19189 | 19189 |
| 19190 interface SQLException { | 19190 interface SQLException { |
| 19191 | 19191 |
| 19192 static final int CONSTRAINT_ERR = 6; | 19192 static const int CONSTRAINT_ERR = 6; |
| 19193 | 19193 |
| 19194 static final int DATABASE_ERR = 1; | 19194 static const int DATABASE_ERR = 1; |
| 19195 | 19195 |
| 19196 static final int QUOTA_ERR = 4; | 19196 static const int QUOTA_ERR = 4; |
| 19197 | 19197 |
| 19198 static final int SYNTAX_ERR = 5; | 19198 static const int SYNTAX_ERR = 5; |
| 19199 | 19199 |
| 19200 static final int TIMEOUT_ERR = 7; | 19200 static const int TIMEOUT_ERR = 7; |
| 19201 | 19201 |
| 19202 static final int TOO_LARGE_ERR = 3; | 19202 static const int TOO_LARGE_ERR = 3; |
| 19203 | 19203 |
| 19204 static final int UNKNOWN_ERR = 0; | 19204 static const int UNKNOWN_ERR = 0; |
| 19205 | 19205 |
| 19206 static final int VERSION_ERR = 2; | 19206 static const int VERSION_ERR = 2; |
| 19207 | 19207 |
| 19208 final int code; | 19208 final int code; |
| 19209 | 19209 |
| 19210 final String message; | 19210 final String message; |
| 19211 } | 19211 } |
| 19212 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19212 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19213 // for details. All rights reserved. Use of this source code is governed by a | 19213 // for details. All rights reserved. Use of this source code is governed by a |
| 19214 // BSD-style license that can be found in the LICENSE file. | 19214 // BSD-style license that can be found in the LICENSE file. |
| 19215 | 19215 |
| 19216 // WARNING: Do not edit - generated code. | 19216 // WARNING: Do not edit - generated code. |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19329 interface SVGAltGlyphItemElement extends SVGElement { | 19329 interface SVGAltGlyphItemElement extends SVGElement { |
| 19330 } | 19330 } |
| 19331 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19331 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19332 // for details. All rights reserved. Use of this source code is governed by a | 19332 // for details. All rights reserved. Use of this source code is governed by a |
| 19333 // BSD-style license that can be found in the LICENSE file. | 19333 // BSD-style license that can be found in the LICENSE file. |
| 19334 | 19334 |
| 19335 // WARNING: Do not edit - generated code. | 19335 // WARNING: Do not edit - generated code. |
| 19336 | 19336 |
| 19337 interface SVGAngle { | 19337 interface SVGAngle { |
| 19338 | 19338 |
| 19339 static final int SVG_ANGLETYPE_DEG = 2; | 19339 static const int SVG_ANGLETYPE_DEG = 2; |
| 19340 | 19340 |
| 19341 static final int SVG_ANGLETYPE_GRAD = 4; | 19341 static const int SVG_ANGLETYPE_GRAD = 4; |
| 19342 | 19342 |
| 19343 static final int SVG_ANGLETYPE_RAD = 3; | 19343 static const int SVG_ANGLETYPE_RAD = 3; |
| 19344 | 19344 |
| 19345 static final int SVG_ANGLETYPE_UNKNOWN = 0; | 19345 static const int SVG_ANGLETYPE_UNKNOWN = 0; |
| 19346 | 19346 |
| 19347 static final int SVG_ANGLETYPE_UNSPECIFIED = 1; | 19347 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; |
| 19348 | 19348 |
| 19349 final int unitType; | 19349 final int unitType; |
| 19350 | 19350 |
| 19351 num value; | 19351 num value; |
| 19352 | 19352 |
| 19353 String valueAsString; | 19353 String valueAsString; |
| 19354 | 19354 |
| 19355 num valueInSpecifiedUnits; | 19355 num valueInSpecifiedUnits; |
| 19356 | 19356 |
| 19357 void convertToSpecifiedUnits(int unitType); | 19357 void convertToSpecifiedUnits(int unitType); |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19575 final SVGAnimatedEnumeration clipPathUnits; | 19575 final SVGAnimatedEnumeration clipPathUnits; |
| 19576 } | 19576 } |
| 19577 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19577 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19578 // for details. All rights reserved. Use of this source code is governed by a | 19578 // for details. All rights reserved. Use of this source code is governed by a |
| 19579 // BSD-style license that can be found in the LICENSE file. | 19579 // BSD-style license that can be found in the LICENSE file. |
| 19580 | 19580 |
| 19581 // WARNING: Do not edit - generated code. | 19581 // WARNING: Do not edit - generated code. |
| 19582 | 19582 |
| 19583 interface SVGColor extends CSSValue { | 19583 interface SVGColor extends CSSValue { |
| 19584 | 19584 |
| 19585 static final int SVG_COLORTYPE_CURRENTCOLOR = 3; | 19585 static const int SVG_COLORTYPE_CURRENTCOLOR = 3; |
| 19586 | 19586 |
| 19587 static final int SVG_COLORTYPE_RGBCOLOR = 1; | 19587 static const int SVG_COLORTYPE_RGBCOLOR = 1; |
| 19588 | 19588 |
| 19589 static final int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; | 19589 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 19590 | 19590 |
| 19591 static final int SVG_COLORTYPE_UNKNOWN = 0; | 19591 static const int SVG_COLORTYPE_UNKNOWN = 0; |
| 19592 | 19592 |
| 19593 final int colorType; | 19593 final int colorType; |
| 19594 | 19594 |
| 19595 final RGBColor rgbColor; | 19595 final RGBColor rgbColor; |
| 19596 | 19596 |
| 19597 void setColor(int colorType, String rgbColor, String iccColor); | 19597 void setColor(int colorType, String rgbColor, String iccColor); |
| 19598 | 19598 |
| 19599 void setRGBColor(String rgbColor); | 19599 void setRGBColor(String rgbColor); |
| 19600 | 19600 |
| 19601 void setRGBColorICCColor(String rgbColor, String iccColor); | 19601 void setRGBColorICCColor(String rgbColor, String iccColor); |
| 19602 } | 19602 } |
| 19603 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19603 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19604 // for details. All rights reserved. Use of this source code is governed by a | 19604 // for details. All rights reserved. Use of this source code is governed by a |
| 19605 // BSD-style license that can be found in the LICENSE file. | 19605 // BSD-style license that can be found in the LICENSE file. |
| 19606 | 19606 |
| 19607 // WARNING: Do not edit - generated code. | 19607 // WARNING: Do not edit - generated code. |
| 19608 | 19608 |
| 19609 interface SVGComponentTransferFunctionElement extends SVGElement { | 19609 interface SVGComponentTransferFunctionElement extends SVGElement { |
| 19610 | 19610 |
| 19611 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; | 19611 static const int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; |
| 19612 | 19612 |
| 19613 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; | 19613 static const int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; |
| 19614 | 19614 |
| 19615 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; | 19615 static const int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; |
| 19616 | 19616 |
| 19617 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; | 19617 static const int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; |
| 19618 | 19618 |
| 19619 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; | 19619 static const int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; |
| 19620 | 19620 |
| 19621 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; | 19621 static const int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; |
| 19622 | 19622 |
| 19623 final SVGAnimatedNumber amplitude; | 19623 final SVGAnimatedNumber amplitude; |
| 19624 | 19624 |
| 19625 final SVGAnimatedNumber exponent; | 19625 final SVGAnimatedNumber exponent; |
| 19626 | 19626 |
| 19627 final SVGAnimatedNumber intercept; | 19627 final SVGAnimatedNumber intercept; |
| 19628 | 19628 |
| 19629 final SVGAnimatedNumber offset; | 19629 final SVGAnimatedNumber offset; |
| 19630 | 19630 |
| 19631 final SVGAnimatedNumber slope; | 19631 final SVGAnimatedNumber slope; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19743 final SVGAnimatedLength ry; | 19743 final SVGAnimatedLength ry; |
| 19744 } | 19744 } |
| 19745 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19745 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19746 // for details. All rights reserved. Use of this source code is governed by a | 19746 // for details. All rights reserved. Use of this source code is governed by a |
| 19747 // BSD-style license that can be found in the LICENSE file. | 19747 // BSD-style license that can be found in the LICENSE file. |
| 19748 | 19748 |
| 19749 // WARNING: Do not edit - generated code. | 19749 // WARNING: Do not edit - generated code. |
| 19750 | 19750 |
| 19751 interface SVGException { | 19751 interface SVGException { |
| 19752 | 19752 |
| 19753 static final int SVG_INVALID_VALUE_ERR = 1; | 19753 static const int SVG_INVALID_VALUE_ERR = 1; |
| 19754 | 19754 |
| 19755 static final int SVG_MATRIX_NOT_INVERTABLE = 2; | 19755 static const int SVG_MATRIX_NOT_INVERTABLE = 2; |
| 19756 | 19756 |
| 19757 static final int SVG_WRONG_TYPE_ERR = 0; | 19757 static const int SVG_WRONG_TYPE_ERR = 0; |
| 19758 | 19758 |
| 19759 final int code; | 19759 final int code; |
| 19760 | 19760 |
| 19761 final String message; | 19761 final String message; |
| 19762 | 19762 |
| 19763 final String name; | 19763 final String name; |
| 19764 | 19764 |
| 19765 String toString(); | 19765 String toString(); |
| 19766 } | 19766 } |
| 19767 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19767 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19768 // for details. All rights reserved. Use of this source code is governed by a | 19768 // for details. All rights reserved. Use of this source code is governed by a |
| 19769 // BSD-style license that can be found in the LICENSE file. | 19769 // BSD-style license that can be found in the LICENSE file. |
| 19770 | 19770 |
| 19771 // WARNING: Do not edit - generated code. | 19771 // WARNING: Do not edit - generated code. |
| 19772 | 19772 |
| 19773 interface SVGExternalResourcesRequired { | 19773 interface SVGExternalResourcesRequired { |
| 19774 | 19774 |
| 19775 final SVGAnimatedBoolean externalResourcesRequired; | 19775 final SVGAnimatedBoolean externalResourcesRequired; |
| 19776 } | 19776 } |
| 19777 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19777 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19778 // for details. All rights reserved. Use of this source code is governed by a | 19778 // for details. All rights reserved. Use of this source code is governed by a |
| 19779 // BSD-style license that can be found in the LICENSE file. | 19779 // BSD-style license that can be found in the LICENSE file. |
| 19780 | 19780 |
| 19781 // WARNING: Do not edit - generated code. | 19781 // WARNING: Do not edit - generated code. |
| 19782 | 19782 |
| 19783 interface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttrib
utes { | 19783 interface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttrib
utes { |
| 19784 | 19784 |
| 19785 static final int SVG_FEBLEND_MODE_DARKEN = 4; | 19785 static const int SVG_FEBLEND_MODE_DARKEN = 4; |
| 19786 | 19786 |
| 19787 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; | 19787 static const int SVG_FEBLEND_MODE_LIGHTEN = 5; |
| 19788 | 19788 |
| 19789 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; | 19789 static const int SVG_FEBLEND_MODE_MULTIPLY = 2; |
| 19790 | 19790 |
| 19791 static final int SVG_FEBLEND_MODE_NORMAL = 1; | 19791 static const int SVG_FEBLEND_MODE_NORMAL = 1; |
| 19792 | 19792 |
| 19793 static final int SVG_FEBLEND_MODE_SCREEN = 3; | 19793 static const int SVG_FEBLEND_MODE_SCREEN = 3; |
| 19794 | 19794 |
| 19795 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; | 19795 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; |
| 19796 | 19796 |
| 19797 final SVGAnimatedString in1; | 19797 final SVGAnimatedString in1; |
| 19798 | 19798 |
| 19799 final SVGAnimatedString in2; | 19799 final SVGAnimatedString in2; |
| 19800 | 19800 |
| 19801 final SVGAnimatedEnumeration mode; | 19801 final SVGAnimatedEnumeration mode; |
| 19802 } | 19802 } |
| 19803 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19803 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19804 // for details. All rights reserved. Use of this source code is governed by a | 19804 // for details. All rights reserved. Use of this source code is governed by a |
| 19805 // BSD-style license that can be found in the LICENSE file. | 19805 // BSD-style license that can be found in the LICENSE file. |
| 19806 | 19806 |
| 19807 // WARNING: Do not edit - generated code. | 19807 // WARNING: Do not edit - generated code. |
| 19808 | 19808 |
| 19809 interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandard
Attributes { | 19809 interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandard
Attributes { |
| 19810 | 19810 |
| 19811 static final int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; | 19811 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; |
| 19812 | 19812 |
| 19813 static final int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; | 19813 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; |
| 19814 | 19814 |
| 19815 static final int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; | 19815 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; |
| 19816 | 19816 |
| 19817 static final int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; | 19817 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; |
| 19818 | 19818 |
| 19819 static final int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; | 19819 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; |
| 19820 | 19820 |
| 19821 final SVGAnimatedString in1; | 19821 final SVGAnimatedString in1; |
| 19822 | 19822 |
| 19823 final SVGAnimatedEnumeration type; | 19823 final SVGAnimatedEnumeration type; |
| 19824 | 19824 |
| 19825 final SVGAnimatedNumberList values; | 19825 final SVGAnimatedNumberList values; |
| 19826 } | 19826 } |
| 19827 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19827 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19828 // for details. All rights reserved. Use of this source code is governed by a | 19828 // for details. All rights reserved. Use of this source code is governed by a |
| 19829 // BSD-style license that can be found in the LICENSE file. | 19829 // BSD-style license that can be found in the LICENSE file. |
| 19830 | 19830 |
| 19831 // WARNING: Do not edit - generated code. | 19831 // WARNING: Do not edit - generated code. |
| 19832 | 19832 |
| 19833 interface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveSt
andardAttributes { | 19833 interface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveSt
andardAttributes { |
| 19834 | 19834 |
| 19835 final SVGAnimatedString in1; | 19835 final SVGAnimatedString in1; |
| 19836 } | 19836 } |
| 19837 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19837 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19838 // for details. All rights reserved. Use of this source code is governed by a | 19838 // for details. All rights reserved. Use of this source code is governed by a |
| 19839 // BSD-style license that can be found in the LICENSE file. | 19839 // BSD-style license that can be found in the LICENSE file. |
| 19840 | 19840 |
| 19841 // WARNING: Do not edit - generated code. | 19841 // WARNING: Do not edit - generated code. |
| 19842 | 19842 |
| 19843 interface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAt
tributes { | 19843 interface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAt
tributes { |
| 19844 | 19844 |
| 19845 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; | 19845 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
| 19846 | 19846 |
| 19847 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; | 19847 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; |
| 19848 | 19848 |
| 19849 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2; | 19849 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2; |
| 19850 | 19850 |
| 19851 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3; | 19851 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3; |
| 19852 | 19852 |
| 19853 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1; | 19853 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1; |
| 19854 | 19854 |
| 19855 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; | 19855 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; |
| 19856 | 19856 |
| 19857 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5; | 19857 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; |
| 19858 | 19858 |
| 19859 final SVGAnimatedString in1; | 19859 final SVGAnimatedString in1; |
| 19860 | 19860 |
| 19861 final SVGAnimatedString in2; | 19861 final SVGAnimatedString in2; |
| 19862 | 19862 |
| 19863 final SVGAnimatedNumber k1; | 19863 final SVGAnimatedNumber k1; |
| 19864 | 19864 |
| 19865 final SVGAnimatedNumber k2; | 19865 final SVGAnimatedNumber k2; |
| 19866 | 19866 |
| 19867 final SVGAnimatedNumber k3; | 19867 final SVGAnimatedNumber k3; |
| 19868 | 19868 |
| 19869 final SVGAnimatedNumber k4; | 19869 final SVGAnimatedNumber k4; |
| 19870 | 19870 |
| 19871 final SVGAnimatedEnumeration operator; | 19871 final SVGAnimatedEnumeration operator; |
| 19872 } | 19872 } |
| 19873 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19873 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19874 // for details. All rights reserved. Use of this source code is governed by a | 19874 // for details. All rights reserved. Use of this source code is governed by a |
| 19875 // BSD-style license that can be found in the LICENSE file. | 19875 // BSD-style license that can be found in the LICENSE file. |
| 19876 | 19876 |
| 19877 // WARNING: Do not edit - generated code. | 19877 // WARNING: Do not edit - generated code. |
| 19878 | 19878 |
| 19879 interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStand
ardAttributes { | 19879 interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStand
ardAttributes { |
| 19880 | 19880 |
| 19881 static final int SVG_EDGEMODE_DUPLICATE = 1; | 19881 static const int SVG_EDGEMODE_DUPLICATE = 1; |
| 19882 | 19882 |
| 19883 static final int SVG_EDGEMODE_NONE = 3; | 19883 static const int SVG_EDGEMODE_NONE = 3; |
| 19884 | 19884 |
| 19885 static final int SVG_EDGEMODE_UNKNOWN = 0; | 19885 static const int SVG_EDGEMODE_UNKNOWN = 0; |
| 19886 | 19886 |
| 19887 static final int SVG_EDGEMODE_WRAP = 2; | 19887 static const int SVG_EDGEMODE_WRAP = 2; |
| 19888 | 19888 |
| 19889 final SVGAnimatedNumber bias; | 19889 final SVGAnimatedNumber bias; |
| 19890 | 19890 |
| 19891 final SVGAnimatedNumber divisor; | 19891 final SVGAnimatedNumber divisor; |
| 19892 | 19892 |
| 19893 final SVGAnimatedEnumeration edgeMode; | 19893 final SVGAnimatedEnumeration edgeMode; |
| 19894 | 19894 |
| 19895 final SVGAnimatedString in1; | 19895 final SVGAnimatedString in1; |
| 19896 | 19896 |
| 19897 final SVGAnimatedNumberList kernelMatrix; | 19897 final SVGAnimatedNumberList kernelMatrix; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19929 final SVGAnimatedNumber surfaceScale; | 19929 final SVGAnimatedNumber surfaceScale; |
| 19930 } | 19930 } |
| 19931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19932 // for details. All rights reserved. Use of this source code is governed by a | 19932 // for details. All rights reserved. Use of this source code is governed by a |
| 19933 // BSD-style license that can be found in the LICENSE file. | 19933 // BSD-style license that can be found in the LICENSE file. |
| 19934 | 19934 |
| 19935 // WARNING: Do not edit - generated code. | 19935 // WARNING: Do not edit - generated code. |
| 19936 | 19936 |
| 19937 interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStan
dardAttributes { | 19937 interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStan
dardAttributes { |
| 19938 | 19938 |
| 19939 static final int SVG_CHANNEL_A = 4; | 19939 static const int SVG_CHANNEL_A = 4; |
| 19940 | 19940 |
| 19941 static final int SVG_CHANNEL_B = 3; | 19941 static const int SVG_CHANNEL_B = 3; |
| 19942 | 19942 |
| 19943 static final int SVG_CHANNEL_G = 2; | 19943 static const int SVG_CHANNEL_G = 2; |
| 19944 | 19944 |
| 19945 static final int SVG_CHANNEL_R = 1; | 19945 static const int SVG_CHANNEL_R = 1; |
| 19946 | 19946 |
| 19947 static final int SVG_CHANNEL_UNKNOWN = 0; | 19947 static const int SVG_CHANNEL_UNKNOWN = 0; |
| 19948 | 19948 |
| 19949 final SVGAnimatedString in1; | 19949 final SVGAnimatedString in1; |
| 19950 | 19950 |
| 19951 final SVGAnimatedString in2; | 19951 final SVGAnimatedString in2; |
| 19952 | 19952 |
| 19953 final SVGAnimatedNumber scale; | 19953 final SVGAnimatedNumber scale; |
| 19954 | 19954 |
| 19955 final SVGAnimatedEnumeration xChannelSelector; | 19955 final SVGAnimatedEnumeration xChannelSelector; |
| 19956 | 19956 |
| 19957 final SVGAnimatedEnumeration yChannelSelector; | 19957 final SVGAnimatedEnumeration yChannelSelector; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20073 final SVGAnimatedString in1; | 20073 final SVGAnimatedString in1; |
| 20074 } | 20074 } |
| 20075 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20075 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20076 // for details. All rights reserved. Use of this source code is governed by a | 20076 // for details. All rights reserved. Use of this source code is governed by a |
| 20077 // BSD-style license that can be found in the LICENSE file. | 20077 // BSD-style license that can be found in the LICENSE file. |
| 20078 | 20078 |
| 20079 // WARNING: Do not edit - generated code. | 20079 // WARNING: Do not edit - generated code. |
| 20080 | 20080 |
| 20081 interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardA
ttributes { | 20081 interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardA
ttributes { |
| 20082 | 20082 |
| 20083 static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; | 20083 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
| 20084 | 20084 |
| 20085 static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; | 20085 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; |
| 20086 | 20086 |
| 20087 static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; | 20087 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; |
| 20088 | 20088 |
| 20089 final SVGAnimatedString in1; | 20089 final SVGAnimatedString in1; |
| 20090 | 20090 |
| 20091 final SVGAnimatedEnumeration operator; | 20091 final SVGAnimatedEnumeration operator; |
| 20092 | 20092 |
| 20093 final SVGAnimatedNumber radiusX; | 20093 final SVGAnimatedNumber radiusX; |
| 20094 | 20094 |
| 20095 final SVGAnimatedNumber radiusY; | 20095 final SVGAnimatedNumber radiusY; |
| 20096 | 20096 |
| 20097 void setRadius(num radiusX, num radiusY); | 20097 void setRadius(num radiusX, num radiusY); |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20175 final SVGAnimatedString in1; | 20175 final SVGAnimatedString in1; |
| 20176 } | 20176 } |
| 20177 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20177 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20178 // for details. All rights reserved. Use of this source code is governed by a | 20178 // for details. All rights reserved. Use of this source code is governed by a |
| 20179 // BSD-style license that can be found in the LICENSE file. | 20179 // BSD-style license that can be found in the LICENSE file. |
| 20180 | 20180 |
| 20181 // WARNING: Do not edit - generated code. | 20181 // WARNING: Do not edit - generated code. |
| 20182 | 20182 |
| 20183 interface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardA
ttributes { | 20183 interface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardA
ttributes { |
| 20184 | 20184 |
| 20185 static final int SVG_STITCHTYPE_NOSTITCH = 2; | 20185 static const int SVG_STITCHTYPE_NOSTITCH = 2; |
| 20186 | 20186 |
| 20187 static final int SVG_STITCHTYPE_STITCH = 1; | 20187 static const int SVG_STITCHTYPE_STITCH = 1; |
| 20188 | 20188 |
| 20189 static final int SVG_STITCHTYPE_UNKNOWN = 0; | 20189 static const int SVG_STITCHTYPE_UNKNOWN = 0; |
| 20190 | 20190 |
| 20191 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; | 20191 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; |
| 20192 | 20192 |
| 20193 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2; | 20193 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; |
| 20194 | 20194 |
| 20195 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0; | 20195 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; |
| 20196 | 20196 |
| 20197 final SVGAnimatedNumber baseFrequencyX; | 20197 final SVGAnimatedNumber baseFrequencyX; |
| 20198 | 20198 |
| 20199 final SVGAnimatedNumber baseFrequencyY; | 20199 final SVGAnimatedNumber baseFrequencyY; |
| 20200 | 20200 |
| 20201 final SVGAnimatedInteger numOctaves; | 20201 final SVGAnimatedInteger numOctaves; |
| 20202 | 20202 |
| 20203 final SVGAnimatedNumber seed; | 20203 final SVGAnimatedNumber seed; |
| 20204 | 20204 |
| 20205 final SVGAnimatedEnumeration stitchTiles; | 20205 final SVGAnimatedEnumeration stitchTiles; |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20363 num y; | 20363 num y; |
| 20364 } | 20364 } |
| 20365 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20365 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20366 // for details. All rights reserved. Use of this source code is governed by a | 20366 // for details. All rights reserved. Use of this source code is governed by a |
| 20367 // BSD-style license that can be found in the LICENSE file. | 20367 // BSD-style license that can be found in the LICENSE file. |
| 20368 | 20368 |
| 20369 // WARNING: Do not edit - generated code. | 20369 // WARNING: Do not edit - generated code. |
| 20370 | 20370 |
| 20371 interface SVGGradientElement extends SVGElement, SVGURIReference, SVGExternalRes
ourcesRequired, SVGStylable { | 20371 interface SVGGradientElement extends SVGElement, SVGURIReference, SVGExternalRes
ourcesRequired, SVGStylable { |
| 20372 | 20372 |
| 20373 static final int SVG_SPREADMETHOD_PAD = 1; | 20373 static const int SVG_SPREADMETHOD_PAD = 1; |
| 20374 | 20374 |
| 20375 static final int SVG_SPREADMETHOD_REFLECT = 2; | 20375 static const int SVG_SPREADMETHOD_REFLECT = 2; |
| 20376 | 20376 |
| 20377 static final int SVG_SPREADMETHOD_REPEAT = 3; | 20377 static const int SVG_SPREADMETHOD_REPEAT = 3; |
| 20378 | 20378 |
| 20379 static final int SVG_SPREADMETHOD_UNKNOWN = 0; | 20379 static const int SVG_SPREADMETHOD_UNKNOWN = 0; |
| 20380 | 20380 |
| 20381 final SVGAnimatedTransformList gradientTransform; | 20381 final SVGAnimatedTransformList gradientTransform; |
| 20382 | 20382 |
| 20383 final SVGAnimatedEnumeration gradientUnits; | 20383 final SVGAnimatedEnumeration gradientUnits; |
| 20384 | 20384 |
| 20385 final SVGAnimatedEnumeration spreadMethod; | 20385 final SVGAnimatedEnumeration spreadMethod; |
| 20386 } | 20386 } |
| 20387 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20387 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20388 // for details. All rights reserved. Use of this source code is governed by a | 20388 // for details. All rights reserved. Use of this source code is governed by a |
| 20389 // BSD-style license that can be found in the LICENSE file. | 20389 // BSD-style license that can be found in the LICENSE file. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20423 String xmlspace; | 20423 String xmlspace; |
| 20424 } | 20424 } |
| 20425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20426 // for details. All rights reserved. Use of this source code is governed by a | 20426 // for details. All rights reserved. Use of this source code is governed by a |
| 20427 // BSD-style license that can be found in the LICENSE file. | 20427 // BSD-style license that can be found in the LICENSE file. |
| 20428 | 20428 |
| 20429 // WARNING: Do not edit - generated code. | 20429 // WARNING: Do not edit - generated code. |
| 20430 | 20430 |
| 20431 interface SVGLength { | 20431 interface SVGLength { |
| 20432 | 20432 |
| 20433 static final int SVG_LENGTHTYPE_CM = 6; | 20433 static const int SVG_LENGTHTYPE_CM = 6; |
| 20434 | 20434 |
| 20435 static final int SVG_LENGTHTYPE_EMS = 3; | 20435 static const int SVG_LENGTHTYPE_EMS = 3; |
| 20436 | 20436 |
| 20437 static final int SVG_LENGTHTYPE_EXS = 4; | 20437 static const int SVG_LENGTHTYPE_EXS = 4; |
| 20438 | 20438 |
| 20439 static final int SVG_LENGTHTYPE_IN = 8; | 20439 static const int SVG_LENGTHTYPE_IN = 8; |
| 20440 | 20440 |
| 20441 static final int SVG_LENGTHTYPE_MM = 7; | 20441 static const int SVG_LENGTHTYPE_MM = 7; |
| 20442 | 20442 |
| 20443 static final int SVG_LENGTHTYPE_NUMBER = 1; | 20443 static const int SVG_LENGTHTYPE_NUMBER = 1; |
| 20444 | 20444 |
| 20445 static final int SVG_LENGTHTYPE_PC = 10; | 20445 static const int SVG_LENGTHTYPE_PC = 10; |
| 20446 | 20446 |
| 20447 static final int SVG_LENGTHTYPE_PERCENTAGE = 2; | 20447 static const int SVG_LENGTHTYPE_PERCENTAGE = 2; |
| 20448 | 20448 |
| 20449 static final int SVG_LENGTHTYPE_PT = 9; | 20449 static const int SVG_LENGTHTYPE_PT = 9; |
| 20450 | 20450 |
| 20451 static final int SVG_LENGTHTYPE_PX = 5; | 20451 static const int SVG_LENGTHTYPE_PX = 5; |
| 20452 | 20452 |
| 20453 static final int SVG_LENGTHTYPE_UNKNOWN = 0; | 20453 static const int SVG_LENGTHTYPE_UNKNOWN = 0; |
| 20454 | 20454 |
| 20455 final int unitType; | 20455 final int unitType; |
| 20456 | 20456 |
| 20457 num value; | 20457 num value; |
| 20458 | 20458 |
| 20459 String valueAsString; | 20459 String valueAsString; |
| 20460 | 20460 |
| 20461 num valueInSpecifiedUnits; | 20461 num valueInSpecifiedUnits; |
| 20462 | 20462 |
| 20463 void convertToSpecifiedUnits(int unitType); | 20463 void convertToSpecifiedUnits(int unitType); |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20549 interface SVGMPathElement extends SVGElement, SVGURIReference, SVGExternalResour
cesRequired { | 20549 interface SVGMPathElement extends SVGElement, SVGURIReference, SVGExternalResour
cesRequired { |
| 20550 } | 20550 } |
| 20551 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20551 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20552 // for details. All rights reserved. Use of this source code is governed by a | 20552 // for details. All rights reserved. Use of this source code is governed by a |
| 20553 // BSD-style license that can be found in the LICENSE file. | 20553 // BSD-style license that can be found in the LICENSE file. |
| 20554 | 20554 |
| 20555 // WARNING: Do not edit - generated code. | 20555 // WARNING: Do not edit - generated code. |
| 20556 | 20556 |
| 20557 interface SVGMarkerElement extends SVGElement, SVGLangSpace, SVGExternalResource
sRequired, SVGStylable, SVGFitToViewBox { | 20557 interface SVGMarkerElement extends SVGElement, SVGLangSpace, SVGExternalResource
sRequired, SVGStylable, SVGFitToViewBox { |
| 20558 | 20558 |
| 20559 static final int SVG_MARKERUNITS_STROKEWIDTH = 2; | 20559 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; |
| 20560 | 20560 |
| 20561 static final int SVG_MARKERUNITS_UNKNOWN = 0; | 20561 static const int SVG_MARKERUNITS_UNKNOWN = 0; |
| 20562 | 20562 |
| 20563 static final int SVG_MARKERUNITS_USERSPACEONUSE = 1; | 20563 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1; |
| 20564 | 20564 |
| 20565 static final int SVG_MARKER_ORIENT_ANGLE = 2; | 20565 static const int SVG_MARKER_ORIENT_ANGLE = 2; |
| 20566 | 20566 |
| 20567 static final int SVG_MARKER_ORIENT_AUTO = 1; | 20567 static const int SVG_MARKER_ORIENT_AUTO = 1; |
| 20568 | 20568 |
| 20569 static final int SVG_MARKER_ORIENT_UNKNOWN = 0; | 20569 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; |
| 20570 | 20570 |
| 20571 final SVGAnimatedLength markerHeight; | 20571 final SVGAnimatedLength markerHeight; |
| 20572 | 20572 |
| 20573 final SVGAnimatedEnumeration markerUnits; | 20573 final SVGAnimatedEnumeration markerUnits; |
| 20574 | 20574 |
| 20575 final SVGAnimatedLength markerWidth; | 20575 final SVGAnimatedLength markerWidth; |
| 20576 | 20576 |
| 20577 final SVGAnimatedAngle orientAngle; | 20577 final SVGAnimatedAngle orientAngle; |
| 20578 | 20578 |
| 20579 final SVGAnimatedEnumeration orientType; | 20579 final SVGAnimatedEnumeration orientType; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20699 SVGNumber replaceItem(SVGNumber item, int index); | 20699 SVGNumber replaceItem(SVGNumber item, int index); |
| 20700 } | 20700 } |
| 20701 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20701 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20702 // for details. All rights reserved. Use of this source code is governed by a | 20702 // for details. All rights reserved. Use of this source code is governed by a |
| 20703 // BSD-style license that can be found in the LICENSE file. | 20703 // BSD-style license that can be found in the LICENSE file. |
| 20704 | 20704 |
| 20705 // WARNING: Do not edit - generated code. | 20705 // WARNING: Do not edit - generated code. |
| 20706 | 20706 |
| 20707 interface SVGPaint extends SVGColor { | 20707 interface SVGPaint extends SVGColor { |
| 20708 | 20708 |
| 20709 static final int SVG_PAINTTYPE_CURRENTCOLOR = 102; | 20709 static const int SVG_PAINTTYPE_CURRENTCOLOR = 102; |
| 20710 | 20710 |
| 20711 static final int SVG_PAINTTYPE_NONE = 101; | 20711 static const int SVG_PAINTTYPE_NONE = 101; |
| 20712 | 20712 |
| 20713 static final int SVG_PAINTTYPE_RGBCOLOR = 1; | 20713 static const int SVG_PAINTTYPE_RGBCOLOR = 1; |
| 20714 | 20714 |
| 20715 static final int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; | 20715 static const int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 20716 | 20716 |
| 20717 static final int SVG_PAINTTYPE_UNKNOWN = 0; | 20717 static const int SVG_PAINTTYPE_UNKNOWN = 0; |
| 20718 | 20718 |
| 20719 static final int SVG_PAINTTYPE_URI = 107; | 20719 static const int SVG_PAINTTYPE_URI = 107; |
| 20720 | 20720 |
| 20721 static final int SVG_PAINTTYPE_URI_CURRENTCOLOR = 104; | 20721 static const int SVG_PAINTTYPE_URI_CURRENTCOLOR = 104; |
| 20722 | 20722 |
| 20723 static final int SVG_PAINTTYPE_URI_NONE = 103; | 20723 static const int SVG_PAINTTYPE_URI_NONE = 103; |
| 20724 | 20724 |
| 20725 static final int SVG_PAINTTYPE_URI_RGBCOLOR = 105; | 20725 static const int SVG_PAINTTYPE_URI_RGBCOLOR = 105; |
| 20726 | 20726 |
| 20727 static final int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106; | 20727 static const int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106; |
| 20728 | 20728 |
| 20729 final int paintType; | 20729 final int paintType; |
| 20730 | 20730 |
| 20731 final String uri; | 20731 final String uri; |
| 20732 | 20732 |
| 20733 void setPaint(int paintType, String uri, String rgbColor, String iccColor); | 20733 void setPaint(int paintType, String uri, String rgbColor, String iccColor); |
| 20734 | 20734 |
| 20735 void setUri(String uri); | 20735 void setUri(String uri); |
| 20736 } | 20736 } |
| 20737 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20737 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20797 num getTotalLength(); | 20797 num getTotalLength(); |
| 20798 } | 20798 } |
| 20799 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20799 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20800 // for details. All rights reserved. Use of this source code is governed by a | 20800 // for details. All rights reserved. Use of this source code is governed by a |
| 20801 // BSD-style license that can be found in the LICENSE file. | 20801 // BSD-style license that can be found in the LICENSE file. |
| 20802 | 20802 |
| 20803 // WARNING: Do not edit - generated code. | 20803 // WARNING: Do not edit - generated code. |
| 20804 | 20804 |
| 20805 interface SVGPathSeg { | 20805 interface SVGPathSeg { |
| 20806 | 20806 |
| 20807 static final int PATHSEG_ARC_ABS = 10; | 20807 static const int PATHSEG_ARC_ABS = 10; |
| 20808 | 20808 |
| 20809 static final int PATHSEG_ARC_REL = 11; | 20809 static const int PATHSEG_ARC_REL = 11; |
| 20810 | 20810 |
| 20811 static final int PATHSEG_CLOSEPATH = 1; | 20811 static const int PATHSEG_CLOSEPATH = 1; |
| 20812 | 20812 |
| 20813 static final int PATHSEG_CURVETO_CUBIC_ABS = 6; | 20813 static const int PATHSEG_CURVETO_CUBIC_ABS = 6; |
| 20814 | 20814 |
| 20815 static final int PATHSEG_CURVETO_CUBIC_REL = 7; | 20815 static const int PATHSEG_CURVETO_CUBIC_REL = 7; |
| 20816 | 20816 |
| 20817 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; | 20817 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; |
| 20818 | 20818 |
| 20819 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; | 20819 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; |
| 20820 | 20820 |
| 20821 static final int PATHSEG_CURVETO_QUADRATIC_ABS = 8; | 20821 static const int PATHSEG_CURVETO_QUADRATIC_ABS = 8; |
| 20822 | 20822 |
| 20823 static final int PATHSEG_CURVETO_QUADRATIC_REL = 9; | 20823 static const int PATHSEG_CURVETO_QUADRATIC_REL = 9; |
| 20824 | 20824 |
| 20825 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; | 20825 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; |
| 20826 | 20826 |
| 20827 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; | 20827 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; |
| 20828 | 20828 |
| 20829 static final int PATHSEG_LINETO_ABS = 4; | 20829 static const int PATHSEG_LINETO_ABS = 4; |
| 20830 | 20830 |
| 20831 static final int PATHSEG_LINETO_HORIZONTAL_ABS = 12; | 20831 static const int PATHSEG_LINETO_HORIZONTAL_ABS = 12; |
| 20832 | 20832 |
| 20833 static final int PATHSEG_LINETO_HORIZONTAL_REL = 13; | 20833 static const int PATHSEG_LINETO_HORIZONTAL_REL = 13; |
| 20834 | 20834 |
| 20835 static final int PATHSEG_LINETO_REL = 5; | 20835 static const int PATHSEG_LINETO_REL = 5; |
| 20836 | 20836 |
| 20837 static final int PATHSEG_LINETO_VERTICAL_ABS = 14; | 20837 static const int PATHSEG_LINETO_VERTICAL_ABS = 14; |
| 20838 | 20838 |
| 20839 static final int PATHSEG_LINETO_VERTICAL_REL = 15; | 20839 static const int PATHSEG_LINETO_VERTICAL_REL = 15; |
| 20840 | 20840 |
| 20841 static final int PATHSEG_MOVETO_ABS = 2; | 20841 static const int PATHSEG_MOVETO_ABS = 2; |
| 20842 | 20842 |
| 20843 static final int PATHSEG_MOVETO_REL = 3; | 20843 static const int PATHSEG_MOVETO_REL = 3; |
| 20844 | 20844 |
| 20845 static final int PATHSEG_UNKNOWN = 0; | 20845 static const int PATHSEG_UNKNOWN = 0; |
| 20846 | 20846 |
| 20847 final int pathSegType; | 20847 final int pathSegType; |
| 20848 | 20848 |
| 20849 final String pathSegTypeAsLetter; | 20849 final String pathSegTypeAsLetter; |
| 20850 } | 20850 } |
| 20851 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20851 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20852 // for details. All rights reserved. Use of this source code is governed by a | 20852 // for details. All rights reserved. Use of this source code is governed by a |
| 20853 // BSD-style license that can be found in the LICENSE file. | 20853 // BSD-style license that can be found in the LICENSE file. |
| 20854 | 20854 |
| 20855 // WARNING: Do not edit - generated code. | 20855 // WARNING: Do not edit - generated code. |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21225 final SVGPointList points; | 21225 final SVGPointList points; |
| 21226 } | 21226 } |
| 21227 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21227 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21228 // for details. All rights reserved. Use of this source code is governed by a | 21228 // for details. All rights reserved. Use of this source code is governed by a |
| 21229 // BSD-style license that can be found in the LICENSE file. | 21229 // BSD-style license that can be found in the LICENSE file. |
| 21230 | 21230 |
| 21231 // WARNING: Do not edit - generated code. | 21231 // WARNING: Do not edit - generated code. |
| 21232 | 21232 |
| 21233 interface SVGPreserveAspectRatio { | 21233 interface SVGPreserveAspectRatio { |
| 21234 | 21234 |
| 21235 static final int SVG_MEETORSLICE_MEET = 1; | 21235 static const int SVG_MEETORSLICE_MEET = 1; |
| 21236 | 21236 |
| 21237 static final int SVG_MEETORSLICE_SLICE = 2; | 21237 static const int SVG_MEETORSLICE_SLICE = 2; |
| 21238 | 21238 |
| 21239 static final int SVG_MEETORSLICE_UNKNOWN = 0; | 21239 static const int SVG_MEETORSLICE_UNKNOWN = 0; |
| 21240 | 21240 |
| 21241 static final int SVG_PRESERVEASPECTRATIO_NONE = 1; | 21241 static const int SVG_PRESERVEASPECTRATIO_NONE = 1; |
| 21242 | 21242 |
| 21243 static final int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; | 21243 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; |
| 21244 | 21244 |
| 21245 static final int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10; | 21245 static const int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10; |
| 21246 | 21246 |
| 21247 static final int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7; | 21247 static const int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7; |
| 21248 | 21248 |
| 21249 static final int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4; | 21249 static const int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4; |
| 21250 | 21250 |
| 21251 static final int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9; | 21251 static const int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9; |
| 21252 | 21252 |
| 21253 static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; | 21253 static const int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; |
| 21254 | 21254 |
| 21255 static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; | 21255 static const int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; |
| 21256 | 21256 |
| 21257 static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; | 21257 static const int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; |
| 21258 | 21258 |
| 21259 static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; | 21259 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; |
| 21260 | 21260 |
| 21261 static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; | 21261 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; |
| 21262 | 21262 |
| 21263 int align; | 21263 int align; |
| 21264 | 21264 |
| 21265 int meetOrSlice; | 21265 int meetOrSlice; |
| 21266 } | 21266 } |
| 21267 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21267 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21268 // for details. All rights reserved. Use of this source code is governed by a | 21268 // for details. All rights reserved. Use of this source code is governed by a |
| 21269 // BSD-style license that can be found in the LICENSE file. | 21269 // BSD-style license that can be found in the LICENSE file. |
| 21270 | 21270 |
| 21271 // WARNING: Do not edit - generated code. | 21271 // WARNING: Do not edit - generated code. |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21319 final SVGAnimatedLength y; | 21319 final SVGAnimatedLength y; |
| 21320 } | 21320 } |
| 21321 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21321 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21322 // for details. All rights reserved. Use of this source code is governed by a | 21322 // for details. All rights reserved. Use of this source code is governed by a |
| 21323 // BSD-style license that can be found in the LICENSE file. | 21323 // BSD-style license that can be found in the LICENSE file. |
| 21324 | 21324 |
| 21325 // WARNING: Do not edit - generated code. | 21325 // WARNING: Do not edit - generated code. |
| 21326 | 21326 |
| 21327 interface SVGRenderingIntent { | 21327 interface SVGRenderingIntent { |
| 21328 | 21328 |
| 21329 static final int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; | 21329 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; |
| 21330 | 21330 |
| 21331 static final int RENDERING_INTENT_AUTO = 1; | 21331 static const int RENDERING_INTENT_AUTO = 1; |
| 21332 | 21332 |
| 21333 static final int RENDERING_INTENT_PERCEPTUAL = 2; | 21333 static const int RENDERING_INTENT_PERCEPTUAL = 2; |
| 21334 | 21334 |
| 21335 static final int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; | 21335 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; |
| 21336 | 21336 |
| 21337 static final int RENDERING_INTENT_SATURATION = 4; | 21337 static const int RENDERING_INTENT_SATURATION = 4; |
| 21338 | 21338 |
| 21339 static final int RENDERING_INTENT_UNKNOWN = 0; | 21339 static const int RENDERING_INTENT_UNKNOWN = 0; |
| 21340 } | 21340 } |
| 21341 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21341 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21342 // for details. All rights reserved. Use of this source code is governed by a | 21342 // for details. All rights reserved. Use of this source code is governed by a |
| 21343 // BSD-style license that can be found in the LICENSE file. | 21343 // BSD-style license that can be found in the LICENSE file. |
| 21344 | 21344 |
| 21345 // WARNING: Do not edit - generated code. | 21345 // WARNING: Do not edit - generated code. |
| 21346 | 21346 |
| 21347 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan { | 21347 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan { |
| 21348 | 21348 |
| 21349 String contentScriptType; | 21349 String contentScriptType; |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21553 bool hasExtension(String extension); | 21553 bool hasExtension(String extension); |
| 21554 } | 21554 } |
| 21555 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21555 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21556 // for details. All rights reserved. Use of this source code is governed by a | 21556 // for details. All rights reserved. Use of this source code is governed by a |
| 21557 // BSD-style license that can be found in the LICENSE file. | 21557 // BSD-style license that can be found in the LICENSE file. |
| 21558 | 21558 |
| 21559 // WARNING: Do not edit - generated code. | 21559 // WARNING: Do not edit - generated code. |
| 21560 | 21560 |
| 21561 interface SVGTextContentElement extends SVGElement, SVGTests, SVGLangSpace, SVGE
xternalResourcesRequired, SVGStylable { | 21561 interface SVGTextContentElement extends SVGElement, SVGTests, SVGLangSpace, SVGE
xternalResourcesRequired, SVGStylable { |
| 21562 | 21562 |
| 21563 static final int LENGTHADJUST_SPACING = 1; | 21563 static const int LENGTHADJUST_SPACING = 1; |
| 21564 | 21564 |
| 21565 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; | 21565 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; |
| 21566 | 21566 |
| 21567 static final int LENGTHADJUST_UNKNOWN = 0; | 21567 static const int LENGTHADJUST_UNKNOWN = 0; |
| 21568 | 21568 |
| 21569 final SVGAnimatedEnumeration lengthAdjust; | 21569 final SVGAnimatedEnumeration lengthAdjust; |
| 21570 | 21570 |
| 21571 final SVGAnimatedLength textLength; | 21571 final SVGAnimatedLength textLength; |
| 21572 | 21572 |
| 21573 int getCharNumAtPosition(SVGPoint point); | 21573 int getCharNumAtPosition(SVGPoint point); |
| 21574 | 21574 |
| 21575 num getComputedTextLength(); | 21575 num getComputedTextLength(); |
| 21576 | 21576 |
| 21577 SVGPoint getEndPositionOfChar(int offset); | 21577 SVGPoint getEndPositionOfChar(int offset); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 21597 interface SVGTextElement extends SVGTextPositioningElement, SVGTransformable { | 21597 interface SVGTextElement extends SVGTextPositioningElement, SVGTransformable { |
| 21598 } | 21598 } |
| 21599 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21599 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21600 // for details. All rights reserved. Use of this source code is governed by a | 21600 // for details. All rights reserved. Use of this source code is governed by a |
| 21601 // BSD-style license that can be found in the LICENSE file. | 21601 // BSD-style license that can be found in the LICENSE file. |
| 21602 | 21602 |
| 21603 // WARNING: Do not edit - generated code. | 21603 // WARNING: Do not edit - generated code. |
| 21604 | 21604 |
| 21605 interface SVGTextPathElement extends SVGTextContentElement, SVGURIReference { | 21605 interface SVGTextPathElement extends SVGTextContentElement, SVGURIReference { |
| 21606 | 21606 |
| 21607 static final int TEXTPATH_METHODTYPE_ALIGN = 1; | 21607 static const int TEXTPATH_METHODTYPE_ALIGN = 1; |
| 21608 | 21608 |
| 21609 static final int TEXTPATH_METHODTYPE_STRETCH = 2; | 21609 static const int TEXTPATH_METHODTYPE_STRETCH = 2; |
| 21610 | 21610 |
| 21611 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0; | 21611 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0; |
| 21612 | 21612 |
| 21613 static final int TEXTPATH_SPACINGTYPE_AUTO = 1; | 21613 static const int TEXTPATH_SPACINGTYPE_AUTO = 1; |
| 21614 | 21614 |
| 21615 static final int TEXTPATH_SPACINGTYPE_EXACT = 2; | 21615 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; |
| 21616 | 21616 |
| 21617 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; | 21617 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; |
| 21618 | 21618 |
| 21619 final SVGAnimatedEnumeration method; | 21619 final SVGAnimatedEnumeration method; |
| 21620 | 21620 |
| 21621 final SVGAnimatedEnumeration spacing; | 21621 final SVGAnimatedEnumeration spacing; |
| 21622 | 21622 |
| 21623 final SVGAnimatedLength startOffset; | 21623 final SVGAnimatedLength startOffset; |
| 21624 } | 21624 } |
| 21625 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21625 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21626 // for details. All rights reserved. Use of this source code is governed by a | 21626 // for details. All rights reserved. Use of this source code is governed by a |
| 21627 // BSD-style license that can be found in the LICENSE file. | 21627 // BSD-style license that can be found in the LICENSE file. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 21649 interface SVGTitleElement extends SVGElement, SVGLangSpace, SVGStylable { | 21649 interface SVGTitleElement extends SVGElement, SVGLangSpace, SVGStylable { |
| 21650 } | 21650 } |
| 21651 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21651 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21652 // for details. All rights reserved. Use of this source code is governed by a | 21652 // for details. All rights reserved. Use of this source code is governed by a |
| 21653 // BSD-style license that can be found in the LICENSE file. | 21653 // BSD-style license that can be found in the LICENSE file. |
| 21654 | 21654 |
| 21655 // WARNING: Do not edit - generated code. | 21655 // WARNING: Do not edit - generated code. |
| 21656 | 21656 |
| 21657 interface SVGTransform { | 21657 interface SVGTransform { |
| 21658 | 21658 |
| 21659 static final int SVG_TRANSFORM_MATRIX = 1; | 21659 static const int SVG_TRANSFORM_MATRIX = 1; |
| 21660 | 21660 |
| 21661 static final int SVG_TRANSFORM_ROTATE = 4; | 21661 static const int SVG_TRANSFORM_ROTATE = 4; |
| 21662 | 21662 |
| 21663 static final int SVG_TRANSFORM_SCALE = 3; | 21663 static const int SVG_TRANSFORM_SCALE = 3; |
| 21664 | 21664 |
| 21665 static final int SVG_TRANSFORM_SKEWX = 5; | 21665 static const int SVG_TRANSFORM_SKEWX = 5; |
| 21666 | 21666 |
| 21667 static final int SVG_TRANSFORM_SKEWY = 6; | 21667 static const int SVG_TRANSFORM_SKEWY = 6; |
| 21668 | 21668 |
| 21669 static final int SVG_TRANSFORM_TRANSLATE = 2; | 21669 static const int SVG_TRANSFORM_TRANSLATE = 2; |
| 21670 | 21670 |
| 21671 static final int SVG_TRANSFORM_UNKNOWN = 0; | 21671 static const int SVG_TRANSFORM_UNKNOWN = 0; |
| 21672 | 21672 |
| 21673 final num angle; | 21673 final num angle; |
| 21674 | 21674 |
| 21675 final SVGMatrix matrix; | 21675 final SVGMatrix matrix; |
| 21676 | 21676 |
| 21677 final int type; | 21677 final int type; |
| 21678 | 21678 |
| 21679 void setMatrix(SVGMatrix matrix); | 21679 void setMatrix(SVGMatrix matrix); |
| 21680 | 21680 |
| 21681 void setRotate(num angle, num cx, num cy); | 21681 void setRotate(num angle, num cx, num cy); |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21737 final SVGAnimatedString href; | 21737 final SVGAnimatedString href; |
| 21738 } | 21738 } |
| 21739 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21739 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21740 // for details. All rights reserved. Use of this source code is governed by a | 21740 // for details. All rights reserved. Use of this source code is governed by a |
| 21741 // BSD-style license that can be found in the LICENSE file. | 21741 // BSD-style license that can be found in the LICENSE file. |
| 21742 | 21742 |
| 21743 // WARNING: Do not edit - generated code. | 21743 // WARNING: Do not edit - generated code. |
| 21744 | 21744 |
| 21745 interface SVGUnitTypes { | 21745 interface SVGUnitTypes { |
| 21746 | 21746 |
| 21747 static final int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; | 21747 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; |
| 21748 | 21748 |
| 21749 static final int SVG_UNIT_TYPE_UNKNOWN = 0; | 21749 static const int SVG_UNIT_TYPE_UNKNOWN = 0; |
| 21750 | 21750 |
| 21751 static final int SVG_UNIT_TYPE_USERSPACEONUSE = 1; | 21751 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; |
| 21752 } | 21752 } |
| 21753 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21753 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21754 // for details. All rights reserved. Use of this source code is governed by a | 21754 // for details. All rights reserved. Use of this source code is governed by a |
| 21755 // BSD-style license that can be found in the LICENSE file. | 21755 // BSD-style license that can be found in the LICENSE file. |
| 21756 | 21756 |
| 21757 // WARNING: Do not edit - generated code. | 21757 // WARNING: Do not edit - generated code. |
| 21758 | 21758 |
| 21759 interface SVGUseElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSp
ace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable { | 21759 interface SVGUseElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSp
ace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable { |
| 21760 | 21760 |
| 21761 final SVGElementInstance animatedInstanceRoot; | 21761 final SVGElementInstance animatedInstanceRoot; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21815 int zoomAndPan; | 21815 int zoomAndPan; |
| 21816 } | 21816 } |
| 21817 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21817 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21818 // for details. All rights reserved. Use of this source code is governed by a | 21818 // for details. All rights reserved. Use of this source code is governed by a |
| 21819 // BSD-style license that can be found in the LICENSE file. | 21819 // BSD-style license that can be found in the LICENSE file. |
| 21820 | 21820 |
| 21821 // WARNING: Do not edit - generated code. | 21821 // WARNING: Do not edit - generated code. |
| 21822 | 21822 |
| 21823 interface SVGZoomAndPan { | 21823 interface SVGZoomAndPan { |
| 21824 | 21824 |
| 21825 static final int SVG_ZOOMANDPAN_DISABLE = 1; | 21825 static const int SVG_ZOOMANDPAN_DISABLE = 1; |
| 21826 | 21826 |
| 21827 static final int SVG_ZOOMANDPAN_MAGNIFY = 2; | 21827 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; |
| 21828 | 21828 |
| 21829 static final int SVG_ZOOMANDPAN_UNKNOWN = 0; | 21829 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; |
| 21830 | 21830 |
| 21831 int zoomAndPan; | 21831 int zoomAndPan; |
| 21832 } | 21832 } |
| 21833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21834 // for details. All rights reserved. Use of this source code is governed by a | 21834 // for details. All rights reserved. Use of this source code is governed by a |
| 21835 // BSD-style license that can be found in the LICENSE file. | 21835 // BSD-style license that can be found in the LICENSE file. |
| 21836 | 21836 |
| 21837 // WARNING: Do not edit - generated code. | 21837 // WARNING: Do not edit - generated code. |
| 21838 | 21838 |
| 21839 interface SVGZoomEvent extends UIEvent { | 21839 interface SVGZoomEvent extends UIEvent { |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22122 final String transcript; | 22122 final String transcript; |
| 22123 } | 22123 } |
| 22124 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22124 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22125 // for details. All rights reserved. Use of this source code is governed by a | 22125 // for details. All rights reserved. Use of this source code is governed by a |
| 22126 // BSD-style license that can be found in the LICENSE file. | 22126 // BSD-style license that can be found in the LICENSE file. |
| 22127 | 22127 |
| 22128 // WARNING: Do not edit - generated code. | 22128 // WARNING: Do not edit - generated code. |
| 22129 | 22129 |
| 22130 interface SpeechRecognitionError extends Event { | 22130 interface SpeechRecognitionError extends Event { |
| 22131 | 22131 |
| 22132 static final int ABORTED = 2; | 22132 static const int ABORTED = 2; |
| 22133 | 22133 |
| 22134 static final int AUDIO_CAPTURE = 3; | 22134 static const int AUDIO_CAPTURE = 3; |
| 22135 | 22135 |
| 22136 static final int BAD_GRAMMAR = 7; | 22136 static const int BAD_GRAMMAR = 7; |
| 22137 | 22137 |
| 22138 static final int LANGUAGE_NOT_SUPPORTED = 8; | 22138 static const int LANGUAGE_NOT_SUPPORTED = 8; |
| 22139 | 22139 |
| 22140 static final int NETWORK = 4; | 22140 static const int NETWORK = 4; |
| 22141 | 22141 |
| 22142 static final int NOT_ALLOWED = 5; | 22142 static const int NOT_ALLOWED = 5; |
| 22143 | 22143 |
| 22144 static final int NO_SPEECH = 1; | 22144 static const int NO_SPEECH = 1; |
| 22145 | 22145 |
| 22146 static final int OTHER = 0; | 22146 static const int OTHER = 0; |
| 22147 | 22147 |
| 22148 static final int SERVICE_NOT_ALLOWED = 6; | 22148 static const int SERVICE_NOT_ALLOWED = 6; |
| 22149 | 22149 |
| 22150 final int code; | 22150 final int code; |
| 22151 | 22151 |
| 22152 final String message; | 22152 final String message; |
| 22153 } | 22153 } |
| 22154 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22154 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22155 // for details. All rights reserved. Use of this source code is governed by a | 22155 // for details. All rights reserved. Use of this source code is governed by a |
| 22156 // BSD-style license that can be found in the LICENSE file. | 22156 // BSD-style license that can be found in the LICENSE file. |
| 22157 | 22157 |
| 22158 // WARNING: Do not edit - generated code. | 22158 // WARNING: Do not edit - generated code. |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22234 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S
tring keyArg, String oldValueArg, String newValueArg, String urlArg, Storage sto
rageAreaArg); | 22234 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S
tring keyArg, String oldValueArg, String newValueArg, String urlArg, Storage sto
rageAreaArg); |
| 22235 } | 22235 } |
| 22236 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22236 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22237 // for details. All rights reserved. Use of this source code is governed by a | 22237 // for details. All rights reserved. Use of this source code is governed by a |
| 22238 // BSD-style license that can be found in the LICENSE file. | 22238 // BSD-style license that can be found in the LICENSE file. |
| 22239 | 22239 |
| 22240 // WARNING: Do not edit - generated code. | 22240 // WARNING: Do not edit - generated code. |
| 22241 | 22241 |
| 22242 interface StorageInfo { | 22242 interface StorageInfo { |
| 22243 | 22243 |
| 22244 static final int PERSISTENT = 1; | 22244 static const int PERSISTENT = 1; |
| 22245 | 22245 |
| 22246 static final int TEMPORARY = 0; | 22246 static const int TEMPORARY = 0; |
| 22247 | 22247 |
| 22248 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba
ck, StorageInfoErrorCallback errorCallback]); | 22248 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba
ck, StorageInfoErrorCallback errorCallback]); |
| 22249 | 22249 |
| 22250 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb
ack quotaCallback, StorageInfoErrorCallback errorCallback]); | 22250 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb
ack quotaCallback, StorageInfoErrorCallback errorCallback]); |
| 22251 } | 22251 } |
| 22252 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22252 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22253 // for details. All rights reserved. Use of this source code is governed by a | 22253 // for details. All rights reserved. Use of this source code is governed by a |
| 22254 // BSD-style license that can be found in the LICENSE file. | 22254 // BSD-style license that can be found in the LICENSE file. |
| 22255 | 22255 |
| 22256 // WARNING: Do not edit - generated code. | 22256 // WARNING: Do not edit - generated code. |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22360 final num width; | 22360 final num width; |
| 22361 } | 22361 } |
| 22362 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22362 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22363 // for details. All rights reserved. Use of this source code is governed by a | 22363 // for details. All rights reserved. Use of this source code is governed by a |
| 22364 // BSD-style license that can be found in the LICENSE file. | 22364 // BSD-style license that can be found in the LICENSE file. |
| 22365 | 22365 |
| 22366 // WARNING: Do not edit - generated code. | 22366 // WARNING: Do not edit - generated code. |
| 22367 | 22367 |
| 22368 interface TextTrack extends EventTarget { | 22368 interface TextTrack extends EventTarget { |
| 22369 | 22369 |
| 22370 static final int DISABLED = 0; | 22370 static const int DISABLED = 0; |
| 22371 | 22371 |
| 22372 static final int HIDDEN = 1; | 22372 static const int HIDDEN = 1; |
| 22373 | 22373 |
| 22374 static final int SHOWING = 2; | 22374 static const int SHOWING = 2; |
| 22375 | 22375 |
| 22376 final TextTrackCueList activeCues; | 22376 final TextTrackCueList activeCues; |
| 22377 | 22377 |
| 22378 final TextTrackCueList cues; | 22378 final TextTrackCueList cues; |
| 22379 | 22379 |
| 22380 final String kind; | 22380 final String kind; |
| 22381 | 22381 |
| 22382 final String label; | 22382 final String label; |
| 22383 | 22383 |
| 22384 final String language; | 22384 final String language; |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22635 // WARNING: Do not edit - generated code. | 22635 // WARNING: Do not edit - generated code. |
| 22636 | 22636 |
| 22637 interface Uint16Array extends ArrayBufferView, List<int> default _TypedArrayFact
oryProvider { | 22637 interface Uint16Array extends ArrayBufferView, List<int> default _TypedArrayFact
oryProvider { |
| 22638 | 22638 |
| 22639 Uint16Array(int length); | 22639 Uint16Array(int length); |
| 22640 | 22640 |
| 22641 Uint16Array.fromList(List<int> list); | 22641 Uint16Array.fromList(List<int> list); |
| 22642 | 22642 |
| 22643 Uint16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); | 22643 Uint16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); |
| 22644 | 22644 |
| 22645 static final int BYTES_PER_ELEMENT = 2; | 22645 static const int BYTES_PER_ELEMENT = 2; |
| 22646 | 22646 |
| 22647 final int length; | 22647 final int length; |
| 22648 | 22648 |
| 22649 void setElements(Object array, [int offset]); | 22649 void setElements(Object array, [int offset]); |
| 22650 | 22650 |
| 22651 Uint16Array subarray(int start, [int end]); | 22651 Uint16Array subarray(int start, [int end]); |
| 22652 } | 22652 } |
| 22653 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22653 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22654 // for details. All rights reserved. Use of this source code is governed by a | 22654 // for details. All rights reserved. Use of this source code is governed by a |
| 22655 // BSD-style license that can be found in the LICENSE file. | 22655 // BSD-style license that can be found in the LICENSE file. |
| 22656 | 22656 |
| 22657 // WARNING: Do not edit - generated code. | 22657 // WARNING: Do not edit - generated code. |
| 22658 | 22658 |
| 22659 interface Uint32Array extends ArrayBufferView, List<int> default _TypedArrayFact
oryProvider { | 22659 interface Uint32Array extends ArrayBufferView, List<int> default _TypedArrayFact
oryProvider { |
| 22660 | 22660 |
| 22661 Uint32Array(int length); | 22661 Uint32Array(int length); |
| 22662 | 22662 |
| 22663 Uint32Array.fromList(List<int> list); | 22663 Uint32Array.fromList(List<int> list); |
| 22664 | 22664 |
| 22665 Uint32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); | 22665 Uint32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); |
| 22666 | 22666 |
| 22667 static final int BYTES_PER_ELEMENT = 4; | 22667 static const int BYTES_PER_ELEMENT = 4; |
| 22668 | 22668 |
| 22669 final int length; | 22669 final int length; |
| 22670 | 22670 |
| 22671 void setElements(Object array, [int offset]); | 22671 void setElements(Object array, [int offset]); |
| 22672 | 22672 |
| 22673 Uint32Array subarray(int start, [int end]); | 22673 Uint32Array subarray(int start, [int end]); |
| 22674 } | 22674 } |
| 22675 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22675 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22676 // for details. All rights reserved. Use of this source code is governed by a | 22676 // for details. All rights reserved. Use of this source code is governed by a |
| 22677 // BSD-style license that can be found in the LICENSE file. | 22677 // BSD-style license that can be found in the LICENSE file. |
| 22678 | 22678 |
| 22679 // WARNING: Do not edit - generated code. | 22679 // WARNING: Do not edit - generated code. |
| 22680 | 22680 |
| 22681 interface Uint8Array extends ArrayBufferView, List<int> default _TypedArrayFacto
ryProvider { | 22681 interface Uint8Array extends ArrayBufferView, List<int> default _TypedArrayFacto
ryProvider { |
| 22682 | 22682 |
| 22683 Uint8Array(int length); | 22683 Uint8Array(int length); |
| 22684 | 22684 |
| 22685 Uint8Array.fromList(List<int> list); | 22685 Uint8Array.fromList(List<int> list); |
| 22686 | 22686 |
| 22687 Uint8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); | 22687 Uint8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); |
| 22688 | 22688 |
| 22689 static final int BYTES_PER_ELEMENT = 1; | 22689 static const int BYTES_PER_ELEMENT = 1; |
| 22690 | 22690 |
| 22691 final int length; | 22691 final int length; |
| 22692 | 22692 |
| 22693 void setElements(Object array, [int offset]); | 22693 void setElements(Object array, [int offset]); |
| 22694 | 22694 |
| 22695 Uint8Array subarray(int start, [int end]); | 22695 Uint8Array subarray(int start, [int end]); |
| 22696 } | 22696 } |
| 22697 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22697 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22698 // for details. All rights reserved. Use of this source code is governed by a | 22698 // for details. All rights reserved. Use of this source code is governed by a |
| 22699 // BSD-style license that can be found in the LICENSE file. | 22699 // BSD-style license that can be found in the LICENSE file. |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22788 interface WebGLBuffer { | 22788 interface WebGLBuffer { |
| 22789 } | 22789 } |
| 22790 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22790 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22791 // for details. All rights reserved. Use of this source code is governed by a | 22791 // for details. All rights reserved. Use of this source code is governed by a |
| 22792 // BSD-style license that can be found in the LICENSE file. | 22792 // BSD-style license that can be found in the LICENSE file. |
| 22793 | 22793 |
| 22794 // WARNING: Do not edit - generated code. | 22794 // WARNING: Do not edit - generated code. |
| 22795 | 22795 |
| 22796 interface WebGLCompressedTextureS3TC { | 22796 interface WebGLCompressedTextureS3TC { |
| 22797 | 22797 |
| 22798 static final int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; | 22798 static const int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; |
| 22799 | 22799 |
| 22800 static final int COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2; | 22800 static const int COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2; |
| 22801 | 22801 |
| 22802 static final int COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3; | 22802 static const int COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3; |
| 22803 | 22803 |
| 22804 static final int COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0; | 22804 static const int COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0; |
| 22805 } | 22805 } |
| 22806 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22806 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22807 // for details. All rights reserved. Use of this source code is governed by a | 22807 // for details. All rights reserved. Use of this source code is governed by a |
| 22808 // BSD-style license that can be found in the LICENSE file. | 22808 // BSD-style license that can be found in the LICENSE file. |
| 22809 | 22809 |
| 22810 // WARNING: Do not edit - generated code. | 22810 // WARNING: Do not edit - generated code. |
| 22811 | 22811 |
| 22812 interface WebGLContextAttributes { | 22812 interface WebGLContextAttributes { |
| 22813 | 22813 |
| 22814 bool alpha; | 22814 bool alpha; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 22834 final String statusMessage; | 22834 final String statusMessage; |
| 22835 } | 22835 } |
| 22836 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22836 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22837 // for details. All rights reserved. Use of this source code is governed by a | 22837 // for details. All rights reserved. Use of this source code is governed by a |
| 22838 // BSD-style license that can be found in the LICENSE file. | 22838 // BSD-style license that can be found in the LICENSE file. |
| 22839 | 22839 |
| 22840 // WARNING: Do not edit - generated code. | 22840 // WARNING: Do not edit - generated code. |
| 22841 | 22841 |
| 22842 interface WebGLDebugRendererInfo { | 22842 interface WebGLDebugRendererInfo { |
| 22843 | 22843 |
| 22844 static final int UNMASKED_RENDERER_WEBGL = 0x9246; | 22844 static const int UNMASKED_RENDERER_WEBGL = 0x9246; |
| 22845 | 22845 |
| 22846 static final int UNMASKED_VENDOR_WEBGL = 0x9245; | 22846 static const int UNMASKED_VENDOR_WEBGL = 0x9245; |
| 22847 } | 22847 } |
| 22848 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22848 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22849 // for details. All rights reserved. Use of this source code is governed by a | 22849 // for details. All rights reserved. Use of this source code is governed by a |
| 22850 // BSD-style license that can be found in the LICENSE file. | 22850 // BSD-style license that can be found in the LICENSE file. |
| 22851 | 22851 |
| 22852 // WARNING: Do not edit - generated code. | 22852 // WARNING: Do not edit - generated code. |
| 22853 | 22853 |
| 22854 interface WebGLDebugShaders { | 22854 interface WebGLDebugShaders { |
| 22855 | 22855 |
| 22856 String getTranslatedShaderSource(WebGLShader shader); | 22856 String getTranslatedShaderSource(WebGLShader shader); |
| 22857 } | 22857 } |
| 22858 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22858 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22859 // for details. All rights reserved. Use of this source code is governed by a | 22859 // for details. All rights reserved. Use of this source code is governed by a |
| 22860 // BSD-style license that can be found in the LICENSE file. | 22860 // BSD-style license that can be found in the LICENSE file. |
| 22861 | 22861 |
| 22862 // WARNING: Do not edit - generated code. | 22862 // WARNING: Do not edit - generated code. |
| 22863 | 22863 |
| 22864 interface WebGLDepthTexture { | 22864 interface WebGLDepthTexture { |
| 22865 | 22865 |
| 22866 static final int UNSIGNED_INT_24_8_WEBGL = 0x84FA; | 22866 static const int UNSIGNED_INT_24_8_WEBGL = 0x84FA; |
| 22867 } | 22867 } |
| 22868 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22868 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22869 // for details. All rights reserved. Use of this source code is governed by a | 22869 // for details. All rights reserved. Use of this source code is governed by a |
| 22870 // BSD-style license that can be found in the LICENSE file. | 22870 // BSD-style license that can be found in the LICENSE file. |
| 22871 | 22871 |
| 22872 // WARNING: Do not edit - generated code. | 22872 // WARNING: Do not edit - generated code. |
| 22873 | 22873 |
| 22874 interface WebGLFramebuffer { | 22874 interface WebGLFramebuffer { |
| 22875 } | 22875 } |
| 22876 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22876 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 25 matching lines...) Expand all Loading... |
| 22902 interface WebGLRenderbuffer { | 22902 interface WebGLRenderbuffer { |
| 22903 } | 22903 } |
| 22904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22905 // for details. All rights reserved. Use of this source code is governed by a | 22905 // for details. All rights reserved. Use of this source code is governed by a |
| 22906 // BSD-style license that can be found in the LICENSE file. | 22906 // BSD-style license that can be found in the LICENSE file. |
| 22907 | 22907 |
| 22908 // WARNING: Do not edit - generated code. | 22908 // WARNING: Do not edit - generated code. |
| 22909 | 22909 |
| 22910 interface WebGLRenderingContext extends CanvasRenderingContext { | 22910 interface WebGLRenderingContext extends CanvasRenderingContext { |
| 22911 | 22911 |
| 22912 static final int ACTIVE_ATTRIBUTES = 0x8B89; | 22912 static const int ACTIVE_ATTRIBUTES = 0x8B89; |
| 22913 | 22913 |
| 22914 static final int ACTIVE_TEXTURE = 0x84E0; | 22914 static const int ACTIVE_TEXTURE = 0x84E0; |
| 22915 | 22915 |
| 22916 static final int ACTIVE_UNIFORMS = 0x8B86; | 22916 static const int ACTIVE_UNIFORMS = 0x8B86; |
| 22917 | 22917 |
| 22918 static final int ALIASED_LINE_WIDTH_RANGE = 0x846E; | 22918 static const int ALIASED_LINE_WIDTH_RANGE = 0x846E; |
| 22919 | 22919 |
| 22920 static final int ALIASED_POINT_SIZE_RANGE = 0x846D; | 22920 static const int ALIASED_POINT_SIZE_RANGE = 0x846D; |
| 22921 | 22921 |
| 22922 static final int ALPHA = 0x1906; | 22922 static const int ALPHA = 0x1906; |
| 22923 | 22923 |
| 22924 static final int ALPHA_BITS = 0x0D55; | 22924 static const int ALPHA_BITS = 0x0D55; |
| 22925 | 22925 |
| 22926 static final int ALWAYS = 0x0207; | 22926 static const int ALWAYS = 0x0207; |
| 22927 | 22927 |
| 22928 static final int ARRAY_BUFFER = 0x8892; | 22928 static const int ARRAY_BUFFER = 0x8892; |
| 22929 | 22929 |
| 22930 static final int ARRAY_BUFFER_BINDING = 0x8894; | 22930 static const int ARRAY_BUFFER_BINDING = 0x8894; |
| 22931 | 22931 |
| 22932 static final int ATTACHED_SHADERS = 0x8B85; | 22932 static const int ATTACHED_SHADERS = 0x8B85; |
| 22933 | 22933 |
| 22934 static final int BACK = 0x0405; | 22934 static const int BACK = 0x0405; |
| 22935 | 22935 |
| 22936 static final int BLEND = 0x0BE2; | 22936 static const int BLEND = 0x0BE2; |
| 22937 | 22937 |
| 22938 static final int BLEND_COLOR = 0x8005; | 22938 static const int BLEND_COLOR = 0x8005; |
| 22939 | 22939 |
| 22940 static final int BLEND_DST_ALPHA = 0x80CA; | 22940 static const int BLEND_DST_ALPHA = 0x80CA; |
| 22941 | 22941 |
| 22942 static final int BLEND_DST_RGB = 0x80C8; | 22942 static const int BLEND_DST_RGB = 0x80C8; |
| 22943 | 22943 |
| 22944 static final int BLEND_EQUATION = 0x8009; | 22944 static const int BLEND_EQUATION = 0x8009; |
| 22945 | 22945 |
| 22946 static final int BLEND_EQUATION_ALPHA = 0x883D; | 22946 static const int BLEND_EQUATION_ALPHA = 0x883D; |
| 22947 | 22947 |
| 22948 static final int BLEND_EQUATION_RGB = 0x8009; | 22948 static const int BLEND_EQUATION_RGB = 0x8009; |
| 22949 | 22949 |
| 22950 static final int BLEND_SRC_ALPHA = 0x80CB; | 22950 static const int BLEND_SRC_ALPHA = 0x80CB; |
| 22951 | 22951 |
| 22952 static final int BLEND_SRC_RGB = 0x80C9; | 22952 static const int BLEND_SRC_RGB = 0x80C9; |
| 22953 | 22953 |
| 22954 static final int BLUE_BITS = 0x0D54; | 22954 static const int BLUE_BITS = 0x0D54; |
| 22955 | 22955 |
| 22956 static final int BOOL = 0x8B56; | 22956 static const int BOOL = 0x8B56; |
| 22957 | 22957 |
| 22958 static final int BOOL_VEC2 = 0x8B57; | 22958 static const int BOOL_VEC2 = 0x8B57; |
| 22959 | 22959 |
| 22960 static final int BOOL_VEC3 = 0x8B58; | 22960 static const int BOOL_VEC3 = 0x8B58; |
| 22961 | 22961 |
| 22962 static final int BOOL_VEC4 = 0x8B59; | 22962 static const int BOOL_VEC4 = 0x8B59; |
| 22963 | 22963 |
| 22964 static final int BROWSER_DEFAULT_WEBGL = 0x9244; | 22964 static const int BROWSER_DEFAULT_WEBGL = 0x9244; |
| 22965 | 22965 |
| 22966 static final int BUFFER_SIZE = 0x8764; | 22966 static const int BUFFER_SIZE = 0x8764; |
| 22967 | 22967 |
| 22968 static final int BUFFER_USAGE = 0x8765; | 22968 static const int BUFFER_USAGE = 0x8765; |
| 22969 | 22969 |
| 22970 static final int BYTE = 0x1400; | 22970 static const int BYTE = 0x1400; |
| 22971 | 22971 |
| 22972 static final int CCW = 0x0901; | 22972 static const int CCW = 0x0901; |
| 22973 | 22973 |
| 22974 static final int CLAMP_TO_EDGE = 0x812F; | 22974 static const int CLAMP_TO_EDGE = 0x812F; |
| 22975 | 22975 |
| 22976 static final int COLOR_ATTACHMENT0 = 0x8CE0; | 22976 static const int COLOR_ATTACHMENT0 = 0x8CE0; |
| 22977 | 22977 |
| 22978 static final int COLOR_BUFFER_BIT = 0x00004000; | 22978 static const int COLOR_BUFFER_BIT = 0x00004000; |
| 22979 | 22979 |
| 22980 static final int COLOR_CLEAR_VALUE = 0x0C22; | 22980 static const int COLOR_CLEAR_VALUE = 0x0C22; |
| 22981 | 22981 |
| 22982 static final int COLOR_WRITEMASK = 0x0C23; | 22982 static const int COLOR_WRITEMASK = 0x0C23; |
| 22983 | 22983 |
| 22984 static final int COMPILE_STATUS = 0x8B81; | 22984 static const int COMPILE_STATUS = 0x8B81; |
| 22985 | 22985 |
| 22986 static final int COMPRESSED_TEXTURE_FORMATS = 0x86A3; | 22986 static const int COMPRESSED_TEXTURE_FORMATS = 0x86A3; |
| 22987 | 22987 |
| 22988 static final int CONSTANT_ALPHA = 0x8003; | 22988 static const int CONSTANT_ALPHA = 0x8003; |
| 22989 | 22989 |
| 22990 static final int CONSTANT_COLOR = 0x8001; | 22990 static const int CONSTANT_COLOR = 0x8001; |
| 22991 | 22991 |
| 22992 static final int CONTEXT_LOST_WEBGL = 0x9242; | 22992 static const int CONTEXT_LOST_WEBGL = 0x9242; |
| 22993 | 22993 |
| 22994 static final int CULL_FACE = 0x0B44; | 22994 static const int CULL_FACE = 0x0B44; |
| 22995 | 22995 |
| 22996 static final int CULL_FACE_MODE = 0x0B45; | 22996 static const int CULL_FACE_MODE = 0x0B45; |
| 22997 | 22997 |
| 22998 static final int CURRENT_PROGRAM = 0x8B8D; | 22998 static const int CURRENT_PROGRAM = 0x8B8D; |
| 22999 | 22999 |
| 23000 static final int CURRENT_VERTEX_ATTRIB = 0x8626; | 23000 static const int CURRENT_VERTEX_ATTRIB = 0x8626; |
| 23001 | 23001 |
| 23002 static final int CW = 0x0900; | 23002 static const int CW = 0x0900; |
| 23003 | 23003 |
| 23004 static final int DECR = 0x1E03; | 23004 static const int DECR = 0x1E03; |
| 23005 | 23005 |
| 23006 static final int DECR_WRAP = 0x8508; | 23006 static const int DECR_WRAP = 0x8508; |
| 23007 | 23007 |
| 23008 static final int DELETE_STATUS = 0x8B80; | 23008 static const int DELETE_STATUS = 0x8B80; |
| 23009 | 23009 |
| 23010 static final int DEPTH_ATTACHMENT = 0x8D00; | 23010 static const int DEPTH_ATTACHMENT = 0x8D00; |
| 23011 | 23011 |
| 23012 static final int DEPTH_BITS = 0x0D56; | 23012 static const int DEPTH_BITS = 0x0D56; |
| 23013 | 23013 |
| 23014 static final int DEPTH_BUFFER_BIT = 0x00000100; | 23014 static const int DEPTH_BUFFER_BIT = 0x00000100; |
| 23015 | 23015 |
| 23016 static final int DEPTH_CLEAR_VALUE = 0x0B73; | 23016 static const int DEPTH_CLEAR_VALUE = 0x0B73; |
| 23017 | 23017 |
| 23018 static final int DEPTH_COMPONENT = 0x1902; | 23018 static const int DEPTH_COMPONENT = 0x1902; |
| 23019 | 23019 |
| 23020 static final int DEPTH_COMPONENT16 = 0x81A5; | 23020 static const int DEPTH_COMPONENT16 = 0x81A5; |
| 23021 | 23021 |
| 23022 static final int DEPTH_FUNC = 0x0B74; | 23022 static const int DEPTH_FUNC = 0x0B74; |
| 23023 | 23023 |
| 23024 static final int DEPTH_RANGE = 0x0B70; | 23024 static const int DEPTH_RANGE = 0x0B70; |
| 23025 | 23025 |
| 23026 static final int DEPTH_STENCIL = 0x84F9; | 23026 static const int DEPTH_STENCIL = 0x84F9; |
| 23027 | 23027 |
| 23028 static final int DEPTH_STENCIL_ATTACHMENT = 0x821A; | 23028 static const int DEPTH_STENCIL_ATTACHMENT = 0x821A; |
| 23029 | 23029 |
| 23030 static final int DEPTH_TEST = 0x0B71; | 23030 static const int DEPTH_TEST = 0x0B71; |
| 23031 | 23031 |
| 23032 static final int DEPTH_WRITEMASK = 0x0B72; | 23032 static const int DEPTH_WRITEMASK = 0x0B72; |
| 23033 | 23033 |
| 23034 static final int DITHER = 0x0BD0; | 23034 static const int DITHER = 0x0BD0; |
| 23035 | 23035 |
| 23036 static final int DONT_CARE = 0x1100; | 23036 static const int DONT_CARE = 0x1100; |
| 23037 | 23037 |
| 23038 static final int DST_ALPHA = 0x0304; | 23038 static const int DST_ALPHA = 0x0304; |
| 23039 | 23039 |
| 23040 static final int DST_COLOR = 0x0306; | 23040 static const int DST_COLOR = 0x0306; |
| 23041 | 23041 |
| 23042 static final int DYNAMIC_DRAW = 0x88E8; | 23042 static const int DYNAMIC_DRAW = 0x88E8; |
| 23043 | 23043 |
| 23044 static final int ELEMENT_ARRAY_BUFFER = 0x8893; | 23044 static const int ELEMENT_ARRAY_BUFFER = 0x8893; |
| 23045 | 23045 |
| 23046 static final int ELEMENT_ARRAY_BUFFER_BINDING = 0x8895; | 23046 static const int ELEMENT_ARRAY_BUFFER_BINDING = 0x8895; |
| 23047 | 23047 |
| 23048 static final int EQUAL = 0x0202; | 23048 static const int EQUAL = 0x0202; |
| 23049 | 23049 |
| 23050 static final int FASTEST = 0x1101; | 23050 static const int FASTEST = 0x1101; |
| 23051 | 23051 |
| 23052 static final int FLOAT = 0x1406; | 23052 static const int FLOAT = 0x1406; |
| 23053 | 23053 |
| 23054 static final int FLOAT_MAT2 = 0x8B5A; | 23054 static const int FLOAT_MAT2 = 0x8B5A; |
| 23055 | 23055 |
| 23056 static final int FLOAT_MAT3 = 0x8B5B; | 23056 static const int FLOAT_MAT3 = 0x8B5B; |
| 23057 | 23057 |
| 23058 static final int FLOAT_MAT4 = 0x8B5C; | 23058 static const int FLOAT_MAT4 = 0x8B5C; |
| 23059 | 23059 |
| 23060 static final int FLOAT_VEC2 = 0x8B50; | 23060 static const int FLOAT_VEC2 = 0x8B50; |
| 23061 | 23061 |
| 23062 static final int FLOAT_VEC3 = 0x8B51; | 23062 static const int FLOAT_VEC3 = 0x8B51; |
| 23063 | 23063 |
| 23064 static final int FLOAT_VEC4 = 0x8B52; | 23064 static const int FLOAT_VEC4 = 0x8B52; |
| 23065 | 23065 |
| 23066 static final int FRAGMENT_SHADER = 0x8B30; | 23066 static const int FRAGMENT_SHADER = 0x8B30; |
| 23067 | 23067 |
| 23068 static final int FRAMEBUFFER = 0x8D40; | 23068 static const int FRAMEBUFFER = 0x8D40; |
| 23069 | 23069 |
| 23070 static final int FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1; | 23070 static const int FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1; |
| 23071 | 23071 |
| 23072 static final int FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE = 0x8CD0; | 23072 static const int FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE = 0x8CD0; |
| 23073 | 23073 |
| 23074 static final int FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3; | 23074 static const int FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3; |
| 23075 | 23075 |
| 23076 static final int FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2; | 23076 static const int FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2; |
| 23077 | 23077 |
| 23078 static final int FRAMEBUFFER_BINDING = 0x8CA6; | 23078 static const int FRAMEBUFFER_BINDING = 0x8CA6; |
| 23079 | 23079 |
| 23080 static final int FRAMEBUFFER_COMPLETE = 0x8CD5; | 23080 static const int FRAMEBUFFER_COMPLETE = 0x8CD5; |
| 23081 | 23081 |
| 23082 static final int FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6; | 23082 static const int FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6; |
| 23083 | 23083 |
| 23084 static final int FRAMEBUFFER_INCOMPLETE_DIMENSIONS = 0x8CD9; | 23084 static const int FRAMEBUFFER_INCOMPLETE_DIMENSIONS = 0x8CD9; |
| 23085 | 23085 |
| 23086 static final int FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7; | 23086 static const int FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7; |
| 23087 | 23087 |
| 23088 static final int FRAMEBUFFER_UNSUPPORTED = 0x8CDD; | 23088 static const int FRAMEBUFFER_UNSUPPORTED = 0x8CDD; |
| 23089 | 23089 |
| 23090 static final int FRONT = 0x0404; | 23090 static const int FRONT = 0x0404; |
| 23091 | 23091 |
| 23092 static final int FRONT_AND_BACK = 0x0408; | 23092 static const int FRONT_AND_BACK = 0x0408; |
| 23093 | 23093 |
| 23094 static final int FRONT_FACE = 0x0B46; | 23094 static const int FRONT_FACE = 0x0B46; |
| 23095 | 23095 |
| 23096 static final int FUNC_ADD = 0x8006; | 23096 static const int FUNC_ADD = 0x8006; |
| 23097 | 23097 |
| 23098 static final int FUNC_REVERSE_SUBTRACT = 0x800B; | 23098 static const int FUNC_REVERSE_SUBTRACT = 0x800B; |
| 23099 | 23099 |
| 23100 static final int FUNC_SUBTRACT = 0x800A; | 23100 static const int FUNC_SUBTRACT = 0x800A; |
| 23101 | 23101 |
| 23102 static final int GENERATE_MIPMAP_HINT = 0x8192; | 23102 static const int GENERATE_MIPMAP_HINT = 0x8192; |
| 23103 | 23103 |
| 23104 static final int GEQUAL = 0x0206; | 23104 static const int GEQUAL = 0x0206; |
| 23105 | 23105 |
| 23106 static final int GREATER = 0x0204; | 23106 static const int GREATER = 0x0204; |
| 23107 | 23107 |
| 23108 static final int GREEN_BITS = 0x0D53; | 23108 static const int GREEN_BITS = 0x0D53; |
| 23109 | 23109 |
| 23110 static final int HIGH_FLOAT = 0x8DF2; | 23110 static const int HIGH_FLOAT = 0x8DF2; |
| 23111 | 23111 |
| 23112 static final int HIGH_INT = 0x8DF5; | 23112 static const int HIGH_INT = 0x8DF5; |
| 23113 | 23113 |
| 23114 static final int INCR = 0x1E02; | 23114 static const int INCR = 0x1E02; |
| 23115 | 23115 |
| 23116 static final int INCR_WRAP = 0x8507; | 23116 static const int INCR_WRAP = 0x8507; |
| 23117 | 23117 |
| 23118 static final int INT = 0x1404; | 23118 static const int INT = 0x1404; |
| 23119 | 23119 |
| 23120 static final int INT_VEC2 = 0x8B53; | 23120 static const int INT_VEC2 = 0x8B53; |
| 23121 | 23121 |
| 23122 static final int INT_VEC3 = 0x8B54; | 23122 static const int INT_VEC3 = 0x8B54; |
| 23123 | 23123 |
| 23124 static final int INT_VEC4 = 0x8B55; | 23124 static const int INT_VEC4 = 0x8B55; |
| 23125 | 23125 |
| 23126 static final int INVALID_ENUM = 0x0500; | 23126 static const int INVALID_ENUM = 0x0500; |
| 23127 | 23127 |
| 23128 static final int INVALID_FRAMEBUFFER_OPERATION = 0x0506; | 23128 static const int INVALID_FRAMEBUFFER_OPERATION = 0x0506; |
| 23129 | 23129 |
| 23130 static final int INVALID_OPERATION = 0x0502; | 23130 static const int INVALID_OPERATION = 0x0502; |
| 23131 | 23131 |
| 23132 static final int INVALID_VALUE = 0x0501; | 23132 static const int INVALID_VALUE = 0x0501; |
| 23133 | 23133 |
| 23134 static final int INVERT = 0x150A; | 23134 static const int INVERT = 0x150A; |
| 23135 | 23135 |
| 23136 static final int KEEP = 0x1E00; | 23136 static const int KEEP = 0x1E00; |
| 23137 | 23137 |
| 23138 static final int LEQUAL = 0x0203; | 23138 static const int LEQUAL = 0x0203; |
| 23139 | 23139 |
| 23140 static final int LESS = 0x0201; | 23140 static const int LESS = 0x0201; |
| 23141 | 23141 |
| 23142 static final int LINEAR = 0x2601; | 23142 static const int LINEAR = 0x2601; |
| 23143 | 23143 |
| 23144 static final int LINEAR_MIPMAP_LINEAR = 0x2703; | 23144 static const int LINEAR_MIPMAP_LINEAR = 0x2703; |
| 23145 | 23145 |
| 23146 static final int LINEAR_MIPMAP_NEAREST = 0x2701; | 23146 static const int LINEAR_MIPMAP_NEAREST = 0x2701; |
| 23147 | 23147 |
| 23148 static final int LINES = 0x0001; | 23148 static const int LINES = 0x0001; |
| 23149 | 23149 |
| 23150 static final int LINE_LOOP = 0x0002; | 23150 static const int LINE_LOOP = 0x0002; |
| 23151 | 23151 |
| 23152 static final int LINE_STRIP = 0x0003; | 23152 static const int LINE_STRIP = 0x0003; |
| 23153 | 23153 |
| 23154 static final int LINE_WIDTH = 0x0B21; | 23154 static const int LINE_WIDTH = 0x0B21; |
| 23155 | 23155 |
| 23156 static final int LINK_STATUS = 0x8B82; | 23156 static const int LINK_STATUS = 0x8B82; |
| 23157 | 23157 |
| 23158 static final int LOW_FLOAT = 0x8DF0; | 23158 static const int LOW_FLOAT = 0x8DF0; |
| 23159 | 23159 |
| 23160 static final int LOW_INT = 0x8DF3; | 23160 static const int LOW_INT = 0x8DF3; |
| 23161 | 23161 |
| 23162 static final int LUMINANCE = 0x1909; | 23162 static const int LUMINANCE = 0x1909; |
| 23163 | 23163 |
| 23164 static final int LUMINANCE_ALPHA = 0x190A; | 23164 static const int LUMINANCE_ALPHA = 0x190A; |
| 23165 | 23165 |
| 23166 static final int MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8B4D; | 23166 static const int MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8B4D; |
| 23167 | 23167 |
| 23168 static final int MAX_CUBE_MAP_TEXTURE_SIZE = 0x851C; | 23168 static const int MAX_CUBE_MAP_TEXTURE_SIZE = 0x851C; |
| 23169 | 23169 |
| 23170 static final int MAX_FRAGMENT_UNIFORM_VECTORS = 0x8DFD; | 23170 static const int MAX_FRAGMENT_UNIFORM_VECTORS = 0x8DFD; |
| 23171 | 23171 |
| 23172 static final int MAX_RENDERBUFFER_SIZE = 0x84E8; | 23172 static const int MAX_RENDERBUFFER_SIZE = 0x84E8; |
| 23173 | 23173 |
| 23174 static final int MAX_TEXTURE_IMAGE_UNITS = 0x8872; | 23174 static const int MAX_TEXTURE_IMAGE_UNITS = 0x8872; |
| 23175 | 23175 |
| 23176 static final int MAX_TEXTURE_SIZE = 0x0D33; | 23176 static const int MAX_TEXTURE_SIZE = 0x0D33; |
| 23177 | 23177 |
| 23178 static final int MAX_VARYING_VECTORS = 0x8DFC; | 23178 static const int MAX_VARYING_VECTORS = 0x8DFC; |
| 23179 | 23179 |
| 23180 static final int MAX_VERTEX_ATTRIBS = 0x8869; | 23180 static const int MAX_VERTEX_ATTRIBS = 0x8869; |
| 23181 | 23181 |
| 23182 static final int MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8B4C; | 23182 static const int MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8B4C; |
| 23183 | 23183 |
| 23184 static final int MAX_VERTEX_UNIFORM_VECTORS = 0x8DFB; | 23184 static const int MAX_VERTEX_UNIFORM_VECTORS = 0x8DFB; |
| 23185 | 23185 |
| 23186 static final int MAX_VIEWPORT_DIMS = 0x0D3A; | 23186 static const int MAX_VIEWPORT_DIMS = 0x0D3A; |
| 23187 | 23187 |
| 23188 static final int MEDIUM_FLOAT = 0x8DF1; | 23188 static const int MEDIUM_FLOAT = 0x8DF1; |
| 23189 | 23189 |
| 23190 static final int MEDIUM_INT = 0x8DF4; | 23190 static const int MEDIUM_INT = 0x8DF4; |
| 23191 | 23191 |
| 23192 static final int MIRRORED_REPEAT = 0x8370; | 23192 static const int MIRRORED_REPEAT = 0x8370; |
| 23193 | 23193 |
| 23194 static final int NEAREST = 0x2600; | 23194 static const int NEAREST = 0x2600; |
| 23195 | 23195 |
| 23196 static final int NEAREST_MIPMAP_LINEAR = 0x2702; | 23196 static const int NEAREST_MIPMAP_LINEAR = 0x2702; |
| 23197 | 23197 |
| 23198 static final int NEAREST_MIPMAP_NEAREST = 0x2700; | 23198 static const int NEAREST_MIPMAP_NEAREST = 0x2700; |
| 23199 | 23199 |
| 23200 static final int NEVER = 0x0200; | 23200 static const int NEVER = 0x0200; |
| 23201 | 23201 |
| 23202 static final int NICEST = 0x1102; | 23202 static const int NICEST = 0x1102; |
| 23203 | 23203 |
| 23204 static final int NONE = 0; | 23204 static const int NONE = 0; |
| 23205 | 23205 |
| 23206 static final int NOTEQUAL = 0x0205; | 23206 static const int NOTEQUAL = 0x0205; |
| 23207 | 23207 |
| 23208 static final int NO_ERROR = 0; | 23208 static const int NO_ERROR = 0; |
| 23209 | 23209 |
| 23210 static final int ONE = 1; | 23210 static const int ONE = 1; |
| 23211 | 23211 |
| 23212 static final int ONE_MINUS_CONSTANT_ALPHA = 0x8004; | 23212 static const int ONE_MINUS_CONSTANT_ALPHA = 0x8004; |
| 23213 | 23213 |
| 23214 static final int ONE_MINUS_CONSTANT_COLOR = 0x8002; | 23214 static const int ONE_MINUS_CONSTANT_COLOR = 0x8002; |
| 23215 | 23215 |
| 23216 static final int ONE_MINUS_DST_ALPHA = 0x0305; | 23216 static const int ONE_MINUS_DST_ALPHA = 0x0305; |
| 23217 | 23217 |
| 23218 static final int ONE_MINUS_DST_COLOR = 0x0307; | 23218 static const int ONE_MINUS_DST_COLOR = 0x0307; |
| 23219 | 23219 |
| 23220 static final int ONE_MINUS_SRC_ALPHA = 0x0303; | 23220 static const int ONE_MINUS_SRC_ALPHA = 0x0303; |
| 23221 | 23221 |
| 23222 static final int ONE_MINUS_SRC_COLOR = 0x0301; | 23222 static const int ONE_MINUS_SRC_COLOR = 0x0301; |
| 23223 | 23223 |
| 23224 static final int OUT_OF_MEMORY = 0x0505; | 23224 static const int OUT_OF_MEMORY = 0x0505; |
| 23225 | 23225 |
| 23226 static final int PACK_ALIGNMENT = 0x0D05; | 23226 static const int PACK_ALIGNMENT = 0x0D05; |
| 23227 | 23227 |
| 23228 static final int POINTS = 0x0000; | 23228 static const int POINTS = 0x0000; |
| 23229 | 23229 |
| 23230 static final int POLYGON_OFFSET_FACTOR = 0x8038; | 23230 static const int POLYGON_OFFSET_FACTOR = 0x8038; |
| 23231 | 23231 |
| 23232 static final int POLYGON_OFFSET_FILL = 0x8037; | 23232 static const int POLYGON_OFFSET_FILL = 0x8037; |
| 23233 | 23233 |
| 23234 static final int POLYGON_OFFSET_UNITS = 0x2A00; | 23234 static const int POLYGON_OFFSET_UNITS = 0x2A00; |
| 23235 | 23235 |
| 23236 static final int RED_BITS = 0x0D52; | 23236 static const int RED_BITS = 0x0D52; |
| 23237 | 23237 |
| 23238 static final int RENDERBUFFER = 0x8D41; | 23238 static const int RENDERBUFFER = 0x8D41; |
| 23239 | 23239 |
| 23240 static final int RENDERBUFFER_ALPHA_SIZE = 0x8D53; | 23240 static const int RENDERBUFFER_ALPHA_SIZE = 0x8D53; |
| 23241 | 23241 |
| 23242 static final int RENDERBUFFER_BINDING = 0x8CA7; | 23242 static const int RENDERBUFFER_BINDING = 0x8CA7; |
| 23243 | 23243 |
| 23244 static final int RENDERBUFFER_BLUE_SIZE = 0x8D52; | 23244 static const int RENDERBUFFER_BLUE_SIZE = 0x8D52; |
| 23245 | 23245 |
| 23246 static final int RENDERBUFFER_DEPTH_SIZE = 0x8D54; | 23246 static const int RENDERBUFFER_DEPTH_SIZE = 0x8D54; |
| 23247 | 23247 |
| 23248 static final int RENDERBUFFER_GREEN_SIZE = 0x8D51; | 23248 static const int RENDERBUFFER_GREEN_SIZE = 0x8D51; |
| 23249 | 23249 |
| 23250 static final int RENDERBUFFER_HEIGHT = 0x8D43; | 23250 static const int RENDERBUFFER_HEIGHT = 0x8D43; |
| 23251 | 23251 |
| 23252 static final int RENDERBUFFER_INTERNAL_FORMAT = 0x8D44; | 23252 static const int RENDERBUFFER_INTERNAL_FORMAT = 0x8D44; |
| 23253 | 23253 |
| 23254 static final int RENDERBUFFER_RED_SIZE = 0x8D50; | 23254 static const int RENDERBUFFER_RED_SIZE = 0x8D50; |
| 23255 | 23255 |
| 23256 static final int RENDERBUFFER_STENCIL_SIZE = 0x8D55; | 23256 static const int RENDERBUFFER_STENCIL_SIZE = 0x8D55; |
| 23257 | 23257 |
| 23258 static final int RENDERBUFFER_WIDTH = 0x8D42; | 23258 static const int RENDERBUFFER_WIDTH = 0x8D42; |
| 23259 | 23259 |
| 23260 static final int RENDERER = 0x1F01; | 23260 static const int RENDERER = 0x1F01; |
| 23261 | 23261 |
| 23262 static final int REPEAT = 0x2901; | 23262 static const int REPEAT = 0x2901; |
| 23263 | 23263 |
| 23264 static final int REPLACE = 0x1E01; | 23264 static const int REPLACE = 0x1E01; |
| 23265 | 23265 |
| 23266 static final int RGB = 0x1907; | 23266 static const int RGB = 0x1907; |
| 23267 | 23267 |
| 23268 static final int RGB565 = 0x8D62; | 23268 static const int RGB565 = 0x8D62; |
| 23269 | 23269 |
| 23270 static final int RGB5_A1 = 0x8057; | 23270 static const int RGB5_A1 = 0x8057; |
| 23271 | 23271 |
| 23272 static final int RGBA = 0x1908; | 23272 static const int RGBA = 0x1908; |
| 23273 | 23273 |
| 23274 static final int RGBA4 = 0x8056; | 23274 static const int RGBA4 = 0x8056; |
| 23275 | 23275 |
| 23276 static final int SAMPLER_2D = 0x8B5E; | 23276 static const int SAMPLER_2D = 0x8B5E; |
| 23277 | 23277 |
| 23278 static final int SAMPLER_CUBE = 0x8B60; | 23278 static const int SAMPLER_CUBE = 0x8B60; |
| 23279 | 23279 |
| 23280 static final int SAMPLES = 0x80A9; | 23280 static const int SAMPLES = 0x80A9; |
| 23281 | 23281 |
| 23282 static final int SAMPLE_ALPHA_TO_COVERAGE = 0x809E; | 23282 static const int SAMPLE_ALPHA_TO_COVERAGE = 0x809E; |
| 23283 | 23283 |
| 23284 static final int SAMPLE_BUFFERS = 0x80A8; | 23284 static const int SAMPLE_BUFFERS = 0x80A8; |
| 23285 | 23285 |
| 23286 static final int SAMPLE_COVERAGE = 0x80A0; | 23286 static const int SAMPLE_COVERAGE = 0x80A0; |
| 23287 | 23287 |
| 23288 static final int SAMPLE_COVERAGE_INVERT = 0x80AB; | 23288 static const int SAMPLE_COVERAGE_INVERT = 0x80AB; |
| 23289 | 23289 |
| 23290 static final int SAMPLE_COVERAGE_VALUE = 0x80AA; | 23290 static const int SAMPLE_COVERAGE_VALUE = 0x80AA; |
| 23291 | 23291 |
| 23292 static final int SCISSOR_BOX = 0x0C10; | 23292 static const int SCISSOR_BOX = 0x0C10; |
| 23293 | 23293 |
| 23294 static final int SCISSOR_TEST = 0x0C11; | 23294 static const int SCISSOR_TEST = 0x0C11; |
| 23295 | 23295 |
| 23296 static final int SHADER_TYPE = 0x8B4F; | 23296 static const int SHADER_TYPE = 0x8B4F; |
| 23297 | 23297 |
| 23298 static final int SHADING_LANGUAGE_VERSION = 0x8B8C; | 23298 static const int SHADING_LANGUAGE_VERSION = 0x8B8C; |
| 23299 | 23299 |
| 23300 static final int SHORT = 0x1402; | 23300 static const int SHORT = 0x1402; |
| 23301 | 23301 |
| 23302 static final int SRC_ALPHA = 0x0302; | 23302 static const int SRC_ALPHA = 0x0302; |
| 23303 | 23303 |
| 23304 static final int SRC_ALPHA_SATURATE = 0x0308; | 23304 static const int SRC_ALPHA_SATURATE = 0x0308; |
| 23305 | 23305 |
| 23306 static final int SRC_COLOR = 0x0300; | 23306 static const int SRC_COLOR = 0x0300; |
| 23307 | 23307 |
| 23308 static final int STATIC_DRAW = 0x88E4; | 23308 static const int STATIC_DRAW = 0x88E4; |
| 23309 | 23309 |
| 23310 static final int STENCIL_ATTACHMENT = 0x8D20; | 23310 static const int STENCIL_ATTACHMENT = 0x8D20; |
| 23311 | 23311 |
| 23312 static final int STENCIL_BACK_FAIL = 0x8801; | 23312 static const int STENCIL_BACK_FAIL = 0x8801; |
| 23313 | 23313 |
| 23314 static final int STENCIL_BACK_FUNC = 0x8800; | 23314 static const int STENCIL_BACK_FUNC = 0x8800; |
| 23315 | 23315 |
| 23316 static final int STENCIL_BACK_PASS_DEPTH_FAIL = 0x8802; | 23316 static const int STENCIL_BACK_PASS_DEPTH_FAIL = 0x8802; |
| 23317 | 23317 |
| 23318 static final int STENCIL_BACK_PASS_DEPTH_PASS = 0x8803; | 23318 static const int STENCIL_BACK_PASS_DEPTH_PASS = 0x8803; |
| 23319 | 23319 |
| 23320 static final int STENCIL_BACK_REF = 0x8CA3; | 23320 static const int STENCIL_BACK_REF = 0x8CA3; |
| 23321 | 23321 |
| 23322 static final int STENCIL_BACK_VALUE_MASK = 0x8CA4; | 23322 static const int STENCIL_BACK_VALUE_MASK = 0x8CA4; |
| 23323 | 23323 |
| 23324 static final int STENCIL_BACK_WRITEMASK = 0x8CA5; | 23324 static const int STENCIL_BACK_WRITEMASK = 0x8CA5; |
| 23325 | 23325 |
| 23326 static final int STENCIL_BITS = 0x0D57; | 23326 static const int STENCIL_BITS = 0x0D57; |
| 23327 | 23327 |
| 23328 static final int STENCIL_BUFFER_BIT = 0x00000400; | 23328 static const int STENCIL_BUFFER_BIT = 0x00000400; |
| 23329 | 23329 |
| 23330 static final int STENCIL_CLEAR_VALUE = 0x0B91; | 23330 static const int STENCIL_CLEAR_VALUE = 0x0B91; |
| 23331 | 23331 |
| 23332 static final int STENCIL_FAIL = 0x0B94; | 23332 static const int STENCIL_FAIL = 0x0B94; |
| 23333 | 23333 |
| 23334 static final int STENCIL_FUNC = 0x0B92; | 23334 static const int STENCIL_FUNC = 0x0B92; |
| 23335 | 23335 |
| 23336 static final int STENCIL_INDEX = 0x1901; | 23336 static const int STENCIL_INDEX = 0x1901; |
| 23337 | 23337 |
| 23338 static final int STENCIL_INDEX8 = 0x8D48; | 23338 static const int STENCIL_INDEX8 = 0x8D48; |
| 23339 | 23339 |
| 23340 static final int STENCIL_PASS_DEPTH_FAIL = 0x0B95; | 23340 static const int STENCIL_PASS_DEPTH_FAIL = 0x0B95; |
| 23341 | 23341 |
| 23342 static final int STENCIL_PASS_DEPTH_PASS = 0x0B96; | 23342 static const int STENCIL_PASS_DEPTH_PASS = 0x0B96; |
| 23343 | 23343 |
| 23344 static final int STENCIL_REF = 0x0B97; | 23344 static const int STENCIL_REF = 0x0B97; |
| 23345 | 23345 |
| 23346 static final int STENCIL_TEST = 0x0B90; | 23346 static const int STENCIL_TEST = 0x0B90; |
| 23347 | 23347 |
| 23348 static final int STENCIL_VALUE_MASK = 0x0B93; | 23348 static const int STENCIL_VALUE_MASK = 0x0B93; |
| 23349 | 23349 |
| 23350 static final int STENCIL_WRITEMASK = 0x0B98; | 23350 static const int STENCIL_WRITEMASK = 0x0B98; |
| 23351 | 23351 |
| 23352 static final int STREAM_DRAW = 0x88E0; | 23352 static const int STREAM_DRAW = 0x88E0; |
| 23353 | 23353 |
| 23354 static final int SUBPIXEL_BITS = 0x0D50; | 23354 static const int SUBPIXEL_BITS = 0x0D50; |
| 23355 | 23355 |
| 23356 static final int TEXTURE = 0x1702; | 23356 static const int TEXTURE = 0x1702; |
| 23357 | 23357 |
| 23358 static final int TEXTURE0 = 0x84C0; | 23358 static const int TEXTURE0 = 0x84C0; |
| 23359 | 23359 |
| 23360 static final int TEXTURE1 = 0x84C1; | 23360 static const int TEXTURE1 = 0x84C1; |
| 23361 | 23361 |
| 23362 static final int TEXTURE10 = 0x84CA; | 23362 static const int TEXTURE10 = 0x84CA; |
| 23363 | 23363 |
| 23364 static final int TEXTURE11 = 0x84CB; | 23364 static const int TEXTURE11 = 0x84CB; |
| 23365 | 23365 |
| 23366 static final int TEXTURE12 = 0x84CC; | 23366 static const int TEXTURE12 = 0x84CC; |
| 23367 | 23367 |
| 23368 static final int TEXTURE13 = 0x84CD; | 23368 static const int TEXTURE13 = 0x84CD; |
| 23369 | 23369 |
| 23370 static final int TEXTURE14 = 0x84CE; | 23370 static const int TEXTURE14 = 0x84CE; |
| 23371 | 23371 |
| 23372 static final int TEXTURE15 = 0x84CF; | 23372 static const int TEXTURE15 = 0x84CF; |
| 23373 | 23373 |
| 23374 static final int TEXTURE16 = 0x84D0; | 23374 static const int TEXTURE16 = 0x84D0; |
| 23375 | 23375 |
| 23376 static final int TEXTURE17 = 0x84D1; | 23376 static const int TEXTURE17 = 0x84D1; |
| 23377 | 23377 |
| 23378 static final int TEXTURE18 = 0x84D2; | 23378 static const int TEXTURE18 = 0x84D2; |
| 23379 | 23379 |
| 23380 static final int TEXTURE19 = 0x84D3; | 23380 static const int TEXTURE19 = 0x84D3; |
| 23381 | 23381 |
| 23382 static final int TEXTURE2 = 0x84C2; | 23382 static const int TEXTURE2 = 0x84C2; |
| 23383 | 23383 |
| 23384 static final int TEXTURE20 = 0x84D4; | 23384 static const int TEXTURE20 = 0x84D4; |
| 23385 | 23385 |
| 23386 static final int TEXTURE21 = 0x84D5; | 23386 static const int TEXTURE21 = 0x84D5; |
| 23387 | 23387 |
| 23388 static final int TEXTURE22 = 0x84D6; | 23388 static const int TEXTURE22 = 0x84D6; |
| 23389 | 23389 |
| 23390 static final int TEXTURE23 = 0x84D7; | 23390 static const int TEXTURE23 = 0x84D7; |
| 23391 | 23391 |
| 23392 static final int TEXTURE24 = 0x84D8; | 23392 static const int TEXTURE24 = 0x84D8; |
| 23393 | 23393 |
| 23394 static final int TEXTURE25 = 0x84D9; | 23394 static const int TEXTURE25 = 0x84D9; |
| 23395 | 23395 |
| 23396 static final int TEXTURE26 = 0x84DA; | 23396 static const int TEXTURE26 = 0x84DA; |
| 23397 | 23397 |
| 23398 static final int TEXTURE27 = 0x84DB; | 23398 static const int TEXTURE27 = 0x84DB; |
| 23399 | 23399 |
| 23400 static final int TEXTURE28 = 0x84DC; | 23400 static const int TEXTURE28 = 0x84DC; |
| 23401 | 23401 |
| 23402 static final int TEXTURE29 = 0x84DD; | 23402 static const int TEXTURE29 = 0x84DD; |
| 23403 | 23403 |
| 23404 static final int TEXTURE3 = 0x84C3; | 23404 static const int TEXTURE3 = 0x84C3; |
| 23405 | 23405 |
| 23406 static final int TEXTURE30 = 0x84DE; | 23406 static const int TEXTURE30 = 0x84DE; |
| 23407 | 23407 |
| 23408 static final int TEXTURE31 = 0x84DF; | 23408 static const int TEXTURE31 = 0x84DF; |
| 23409 | 23409 |
| 23410 static final int TEXTURE4 = 0x84C4; | 23410 static const int TEXTURE4 = 0x84C4; |
| 23411 | 23411 |
| 23412 static final int TEXTURE5 = 0x84C5; | 23412 static const int TEXTURE5 = 0x84C5; |
| 23413 | 23413 |
| 23414 static final int TEXTURE6 = 0x84C6; | 23414 static const int TEXTURE6 = 0x84C6; |
| 23415 | 23415 |
| 23416 static final int TEXTURE7 = 0x84C7; | 23416 static const int TEXTURE7 = 0x84C7; |
| 23417 | 23417 |
| 23418 static final int TEXTURE8 = 0x84C8; | 23418 static const int TEXTURE8 = 0x84C8; |
| 23419 | 23419 |
| 23420 static final int TEXTURE9 = 0x84C9; | 23420 static const int TEXTURE9 = 0x84C9; |
| 23421 | 23421 |
| 23422 static final int TEXTURE_2D = 0x0DE1; | 23422 static const int TEXTURE_2D = 0x0DE1; |
| 23423 | 23423 |
| 23424 static final int TEXTURE_BINDING_2D = 0x8069; | 23424 static const int TEXTURE_BINDING_2D = 0x8069; |
| 23425 | 23425 |
| 23426 static final int TEXTURE_BINDING_CUBE_MAP = 0x8514; | 23426 static const int TEXTURE_BINDING_CUBE_MAP = 0x8514; |
| 23427 | 23427 |
| 23428 static final int TEXTURE_CUBE_MAP = 0x8513; | 23428 static const int TEXTURE_CUBE_MAP = 0x8513; |
| 23429 | 23429 |
| 23430 static final int TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516; | 23430 static const int TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516; |
| 23431 | 23431 |
| 23432 static final int TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518; | 23432 static const int TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518; |
| 23433 | 23433 |
| 23434 static final int TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851A; | 23434 static const int TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851A; |
| 23435 | 23435 |
| 23436 static final int TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515; | 23436 static const int TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515; |
| 23437 | 23437 |
| 23438 static final int TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517; | 23438 static const int TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517; |
| 23439 | 23439 |
| 23440 static final int TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519; | 23440 static const int TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519; |
| 23441 | 23441 |
| 23442 static final int TEXTURE_MAG_FILTER = 0x2800; | 23442 static const int TEXTURE_MAG_FILTER = 0x2800; |
| 23443 | 23443 |
| 23444 static final int TEXTURE_MIN_FILTER = 0x2801; | 23444 static const int TEXTURE_MIN_FILTER = 0x2801; |
| 23445 | 23445 |
| 23446 static final int TEXTURE_WRAP_S = 0x2802; | 23446 static const int TEXTURE_WRAP_S = 0x2802; |
| 23447 | 23447 |
| 23448 static final int TEXTURE_WRAP_T = 0x2803; | 23448 static const int TEXTURE_WRAP_T = 0x2803; |
| 23449 | 23449 |
| 23450 static final int TRIANGLES = 0x0004; | 23450 static const int TRIANGLES = 0x0004; |
| 23451 | 23451 |
| 23452 static final int TRIANGLE_FAN = 0x0006; | 23452 static const int TRIANGLE_FAN = 0x0006; |
| 23453 | 23453 |
| 23454 static final int TRIANGLE_STRIP = 0x0005; | 23454 static const int TRIANGLE_STRIP = 0x0005; |
| 23455 | 23455 |
| 23456 static final int UNPACK_ALIGNMENT = 0x0CF5; | 23456 static const int UNPACK_ALIGNMENT = 0x0CF5; |
| 23457 | 23457 |
| 23458 static final int UNPACK_COLORSPACE_CONVERSION_WEBGL = 0x9243; | 23458 static const int UNPACK_COLORSPACE_CONVERSION_WEBGL = 0x9243; |
| 23459 | 23459 |
| 23460 static final int UNPACK_FLIP_Y_WEBGL = 0x9240; | 23460 static const int UNPACK_FLIP_Y_WEBGL = 0x9240; |
| 23461 | 23461 |
| 23462 static final int UNPACK_PREMULTIPLY_ALPHA_WEBGL = 0x9241; | 23462 static const int UNPACK_PREMULTIPLY_ALPHA_WEBGL = 0x9241; |
| 23463 | 23463 |
| 23464 static final int UNSIGNED_BYTE = 0x1401; | 23464 static const int UNSIGNED_BYTE = 0x1401; |
| 23465 | 23465 |
| 23466 static final int UNSIGNED_INT = 0x1405; | 23466 static const int UNSIGNED_INT = 0x1405; |
| 23467 | 23467 |
| 23468 static final int UNSIGNED_SHORT = 0x1403; | 23468 static const int UNSIGNED_SHORT = 0x1403; |
| 23469 | 23469 |
| 23470 static final int UNSIGNED_SHORT_4_4_4_4 = 0x8033; | 23470 static const int UNSIGNED_SHORT_4_4_4_4 = 0x8033; |
| 23471 | 23471 |
| 23472 static final int UNSIGNED_SHORT_5_5_5_1 = 0x8034; | 23472 static const int UNSIGNED_SHORT_5_5_5_1 = 0x8034; |
| 23473 | 23473 |
| 23474 static final int UNSIGNED_SHORT_5_6_5 = 0x8363; | 23474 static const int UNSIGNED_SHORT_5_6_5 = 0x8363; |
| 23475 | 23475 |
| 23476 static final int VALIDATE_STATUS = 0x8B83; | 23476 static const int VALIDATE_STATUS = 0x8B83; |
| 23477 | 23477 |
| 23478 static final int VENDOR = 0x1F00; | 23478 static const int VENDOR = 0x1F00; |
| 23479 | 23479 |
| 23480 static final int VERSION = 0x1F02; | 23480 static const int VERSION = 0x1F02; |
| 23481 | 23481 |
| 23482 static final int VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F; | 23482 static const int VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F; |
| 23483 | 23483 |
| 23484 static final int VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622; | 23484 static const int VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622; |
| 23485 | 23485 |
| 23486 static final int VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A; | 23486 static const int VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A; |
| 23487 | 23487 |
| 23488 static final int VERTEX_ATTRIB_ARRAY_POINTER = 0x8645; | 23488 static const int VERTEX_ATTRIB_ARRAY_POINTER = 0x8645; |
| 23489 | 23489 |
| 23490 static final int VERTEX_ATTRIB_ARRAY_SIZE = 0x8623; | 23490 static const int VERTEX_ATTRIB_ARRAY_SIZE = 0x8623; |
| 23491 | 23491 |
| 23492 static final int VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624; | 23492 static const int VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624; |
| 23493 | 23493 |
| 23494 static final int VERTEX_ATTRIB_ARRAY_TYPE = 0x8625; | 23494 static const int VERTEX_ATTRIB_ARRAY_TYPE = 0x8625; |
| 23495 | 23495 |
| 23496 static final int VERTEX_SHADER = 0x8B31; | 23496 static const int VERTEX_SHADER = 0x8B31; |
| 23497 | 23497 |
| 23498 static final int VIEWPORT = 0x0BA2; | 23498 static const int VIEWPORT = 0x0BA2; |
| 23499 | 23499 |
| 23500 static final int ZERO = 0; | 23500 static const int ZERO = 0; |
| 23501 | 23501 |
| 23502 final int drawingBufferHeight; | 23502 final int drawingBufferHeight; |
| 23503 | 23503 |
| 23504 final int drawingBufferWidth; | 23504 final int drawingBufferWidth; |
| 23505 | 23505 |
| 23506 void activeTexture(int texture); | 23506 void activeTexture(int texture); |
| 23507 | 23507 |
| 23508 void attachShader(WebGLProgram program, WebGLShader shader); | 23508 void attachShader(WebGLProgram program, WebGLShader shader); |
| 23509 | 23509 |
| 23510 void bindAttribLocation(WebGLProgram program, int index, String name); | 23510 void bindAttribLocation(WebGLProgram program, int index, String name); |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 23824 interface WebGLVertexArrayObjectOES { | 23824 interface WebGLVertexArrayObjectOES { |
| 23825 } | 23825 } |
| 23826 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 23826 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 23827 // for details. All rights reserved. Use of this source code is governed by a | 23827 // for details. All rights reserved. Use of this source code is governed by a |
| 23828 // BSD-style license that can be found in the LICENSE file. | 23828 // BSD-style license that can be found in the LICENSE file. |
| 23829 | 23829 |
| 23830 // WARNING: Do not edit - generated code. | 23830 // WARNING: Do not edit - generated code. |
| 23831 | 23831 |
| 23832 interface WebKitAnimation { | 23832 interface WebKitAnimation { |
| 23833 | 23833 |
| 23834 static final int DIRECTION_ALTERNATE = 1; | 23834 static const int DIRECTION_ALTERNATE = 1; |
| 23835 | 23835 |
| 23836 static final int DIRECTION_NORMAL = 0; | 23836 static const int DIRECTION_NORMAL = 0; |
| 23837 | 23837 |
| 23838 static final int FILL_BACKWARDS = 1; | 23838 static const int FILL_BACKWARDS = 1; |
| 23839 | 23839 |
| 23840 static final int FILL_BOTH = 3; | 23840 static const int FILL_BOTH = 3; |
| 23841 | 23841 |
| 23842 static final int FILL_FORWARDS = 2; | 23842 static const int FILL_FORWARDS = 2; |
| 23843 | 23843 |
| 23844 static final int FILL_NONE = 0; | 23844 static const int FILL_NONE = 0; |
| 23845 | 23845 |
| 23846 final num delay; | 23846 final num delay; |
| 23847 | 23847 |
| 23848 final int direction; | 23848 final int direction; |
| 23849 | 23849 |
| 23850 final num duration; | 23850 final num duration; |
| 23851 | 23851 |
| 23852 num elapsedTime; | 23852 num elapsedTime; |
| 23853 | 23853 |
| 23854 final bool ended; | 23854 final bool ended; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 23890 WebKitAnimation item(int index); | 23890 WebKitAnimation item(int index); |
| 23891 } | 23891 } |
| 23892 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 23892 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 23893 // for details. All rights reserved. Use of this source code is governed by a | 23893 // for details. All rights reserved. Use of this source code is governed by a |
| 23894 // BSD-style license that can be found in the LICENSE file. | 23894 // BSD-style license that can be found in the LICENSE file. |
| 23895 | 23895 |
| 23896 // WARNING: Do not edit - generated code. | 23896 // WARNING: Do not edit - generated code. |
| 23897 | 23897 |
| 23898 interface WebKitCSSFilterValue extends CSSValueList { | 23898 interface WebKitCSSFilterValue extends CSSValueList { |
| 23899 | 23899 |
| 23900 static final int CSS_FILTER_BLUR = 10; | 23900 static const int CSS_FILTER_BLUR = 10; |
| 23901 | 23901 |
| 23902 static final int CSS_FILTER_BRIGHTNESS = 8; | 23902 static const int CSS_FILTER_BRIGHTNESS = 8; |
| 23903 | 23903 |
| 23904 static final int CSS_FILTER_CONTRAST = 9; | 23904 static const int CSS_FILTER_CONTRAST = 9; |
| 23905 | 23905 |
| 23906 static final int CSS_FILTER_CUSTOM = 12; | 23906 static const int CSS_FILTER_CUSTOM = 12; |
| 23907 | 23907 |
| 23908 static final int CSS_FILTER_DROP_SHADOW = 11; | 23908 static const int CSS_FILTER_DROP_SHADOW = 11; |
| 23909 | 23909 |
| 23910 static final int CSS_FILTER_GRAYSCALE = 2; | 23910 static const int CSS_FILTER_GRAYSCALE = 2; |
| 23911 | 23911 |
| 23912 static final int CSS_FILTER_HUE_ROTATE = 5; | 23912 static const int CSS_FILTER_HUE_ROTATE = 5; |
| 23913 | 23913 |
| 23914 static final int CSS_FILTER_INVERT = 6; | 23914 static const int CSS_FILTER_INVERT = 6; |
| 23915 | 23915 |
| 23916 static final int CSS_FILTER_OPACITY = 7; | 23916 static const int CSS_FILTER_OPACITY = 7; |
| 23917 | 23917 |
| 23918 static final int CSS_FILTER_REFERENCE = 1; | 23918 static const int CSS_FILTER_REFERENCE = 1; |
| 23919 | 23919 |
| 23920 static final int CSS_FILTER_SATURATE = 4; | 23920 static const int CSS_FILTER_SATURATE = 4; |
| 23921 | 23921 |
| 23922 static final int CSS_FILTER_SEPIA = 3; | 23922 static const int CSS_FILTER_SEPIA = 3; |
| 23923 | 23923 |
| 23924 final int operationType; | 23924 final int operationType; |
| 23925 } | 23925 } |
| 23926 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 23926 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 23927 // for details. All rights reserved. Use of this source code is governed by a | 23927 // for details. All rights reserved. Use of this source code is governed by a |
| 23928 // BSD-style license that can be found in the LICENSE file. | 23928 // BSD-style license that can be found in the LICENSE file. |
| 23929 | 23929 |
| 23930 // WARNING: Do not edit - generated code. | 23930 // WARNING: Do not edit - generated code. |
| 23931 | 23931 |
| 23932 interface WebKitCSSKeyframeRule extends CSSRule { | 23932 interface WebKitCSSKeyframeRule extends CSSRule { |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24028 WebKitCSSMatrix translate(num x, num y, num z); | 24028 WebKitCSSMatrix translate(num x, num y, num z); |
| 24029 } | 24029 } |
| 24030 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24030 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24031 // for details. All rights reserved. Use of this source code is governed by a | 24031 // for details. All rights reserved. Use of this source code is governed by a |
| 24032 // BSD-style license that can be found in the LICENSE file. | 24032 // BSD-style license that can be found in the LICENSE file. |
| 24033 | 24033 |
| 24034 // WARNING: Do not edit - generated code. | 24034 // WARNING: Do not edit - generated code. |
| 24035 | 24035 |
| 24036 interface WebKitCSSTransformValue extends CSSValueList { | 24036 interface WebKitCSSTransformValue extends CSSValueList { |
| 24037 | 24037 |
| 24038 static final int CSS_MATRIX = 11; | 24038 static const int CSS_MATRIX = 11; |
| 24039 | 24039 |
| 24040 static final int CSS_MATRIX3D = 21; | 24040 static const int CSS_MATRIX3D = 21; |
| 24041 | 24041 |
| 24042 static final int CSS_PERSPECTIVE = 20; | 24042 static const int CSS_PERSPECTIVE = 20; |
| 24043 | 24043 |
| 24044 static final int CSS_ROTATE = 4; | 24044 static const int CSS_ROTATE = 4; |
| 24045 | 24045 |
| 24046 static final int CSS_ROTATE3D = 17; | 24046 static const int CSS_ROTATE3D = 17; |
| 24047 | 24047 |
| 24048 static final int CSS_ROTATEX = 14; | 24048 static const int CSS_ROTATEX = 14; |
| 24049 | 24049 |
| 24050 static final int CSS_ROTATEY = 15; | 24050 static const int CSS_ROTATEY = 15; |
| 24051 | 24051 |
| 24052 static final int CSS_ROTATEZ = 16; | 24052 static const int CSS_ROTATEZ = 16; |
| 24053 | 24053 |
| 24054 static final int CSS_SCALE = 5; | 24054 static const int CSS_SCALE = 5; |
| 24055 | 24055 |
| 24056 static final int CSS_SCALE3D = 19; | 24056 static const int CSS_SCALE3D = 19; |
| 24057 | 24057 |
| 24058 static final int CSS_SCALEX = 6; | 24058 static const int CSS_SCALEX = 6; |
| 24059 | 24059 |
| 24060 static final int CSS_SCALEY = 7; | 24060 static const int CSS_SCALEY = 7; |
| 24061 | 24061 |
| 24062 static final int CSS_SCALEZ = 18; | 24062 static const int CSS_SCALEZ = 18; |
| 24063 | 24063 |
| 24064 static final int CSS_SKEW = 8; | 24064 static const int CSS_SKEW = 8; |
| 24065 | 24065 |
| 24066 static final int CSS_SKEWX = 9; | 24066 static const int CSS_SKEWX = 9; |
| 24067 | 24067 |
| 24068 static final int CSS_SKEWY = 10; | 24068 static const int CSS_SKEWY = 10; |
| 24069 | 24069 |
| 24070 static final int CSS_TRANSLATE = 1; | 24070 static const int CSS_TRANSLATE = 1; |
| 24071 | 24071 |
| 24072 static final int CSS_TRANSLATE3D = 13; | 24072 static const int CSS_TRANSLATE3D = 13; |
| 24073 | 24073 |
| 24074 static final int CSS_TRANSLATEX = 2; | 24074 static const int CSS_TRANSLATEX = 2; |
| 24075 | 24075 |
| 24076 static final int CSS_TRANSLATEY = 3; | 24076 static const int CSS_TRANSLATEY = 3; |
| 24077 | 24077 |
| 24078 static final int CSS_TRANSLATEZ = 12; | 24078 static const int CSS_TRANSLATEZ = 12; |
| 24079 | 24079 |
| 24080 final int operationType; | 24080 final int operationType; |
| 24081 } | 24081 } |
| 24082 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24082 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24083 // for details. All rights reserved. Use of this source code is governed by a | 24083 // for details. All rights reserved. Use of this source code is governed by a |
| 24084 // BSD-style license that can be found in the LICENSE file. | 24084 // BSD-style license that can be found in the LICENSE file. |
| 24085 | 24085 |
| 24086 // WARNING: Do not edit - generated code. | 24086 // WARNING: Do not edit - generated code. |
| 24087 | 24087 |
| 24088 interface WebKitNamedFlow extends EventTarget { | 24088 interface WebKitNamedFlow extends EventTarget { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24134 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24134 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24135 // for details. All rights reserved. Use of this source code is governed by a | 24135 // for details. All rights reserved. Use of this source code is governed by a |
| 24136 // BSD-style license that can be found in the LICENSE file. | 24136 // BSD-style license that can be found in the LICENSE file. |
| 24137 | 24137 |
| 24138 // WARNING: Do not edit - generated code. | 24138 // WARNING: Do not edit - generated code. |
| 24139 | 24139 |
| 24140 interface WebSocket extends EventTarget default _WebSocketFactoryProvider { | 24140 interface WebSocket extends EventTarget default _WebSocketFactoryProvider { |
| 24141 | 24141 |
| 24142 WebSocket(String url); | 24142 WebSocket(String url); |
| 24143 | 24143 |
| 24144 static final int CLOSED = 3; | 24144 static const int CLOSED = 3; |
| 24145 | 24145 |
| 24146 static final int CLOSING = 2; | 24146 static const int CLOSING = 2; |
| 24147 | 24147 |
| 24148 static final int CONNECTING = 0; | 24148 static const int CONNECTING = 0; |
| 24149 | 24149 |
| 24150 static final int OPEN = 1; | 24150 static const int OPEN = 1; |
| 24151 | 24151 |
| 24152 final String URL; | 24152 final String URL; |
| 24153 | 24153 |
| 24154 String binaryType; | 24154 String binaryType; |
| 24155 | 24155 |
| 24156 final int bufferedAmount; | 24156 final int bufferedAmount; |
| 24157 | 24157 |
| 24158 final String extensions; | 24158 final String extensions; |
| 24159 | 24159 |
| 24160 final String protocol; | 24160 final String protocol; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24251 | 24251 |
| 24252 DOMFileSystemSync webkitRequestFileSystemSync(int type, int size); | 24252 DOMFileSystemSync webkitRequestFileSystemSync(int type, int size); |
| 24253 | 24253 |
| 24254 EntrySync webkitResolveLocalFileSystemSyncURL(String url); | 24254 EntrySync webkitResolveLocalFileSystemSyncURL(String url); |
| 24255 | 24255 |
| 24256 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k, ErrorCallback errorCallback]); | 24256 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k, ErrorCallback errorCallback]); |
| 24257 } | 24257 } |
| 24258 | 24258 |
| 24259 interface WorkerContext extends WorkerGlobalScope { | 24259 interface WorkerContext extends WorkerGlobalScope { |
| 24260 | 24260 |
| 24261 static final int PERSISTENT = 1; | 24261 static const int PERSISTENT = 1; |
| 24262 | 24262 |
| 24263 static final int TEMPORARY = 0; | 24263 static const int TEMPORARY = 0; |
| 24264 } | 24264 } |
| 24265 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24265 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24266 // for details. All rights reserved. Use of this source code is governed by a | 24266 // for details. All rights reserved. Use of this source code is governed by a |
| 24267 // BSD-style license that can be found in the LICENSE file. | 24267 // BSD-style license that can be found in the LICENSE file. |
| 24268 | 24268 |
| 24269 // WARNING: Do not edit - generated code. | 24269 // WARNING: Do not edit - generated code. |
| 24270 | 24270 |
| 24271 interface WorkerLocation { | 24271 interface WorkerLocation { |
| 24272 | 24272 |
| 24273 final String hash; | 24273 final String hash; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24309 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24309 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24310 // for details. All rights reserved. Use of this source code is governed by a | 24310 // for details. All rights reserved. Use of this source code is governed by a |
| 24311 // BSD-style license that can be found in the LICENSE file. | 24311 // BSD-style license that can be found in the LICENSE file. |
| 24312 | 24312 |
| 24313 // WARNING: Do not edit - generated code. | 24313 // WARNING: Do not edit - generated code. |
| 24314 | 24314 |
| 24315 interface XMLHttpRequest extends EventTarget default _XMLHttpRequestFactoryProvi
der { | 24315 interface XMLHttpRequest extends EventTarget default _XMLHttpRequestFactoryProvi
der { |
| 24316 | 24316 |
| 24317 XMLHttpRequest(); | 24317 XMLHttpRequest(); |
| 24318 | 24318 |
| 24319 static final int DONE = 4; | 24319 static const int DONE = 4; |
| 24320 | 24320 |
| 24321 static final int HEADERS_RECEIVED = 2; | 24321 static const int HEADERS_RECEIVED = 2; |
| 24322 | 24322 |
| 24323 static final int LOADING = 3; | 24323 static const int LOADING = 3; |
| 24324 | 24324 |
| 24325 static final int OPENED = 1; | 24325 static const int OPENED = 1; |
| 24326 | 24326 |
| 24327 static final int UNSENT = 0; | 24327 static const int UNSENT = 0; |
| 24328 | 24328 |
| 24329 final int readyState; | 24329 final int readyState; |
| 24330 | 24330 |
| 24331 final Object response; | 24331 final Object response; |
| 24332 | 24332 |
| 24333 final String responseText; | 24333 final String responseText; |
| 24334 | 24334 |
| 24335 String responseType; | 24335 String responseType; |
| 24336 | 24336 |
| 24337 final Document responseXML; | 24337 final Document responseXML; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 24365 void setRequestHeader(String header, String value); | 24365 void setRequestHeader(String header, String value); |
| 24366 } | 24366 } |
| 24367 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24367 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24368 // for details. All rights reserved. Use of this source code is governed by a | 24368 // for details. All rights reserved. Use of this source code is governed by a |
| 24369 // BSD-style license that can be found in the LICENSE file. | 24369 // BSD-style license that can be found in the LICENSE file. |
| 24370 | 24370 |
| 24371 // WARNING: Do not edit - generated code. | 24371 // WARNING: Do not edit - generated code. |
| 24372 | 24372 |
| 24373 interface XMLHttpRequestException { | 24373 interface XMLHttpRequestException { |
| 24374 | 24374 |
| 24375 static final int ABORT_ERR = 102; | 24375 static const int ABORT_ERR = 102; |
| 24376 | 24376 |
| 24377 static final int NETWORK_ERR = 101; | 24377 static const int NETWORK_ERR = 101; |
| 24378 | 24378 |
| 24379 final int code; | 24379 final int code; |
| 24380 | 24380 |
| 24381 final String message; | 24381 final String message; |
| 24382 | 24382 |
| 24383 final String name; | 24383 final String name; |
| 24384 | 24384 |
| 24385 String toString(); | 24385 String toString(); |
| 24386 } | 24386 } |
| 24387 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24387 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24439 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso
lver, int type, XPathResult inResult); | 24439 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso
lver, int type, XPathResult inResult); |
| 24440 } | 24440 } |
| 24441 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24441 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24442 // for details. All rights reserved. Use of this source code is governed by a | 24442 // for details. All rights reserved. Use of this source code is governed by a |
| 24443 // BSD-style license that can be found in the LICENSE file. | 24443 // BSD-style license that can be found in the LICENSE file. |
| 24444 | 24444 |
| 24445 // WARNING: Do not edit - generated code. | 24445 // WARNING: Do not edit - generated code. |
| 24446 | 24446 |
| 24447 interface XPathException { | 24447 interface XPathException { |
| 24448 | 24448 |
| 24449 static final int INVALID_EXPRESSION_ERR = 51; | 24449 static const int INVALID_EXPRESSION_ERR = 51; |
| 24450 | 24450 |
| 24451 static final int TYPE_ERR = 52; | 24451 static const int TYPE_ERR = 52; |
| 24452 | 24452 |
| 24453 final int code; | 24453 final int code; |
| 24454 | 24454 |
| 24455 final String message; | 24455 final String message; |
| 24456 | 24456 |
| 24457 final String name; | 24457 final String name; |
| 24458 | 24458 |
| 24459 String toString(); | 24459 String toString(); |
| 24460 } | 24460 } |
| 24461 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24461 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 17 matching lines...) Expand all Loading... |
| 24479 String lookupNamespaceURI(String prefix); | 24479 String lookupNamespaceURI(String prefix); |
| 24480 } | 24480 } |
| 24481 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24481 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24482 // for details. All rights reserved. Use of this source code is governed by a | 24482 // for details. All rights reserved. Use of this source code is governed by a |
| 24483 // BSD-style license that can be found in the LICENSE file. | 24483 // BSD-style license that can be found in the LICENSE file. |
| 24484 | 24484 |
| 24485 // WARNING: Do not edit - generated code. | 24485 // WARNING: Do not edit - generated code. |
| 24486 | 24486 |
| 24487 interface XPathResult { | 24487 interface XPathResult { |
| 24488 | 24488 |
| 24489 static final int ANY_TYPE = 0; | 24489 static const int ANY_TYPE = 0; |
| 24490 | 24490 |
| 24491 static final int ANY_UNORDERED_NODE_TYPE = 8; | 24491 static const int ANY_UNORDERED_NODE_TYPE = 8; |
| 24492 | 24492 |
| 24493 static final int BOOLEAN_TYPE = 3; | 24493 static const int BOOLEAN_TYPE = 3; |
| 24494 | 24494 |
| 24495 static final int FIRST_ORDERED_NODE_TYPE = 9; | 24495 static const int FIRST_ORDERED_NODE_TYPE = 9; |
| 24496 | 24496 |
| 24497 static final int NUMBER_TYPE = 1; | 24497 static const int NUMBER_TYPE = 1; |
| 24498 | 24498 |
| 24499 static final int ORDERED_NODE_ITERATOR_TYPE = 5; | 24499 static const int ORDERED_NODE_ITERATOR_TYPE = 5; |
| 24500 | 24500 |
| 24501 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7; | 24501 static const int ORDERED_NODE_SNAPSHOT_TYPE = 7; |
| 24502 | 24502 |
| 24503 static final int STRING_TYPE = 2; | 24503 static const int STRING_TYPE = 2; |
| 24504 | 24504 |
| 24505 static final int UNORDERED_NODE_ITERATOR_TYPE = 4; | 24505 static const int UNORDERED_NODE_ITERATOR_TYPE = 4; |
| 24506 | 24506 |
| 24507 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6; | 24507 static const int UNORDERED_NODE_SNAPSHOT_TYPE = 6; |
| 24508 | 24508 |
| 24509 final bool booleanValue; | 24509 final bool booleanValue; |
| 24510 | 24510 |
| 24511 final bool invalidIteratorState; | 24511 final bool invalidIteratorState; |
| 24512 | 24512 |
| 24513 final num numberValue; | 24513 final num numberValue; |
| 24514 | 24514 |
| 24515 final int resultType; | 24515 final int resultType; |
| 24516 | 24516 |
| 24517 final Node singleNodeValue; | 24517 final Node singleNodeValue; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24563 * Defines the standard key locations returned by | 24563 * Defines the standard key locations returned by |
| 24564 * KeyboardEvent.getKeyLocation. | 24564 * KeyboardEvent.getKeyLocation. |
| 24565 */ | 24565 */ |
| 24566 interface KeyLocation { | 24566 interface KeyLocation { |
| 24567 | 24567 |
| 24568 /** | 24568 /** |
| 24569 * The event key is not distinguished as the left or right version | 24569 * The event key is not distinguished as the left or right version |
| 24570 * of the key, and did not originate from the numeric keypad (or did not | 24570 * of the key, and did not originate from the numeric keypad (or did not |
| 24571 * originate with a virtual key corresponding to the numeric keypad). | 24571 * originate with a virtual key corresponding to the numeric keypad). |
| 24572 */ | 24572 */ |
| 24573 static final int STANDARD = 0; | 24573 static const int STANDARD = 0; |
| 24574 | 24574 |
| 24575 /** | 24575 /** |
| 24576 * The event key is in the left key location. | 24576 * The event key is in the left key location. |
| 24577 */ | 24577 */ |
| 24578 static final int LEFT = 1; | 24578 static const int LEFT = 1; |
| 24579 | 24579 |
| 24580 /** | 24580 /** |
| 24581 * The event key is in the right key location. | 24581 * The event key is in the right key location. |
| 24582 */ | 24582 */ |
| 24583 static final int RIGHT = 2; | 24583 static const int RIGHT = 2; |
| 24584 | 24584 |
| 24585 /** | 24585 /** |
| 24586 * The event key originated on the numeric keypad or with a virtual key | 24586 * The event key originated on the numeric keypad or with a virtual key |
| 24587 * corresponding to the numeric keypad. | 24587 * corresponding to the numeric keypad. |
| 24588 */ | 24588 */ |
| 24589 static final int NUMPAD = 3; | 24589 static const int NUMPAD = 3; |
| 24590 | 24590 |
| 24591 /** | 24591 /** |
| 24592 * The event key originated on a mobile device, either on a physical | 24592 * The event key originated on a mobile device, either on a physical |
| 24593 * keypad or a virtual keyboard. | 24593 * keypad or a virtual keyboard. |
| 24594 */ | 24594 */ |
| 24595 static final int MOBILE = 4; | 24595 static const int MOBILE = 4; |
| 24596 | 24596 |
| 24597 /** | 24597 /** |
| 24598 * The event key originated on a game controller or a joystick on a mobile | 24598 * The event key originated on a game controller or a joystick on a mobile |
| 24599 * device. | 24599 * device. |
| 24600 */ | 24600 */ |
| 24601 static final int JOYSTICK = 5; | 24601 static const int JOYSTICK = 5; |
| 24602 } | 24602 } |
| 24603 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 24603 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 24604 // for details. All rights reserved. Use of this source code is governed by a | 24604 // for details. All rights reserved. Use of this source code is governed by a |
| 24605 // BSD-style license that can be found in the LICENSE file. | 24605 // BSD-style license that can be found in the LICENSE file. |
| 24606 | 24606 |
| 24607 /** | 24607 /** |
| 24608 * Defines the standard keyboard identifier names for keys that are returned | 24608 * Defines the standard keyboard identifier names for keys that are returned |
| 24609 * by KeyEvent.getKeyboardIdentifier when the key does not have a direct | 24609 * by KeyEvent.getKeyboardIdentifier when the key does not have a direct |
| 24610 * unicode mapping. | 24610 * unicode mapping. |
| 24611 */ | 24611 */ |
| 24612 interface KeyName { | 24612 interface KeyName { |
| 24613 | 24613 |
| 24614 /** The Accept (Commit, OK) key */ | 24614 /** The Accept (Commit, OK) key */ |
| 24615 static final String ACCEPT = "Accept"; | 24615 static const String ACCEPT = "Accept"; |
| 24616 | 24616 |
| 24617 /** The Add key */ | 24617 /** The Add key */ |
| 24618 static final String ADD = "Add"; | 24618 static const String ADD = "Add"; |
| 24619 | 24619 |
| 24620 /** The Again key */ | 24620 /** The Again key */ |
| 24621 static final String AGAIN = "Again"; | 24621 static const String AGAIN = "Again"; |
| 24622 | 24622 |
| 24623 /** The All Candidates key */ | 24623 /** The All Candidates key */ |
| 24624 static final String ALL_CANDIDATES = "AllCandidates"; | 24624 static const String ALL_CANDIDATES = "AllCandidates"; |
| 24625 | 24625 |
| 24626 /** The Alphanumeric key */ | 24626 /** The Alphanumeric key */ |
| 24627 static final String ALPHANUMERIC = "Alphanumeric"; | 24627 static const String ALPHANUMERIC = "Alphanumeric"; |
| 24628 | 24628 |
| 24629 /** The Alt (Menu) key */ | 24629 /** The Alt (Menu) key */ |
| 24630 static final String ALT = "Alt"; | 24630 static const String ALT = "Alt"; |
| 24631 | 24631 |
| 24632 /** The Alt-Graph key */ | 24632 /** The Alt-Graph key */ |
| 24633 static final String ALT_GRAPH = "AltGraph"; | 24633 static const String ALT_GRAPH = "AltGraph"; |
| 24634 | 24634 |
| 24635 /** The Application key */ | 24635 /** The Application key */ |
| 24636 static final String APPS = "Apps"; | 24636 static const String APPS = "Apps"; |
| 24637 | 24637 |
| 24638 /** The ATTN key */ | 24638 /** The ATTN key */ |
| 24639 static final String ATTN = "Attn"; | 24639 static const String ATTN = "Attn"; |
| 24640 | 24640 |
| 24641 /** The Browser Back key */ | 24641 /** The Browser Back key */ |
| 24642 static final String BROWSER_BACK = "BrowserBack"; | 24642 static const String BROWSER_BACK = "BrowserBack"; |
| 24643 | 24643 |
| 24644 /** The Browser Favorites key */ | 24644 /** The Browser Favorites key */ |
| 24645 static final String BROWSER_FAVORTIES = "BrowserFavorites"; | 24645 static const String BROWSER_FAVORTIES = "BrowserFavorites"; |
| 24646 | 24646 |
| 24647 /** The Browser Forward key */ | 24647 /** The Browser Forward key */ |
| 24648 static final String BROWSER_FORWARD = "BrowserForward"; | 24648 static const String BROWSER_FORWARD = "BrowserForward"; |
| 24649 | 24649 |
| 24650 /** The Browser Home key */ | 24650 /** The Browser Home key */ |
| 24651 static final String BROWSER_NAME = "BrowserHome"; | 24651 static const String BROWSER_NAME = "BrowserHome"; |
| 24652 | 24652 |
| 24653 /** The Browser Refresh key */ | 24653 /** The Browser Refresh key */ |
| 24654 static final String BROWSER_REFRESH = "BrowserRefresh"; | 24654 static const String BROWSER_REFRESH = "BrowserRefresh"; |
| 24655 | 24655 |
| 24656 /** The Browser Search key */ | 24656 /** The Browser Search key */ |
| 24657 static final String BROWSER_SEARCH = "BrowserSearch"; | 24657 static const String BROWSER_SEARCH = "BrowserSearch"; |
| 24658 | 24658 |
| 24659 /** The Browser Stop key */ | 24659 /** The Browser Stop key */ |
| 24660 static final String BROWSER_STOP = "BrowserStop"; | 24660 static const String BROWSER_STOP = "BrowserStop"; |
| 24661 | 24661 |
| 24662 /** The Camera key */ | 24662 /** The Camera key */ |
| 24663 static final String CAMERA = "Camera"; | 24663 static const String CAMERA = "Camera"; |
| 24664 | 24664 |
| 24665 /** The Caps Lock (Capital) key */ | 24665 /** The Caps Lock (Capital) key */ |
| 24666 static final String CAPS_LOCK = "CapsLock"; | 24666 static const String CAPS_LOCK = "CapsLock"; |
| 24667 | 24667 |
| 24668 /** The Clear key */ | 24668 /** The Clear key */ |
| 24669 static final String CLEAR = "Clear"; | 24669 static const String CLEAR = "Clear"; |
| 24670 | 24670 |
| 24671 /** The Code Input key */ | 24671 /** The Code Input key */ |
| 24672 static final String CODE_INPUT = "CodeInput"; | 24672 static const String CODE_INPUT = "CodeInput"; |
| 24673 | 24673 |
| 24674 /** The Compose key */ | 24674 /** The Compose key */ |
| 24675 static final String COMPOSE = "Compose"; | 24675 static const String COMPOSE = "Compose"; |
| 24676 | 24676 |
| 24677 /** The Control (Ctrl) key */ | 24677 /** The Control (Ctrl) key */ |
| 24678 static final String CONTROL = "Control"; | 24678 static const String CONTROL = "Control"; |
| 24679 | 24679 |
| 24680 /** The Crsel key */ | 24680 /** The Crsel key */ |
| 24681 static final String CRSEL = "Crsel"; | 24681 static const String CRSEL = "Crsel"; |
| 24682 | 24682 |
| 24683 /** The Convert key */ | 24683 /** The Convert key */ |
| 24684 static final String CONVERT = "Convert"; | 24684 static const String CONVERT = "Convert"; |
| 24685 | 24685 |
| 24686 /** The Copy key */ | 24686 /** The Copy key */ |
| 24687 static final String COPY = "Copy"; | 24687 static const String COPY = "Copy"; |
| 24688 | 24688 |
| 24689 /** The Cut key */ | 24689 /** The Cut key */ |
| 24690 static final String CUT = "Cut"; | 24690 static const String CUT = "Cut"; |
| 24691 | 24691 |
| 24692 /** The Decimal key */ | 24692 /** The Decimal key */ |
| 24693 static final String DECIMAL = "Decimal"; | 24693 static const String DECIMAL = "Decimal"; |
| 24694 | 24694 |
| 24695 /** The Divide key */ | 24695 /** The Divide key */ |
| 24696 static final String DIVIDE = "Divide"; | 24696 static const String DIVIDE = "Divide"; |
| 24697 | 24697 |
| 24698 /** The Down Arrow key */ | 24698 /** The Down Arrow key */ |
| 24699 static final String DOWN = "Down"; | 24699 static const String DOWN = "Down"; |
| 24700 | 24700 |
| 24701 /** The diagonal Down-Left Arrow key */ | 24701 /** The diagonal Down-Left Arrow key */ |
| 24702 static final String DOWN_LEFT = "DownLeft"; | 24702 static const String DOWN_LEFT = "DownLeft"; |
| 24703 | 24703 |
| 24704 /** The diagonal Down-Right Arrow key */ | 24704 /** The diagonal Down-Right Arrow key */ |
| 24705 static final String DOWN_RIGHT = "DownRight"; | 24705 static const String DOWN_RIGHT = "DownRight"; |
| 24706 | 24706 |
| 24707 /** The Eject key */ | 24707 /** The Eject key */ |
| 24708 static final String EJECT = "Eject"; | 24708 static const String EJECT = "Eject"; |
| 24709 | 24709 |
| 24710 /** The End key */ | 24710 /** The End key */ |
| 24711 static final String END = "End"; | 24711 static const String END = "End"; |
| 24712 | 24712 |
| 24713 /** | 24713 /** |
| 24714 * The Enter key. Note: This key value must also be used for the Return | 24714 * The Enter key. Note: This key value must also be used for the Return |
| 24715 * (Macintosh numpad) key | 24715 * (Macintosh numpad) key |
| 24716 */ | 24716 */ |
| 24717 static final String ENTER = "Enter"; | 24717 static const String ENTER = "Enter"; |
| 24718 | 24718 |
| 24719 /** The Erase EOF key */ | 24719 /** The Erase EOF key */ |
| 24720 static final String ERASE_EOF= "EraseEof"; | 24720 static const String ERASE_EOF= "EraseEof"; |
| 24721 | 24721 |
| 24722 /** The Execute key */ | 24722 /** The Execute key */ |
| 24723 static final String EXECUTE = "Execute"; | 24723 static const String EXECUTE = "Execute"; |
| 24724 | 24724 |
| 24725 /** The Exsel key */ | 24725 /** The Exsel key */ |
| 24726 static final String EXSEL = "Exsel"; | 24726 static const String EXSEL = "Exsel"; |
| 24727 | 24727 |
| 24728 /** The Function switch key */ | 24728 /** The Function switch key */ |
| 24729 static final String FN = "Fn"; | 24729 static const String FN = "Fn"; |
| 24730 | 24730 |
| 24731 /** The F1 key */ | 24731 /** The F1 key */ |
| 24732 static final String F1 = "F1"; | 24732 static const String F1 = "F1"; |
| 24733 | 24733 |
| 24734 /** The F2 key */ | 24734 /** The F2 key */ |
| 24735 static final String F2 = "F2"; | 24735 static const String F2 = "F2"; |
| 24736 | 24736 |
| 24737 /** The F3 key */ | 24737 /** The F3 key */ |
| 24738 static final String F3 = "F3"; | 24738 static const String F3 = "F3"; |
| 24739 | 24739 |
| 24740 /** The F4 key */ | 24740 /** The F4 key */ |
| 24741 static final String F4 = "F4"; | 24741 static const String F4 = "F4"; |
| 24742 | 24742 |
| 24743 /** The F5 key */ | 24743 /** The F5 key */ |
| 24744 static final String F5 = "F5"; | 24744 static const String F5 = "F5"; |
| 24745 | 24745 |
| 24746 /** The F6 key */ | 24746 /** The F6 key */ |
| 24747 static final String F6 = "F6"; | 24747 static const String F6 = "F6"; |
| 24748 | 24748 |
| 24749 /** The F7 key */ | 24749 /** The F7 key */ |
| 24750 static final String F7 = "F7"; | 24750 static const String F7 = "F7"; |
| 24751 | 24751 |
| 24752 /** The F8 key */ | 24752 /** The F8 key */ |
| 24753 static final String F8 = "F8"; | 24753 static const String F8 = "F8"; |
| 24754 | 24754 |
| 24755 /** The F9 key */ | 24755 /** The F9 key */ |
| 24756 static final String F9 = "F9"; | 24756 static const String F9 = "F9"; |
| 24757 | 24757 |
| 24758 /** The F10 key */ | 24758 /** The F10 key */ |
| 24759 static final String F10 = "F10"; | 24759 static const String F10 = "F10"; |
| 24760 | 24760 |
| 24761 /** The F11 key */ | 24761 /** The F11 key */ |
| 24762 static final String F11 = "F11"; | 24762 static const String F11 = "F11"; |
| 24763 | 24763 |
| 24764 /** The F12 key */ | 24764 /** The F12 key */ |
| 24765 static final String F12 = "F12"; | 24765 static const String F12 = "F12"; |
| 24766 | 24766 |
| 24767 /** The F13 key */ | 24767 /** The F13 key */ |
| 24768 static final String F13 = "F13"; | 24768 static const String F13 = "F13"; |
| 24769 | 24769 |
| 24770 /** The F14 key */ | 24770 /** The F14 key */ |
| 24771 static final String F14 = "F14"; | 24771 static const String F14 = "F14"; |
| 24772 | 24772 |
| 24773 /** The F15 key */ | 24773 /** The F15 key */ |
| 24774 static final String F15 = "F15"; | 24774 static const String F15 = "F15"; |
| 24775 | 24775 |
| 24776 /** The F16 key */ | 24776 /** The F16 key */ |
| 24777 static final String F16 = "F16"; | 24777 static const String F16 = "F16"; |
| 24778 | 24778 |
| 24779 /** The F17 key */ | 24779 /** The F17 key */ |
| 24780 static final String F17 = "F17"; | 24780 static const String F17 = "F17"; |
| 24781 | 24781 |
| 24782 /** The F18 key */ | 24782 /** The F18 key */ |
| 24783 static final String F18 = "F18"; | 24783 static const String F18 = "F18"; |
| 24784 | 24784 |
| 24785 /** The F19 key */ | 24785 /** The F19 key */ |
| 24786 static final String F19 = "F19"; | 24786 static const String F19 = "F19"; |
| 24787 | 24787 |
| 24788 /** The F20 key */ | 24788 /** The F20 key */ |
| 24789 static final String F20 = "F20"; | 24789 static const String F20 = "F20"; |
| 24790 | 24790 |
| 24791 /** The F21 key */ | 24791 /** The F21 key */ |
| 24792 static final String F21 = "F21"; | 24792 static const String F21 = "F21"; |
| 24793 | 24793 |
| 24794 /** The F22 key */ | 24794 /** The F22 key */ |
| 24795 static final String F22 = "F22"; | 24795 static const String F22 = "F22"; |
| 24796 | 24796 |
| 24797 /** The F23 key */ | 24797 /** The F23 key */ |
| 24798 static final String F23 = "F23"; | 24798 static const String F23 = "F23"; |
| 24799 | 24799 |
| 24800 /** The F24 key */ | 24800 /** The F24 key */ |
| 24801 static final String F24 = "F24"; | 24801 static const String F24 = "F24"; |
| 24802 | 24802 |
| 24803 /** The Final Mode (Final) key used on some asian keyboards */ | 24803 /** The Final Mode (Final) key used on some asian keyboards */ |
| 24804 static final String FINAL_MODE = "FinalMode"; | 24804 static const String FINAL_MODE = "FinalMode"; |
| 24805 | 24805 |
| 24806 /** The Find key */ | 24806 /** The Find key */ |
| 24807 static final String FIND = "Find"; | 24807 static const String FIND = "Find"; |
| 24808 | 24808 |
| 24809 /** The Full-Width Characters key */ | 24809 /** The Full-Width Characters key */ |
| 24810 static final String FULL_WIDTH = "FullWidth"; | 24810 static const String FULL_WIDTH = "FullWidth"; |
| 24811 | 24811 |
| 24812 /** The Half-Width Characters key */ | 24812 /** The Half-Width Characters key */ |
| 24813 static final String HALF_WIDTH = "HalfWidth"; | 24813 static const String HALF_WIDTH = "HalfWidth"; |
| 24814 | 24814 |
| 24815 /** The Hangul (Korean characters) Mode key */ | 24815 /** The Hangul (Korean characters) Mode key */ |
| 24816 static final String HANGUL_MODE = "HangulMode"; | 24816 static const String HANGUL_MODE = "HangulMode"; |
| 24817 | 24817 |
| 24818 /** The Hanja (Korean characters) Mode key */ | 24818 /** The Hanja (Korean characters) Mode key */ |
| 24819 static final String HANJA_MODE = "HanjaMode"; | 24819 static const String HANJA_MODE = "HanjaMode"; |
| 24820 | 24820 |
| 24821 /** The Help key */ | 24821 /** The Help key */ |
| 24822 static final String HELP = "Help"; | 24822 static const String HELP = "Help"; |
| 24823 | 24823 |
| 24824 /** The Hiragana (Japanese Kana characters) key */ | 24824 /** The Hiragana (Japanese Kana characters) key */ |
| 24825 static final String HIRAGANA = "Hiragana"; | 24825 static const String HIRAGANA = "Hiragana"; |
| 24826 | 24826 |
| 24827 /** The Home key */ | 24827 /** The Home key */ |
| 24828 static final String HOME = "Home"; | 24828 static const String HOME = "Home"; |
| 24829 | 24829 |
| 24830 /** The Insert (Ins) key */ | 24830 /** The Insert (Ins) key */ |
| 24831 static final String INSERT = "Insert"; | 24831 static const String INSERT = "Insert"; |
| 24832 | 24832 |
| 24833 /** The Japanese-Hiragana key */ | 24833 /** The Japanese-Hiragana key */ |
| 24834 static final String JAPANESE_HIRAGANA = "JapaneseHiragana"; | 24834 static const String JAPANESE_HIRAGANA = "JapaneseHiragana"; |
| 24835 | 24835 |
| 24836 /** The Japanese-Katakana key */ | 24836 /** The Japanese-Katakana key */ |
| 24837 static final String JAPANESE_KATAKANA = "JapaneseKatakana"; | 24837 static const String JAPANESE_KATAKANA = "JapaneseKatakana"; |
| 24838 | 24838 |
| 24839 /** The Japanese-Romaji key */ | 24839 /** The Japanese-Romaji key */ |
| 24840 static final String JAPANESE_ROMAJI = "JapaneseRomaji"; | 24840 static const String JAPANESE_ROMAJI = "JapaneseRomaji"; |
| 24841 | 24841 |
| 24842 /** The Junja Mode key */ | 24842 /** The Junja Mode key */ |
| 24843 static final String JUNJA_MODE = "JunjaMode"; | 24843 static const String JUNJA_MODE = "JunjaMode"; |
| 24844 | 24844 |
| 24845 /** The Kana Mode (Kana Lock) key */ | 24845 /** The Kana Mode (Kana Lock) key */ |
| 24846 static final String KANA_MODE = "KanaMode"; | 24846 static const String KANA_MODE = "KanaMode"; |
| 24847 | 24847 |
| 24848 /** | 24848 /** |
| 24849 * The Kanji (Japanese name for ideographic characters of Chinese origin) | 24849 * The Kanji (Japanese name for ideographic characters of Chinese origin) |
| 24850 * Mode key | 24850 * Mode key |
| 24851 */ | 24851 */ |
| 24852 static final String KANJI_MODE = "KanjiMode"; | 24852 static const String KANJI_MODE = "KanjiMode"; |
| 24853 | 24853 |
| 24854 /** The Katakana (Japanese Kana characters) key */ | 24854 /** The Katakana (Japanese Kana characters) key */ |
| 24855 static final String KATAKANA = "Katakana"; | 24855 static const String KATAKANA = "Katakana"; |
| 24856 | 24856 |
| 24857 /** The Start Application One key */ | 24857 /** The Start Application One key */ |
| 24858 static final String LAUNCH_APPLICATION_1 = "LaunchApplication1"; | 24858 static const String LAUNCH_APPLICATION_1 = "LaunchApplication1"; |
| 24859 | 24859 |
| 24860 /** The Start Application Two key */ | 24860 /** The Start Application Two key */ |
| 24861 static final String LAUNCH_APPLICATION_2 = "LaunchApplication2"; | 24861 static const String LAUNCH_APPLICATION_2 = "LaunchApplication2"; |
| 24862 | 24862 |
| 24863 /** The Start Mail key */ | 24863 /** The Start Mail key */ |
| 24864 static final String LAUNCH_MAIL = "LaunchMail"; | 24864 static const String LAUNCH_MAIL = "LaunchMail"; |
| 24865 | 24865 |
| 24866 /** The Left Arrow key */ | 24866 /** The Left Arrow key */ |
| 24867 static final String LEFT = "Left"; | 24867 static const String LEFT = "Left"; |
| 24868 | 24868 |
| 24869 /** The Menu key */ | 24869 /** The Menu key */ |
| 24870 static final String MENU = "Menu"; | 24870 static const String MENU = "Menu"; |
| 24871 | 24871 |
| 24872 /** | 24872 /** |
| 24873 * The Meta key. Note: This key value shall be also used for the Apple | 24873 * The Meta key. Note: This key value shall be also used for the Apple |
| 24874 * Command key | 24874 * Command key |
| 24875 */ | 24875 */ |
| 24876 static final String META = "Meta"; | 24876 static const String META = "Meta"; |
| 24877 | 24877 |
| 24878 /** The Media Next Track key */ | 24878 /** The Media Next Track key */ |
| 24879 static final String MEDIA_NEXT_TRACK = "MediaNextTrack"; | 24879 static const String MEDIA_NEXT_TRACK = "MediaNextTrack"; |
| 24880 | 24880 |
| 24881 /** The Media Play Pause key */ | 24881 /** The Media Play Pause key */ |
| 24882 static final String MEDIA_PAUSE_PLAY = "MediaPlayPause"; | 24882 static const String MEDIA_PAUSE_PLAY = "MediaPlayPause"; |
| 24883 | 24883 |
| 24884 /** The Media Previous Track key */ | 24884 /** The Media Previous Track key */ |
| 24885 static final String MEDIA_PREVIOUS_TRACK = "MediaPreviousTrack"; | 24885 static const String MEDIA_PREVIOUS_TRACK = "MediaPreviousTrack"; |
| 24886 | 24886 |
| 24887 /** The Media Stop key */ | 24887 /** The Media Stop key */ |
| 24888 static final String MEDIA_STOP = "MediaStop"; | 24888 static const String MEDIA_STOP = "MediaStop"; |
| 24889 | 24889 |
| 24890 /** The Mode Change key */ | 24890 /** The Mode Change key */ |
| 24891 static final String MODE_CHANGE = "ModeChange"; | 24891 static const String MODE_CHANGE = "ModeChange"; |
| 24892 | 24892 |
| 24893 /** The Next Candidate function key */ | 24893 /** The Next Candidate function key */ |
| 24894 static final String NEXT_CANDIDATE = "NextCandidate"; | 24894 static const String NEXT_CANDIDATE = "NextCandidate"; |
| 24895 | 24895 |
| 24896 /** The Nonconvert (Don't Convert) key */ | 24896 /** The Nonconvert (Don't Convert) key */ |
| 24897 static final String NON_CONVERT = "Nonconvert"; | 24897 static const String NON_CONVERT = "Nonconvert"; |
| 24898 | 24898 |
| 24899 /** The Number Lock key */ | 24899 /** The Number Lock key */ |
| 24900 static final String NUM_LOCK = "NumLock"; | 24900 static const String NUM_LOCK = "NumLock"; |
| 24901 | 24901 |
| 24902 /** The Page Down (Next) key */ | 24902 /** The Page Down (Next) key */ |
| 24903 static final String PAGE_DOWN = "PageDown"; | 24903 static const String PAGE_DOWN = "PageDown"; |
| 24904 | 24904 |
| 24905 /** The Page Up key */ | 24905 /** The Page Up key */ |
| 24906 static final String PAGE_UP = "PageUp"; | 24906 static const String PAGE_UP = "PageUp"; |
| 24907 | 24907 |
| 24908 /** The Paste key */ | 24908 /** The Paste key */ |
| 24909 static final String PASTE = "Paste"; | 24909 static const String PASTE = "Paste"; |
| 24910 | 24910 |
| 24911 /** The Pause key */ | 24911 /** The Pause key */ |
| 24912 static final String PAUSE = "Pause"; | 24912 static const String PAUSE = "Pause"; |
| 24913 | 24913 |
| 24914 /** The Play key */ | 24914 /** The Play key */ |
| 24915 static final String PLAY = "Play"; | 24915 static const String PLAY = "Play"; |
| 24916 | 24916 |
| 24917 /** | 24917 /** |
| 24918 * The Power key. Note: Some devices may not expose this key to the | 24918 * The Power key. Note: Some devices may not expose this key to the |
| 24919 * operating environment | 24919 * operating environment |
| 24920 */ | 24920 */ |
| 24921 static final String POWER = "Power"; | 24921 static const String POWER = "Power"; |
| 24922 | 24922 |
| 24923 /** The Previous Candidate function key */ | 24923 /** The Previous Candidate function key */ |
| 24924 static final String PREVIOUS_CANDIDATE = "PreviousCandidate"; | 24924 static const String PREVIOUS_CANDIDATE = "PreviousCandidate"; |
| 24925 | 24925 |
| 24926 /** The Print Screen (PrintScrn, SnapShot) key */ | 24926 /** The Print Screen (PrintScrn, SnapShot) key */ |
| 24927 static final String PRINT_SCREEN = "PrintScreen"; | 24927 static const String PRINT_SCREEN = "PrintScreen"; |
| 24928 | 24928 |
| 24929 /** The Process key */ | 24929 /** The Process key */ |
| 24930 static final String PROCESS = "Process"; | 24930 static const String PROCESS = "Process"; |
| 24931 | 24931 |
| 24932 /** The Props key */ | 24932 /** The Props key */ |
| 24933 static final String PROPS = "Props"; | 24933 static const String PROPS = "Props"; |
| 24934 | 24934 |
| 24935 /** The Right Arrow key */ | 24935 /** The Right Arrow key */ |
| 24936 static final String RIGHT = "Right"; | 24936 static const String RIGHT = "Right"; |
| 24937 | 24937 |
| 24938 /** The Roman Characters function key */ | 24938 /** The Roman Characters function key */ |
| 24939 static final String ROMAN_CHARACTERS = "RomanCharacters"; | 24939 static const String ROMAN_CHARACTERS = "RomanCharacters"; |
| 24940 | 24940 |
| 24941 /** The Scroll Lock key */ | 24941 /** The Scroll Lock key */ |
| 24942 static final String SCROLL = "Scroll"; | 24942 static const String SCROLL = "Scroll"; |
| 24943 | 24943 |
| 24944 /** The Select key */ | 24944 /** The Select key */ |
| 24945 static final String SELECT = "Select"; | 24945 static const String SELECT = "Select"; |
| 24946 | 24946 |
| 24947 /** The Select Media key */ | 24947 /** The Select Media key */ |
| 24948 static final String SELECT_MEDIA = "SelectMedia"; | 24948 static const String SELECT_MEDIA = "SelectMedia"; |
| 24949 | 24949 |
| 24950 /** The Separator key */ | 24950 /** The Separator key */ |
| 24951 static final String SEPARATOR = "Separator"; | 24951 static const String SEPARATOR = "Separator"; |
| 24952 | 24952 |
| 24953 /** The Shift key */ | 24953 /** The Shift key */ |
| 24954 static final String SHIFT = "Shift"; | 24954 static const String SHIFT = "Shift"; |
| 24955 | 24955 |
| 24956 /** The Soft1 key */ | 24956 /** The Soft1 key */ |
| 24957 static final String SOFT_1 = "Soft1"; | 24957 static const String SOFT_1 = "Soft1"; |
| 24958 | 24958 |
| 24959 /** The Soft2 key */ | 24959 /** The Soft2 key */ |
| 24960 static final String SOFT_2 = "Soft2"; | 24960 static const String SOFT_2 = "Soft2"; |
| 24961 | 24961 |
| 24962 /** The Soft3 key */ | 24962 /** The Soft3 key */ |
| 24963 static final String SOFT_3 = "Soft3"; | 24963 static const String SOFT_3 = "Soft3"; |
| 24964 | 24964 |
| 24965 /** The Soft4 key */ | 24965 /** The Soft4 key */ |
| 24966 static final String SOFT_4 = "Soft4"; | 24966 static const String SOFT_4 = "Soft4"; |
| 24967 | 24967 |
| 24968 /** The Stop key */ | 24968 /** The Stop key */ |
| 24969 static final String STOP = "Stop"; | 24969 static const String STOP = "Stop"; |
| 24970 | 24970 |
| 24971 /** The Subtract key */ | 24971 /** The Subtract key */ |
| 24972 static final String SUBTRACT = "Subtract"; | 24972 static const String SUBTRACT = "Subtract"; |
| 24973 | 24973 |
| 24974 /** The Symbol Lock key */ | 24974 /** The Symbol Lock key */ |
| 24975 static final String SYMBOL_LOCK = "SymbolLock"; | 24975 static const String SYMBOL_LOCK = "SymbolLock"; |
| 24976 | 24976 |
| 24977 /** The Up Arrow key */ | 24977 /** The Up Arrow key */ |
| 24978 static final String UP = "Up"; | 24978 static const String UP = "Up"; |
| 24979 | 24979 |
| 24980 /** The diagonal Up-Left Arrow key */ | 24980 /** The diagonal Up-Left Arrow key */ |
| 24981 static final String UP_LEFT = "UpLeft"; | 24981 static const String UP_LEFT = "UpLeft"; |
| 24982 | 24982 |
| 24983 /** The diagonal Up-Right Arrow key */ | 24983 /** The diagonal Up-Right Arrow key */ |
| 24984 static final String UP_RIGHT = "UpRight"; | 24984 static const String UP_RIGHT = "UpRight"; |
| 24985 | 24985 |
| 24986 /** The Undo key */ | 24986 /** The Undo key */ |
| 24987 static final String UNDO = "Undo"; | 24987 static const String UNDO = "Undo"; |
| 24988 | 24988 |
| 24989 /** The Volume Down key */ | 24989 /** The Volume Down key */ |
| 24990 static final String VOLUME_DOWN = "VolumeDown"; | 24990 static const String VOLUME_DOWN = "VolumeDown"; |
| 24991 | 24991 |
| 24992 /** The Volume Mute key */ | 24992 /** The Volume Mute key */ |
| 24993 static final String VOLUMN_MUTE = "VolumeMute"; | 24993 static const String VOLUMN_MUTE = "VolumeMute"; |
| 24994 | 24994 |
| 24995 /** The Volume Up key */ | 24995 /** The Volume Up key */ |
| 24996 static final String VOLUMN_UP = "VolumeUp"; | 24996 static const String VOLUMN_UP = "VolumeUp"; |
| 24997 | 24997 |
| 24998 /** The Windows Logo key */ | 24998 /** The Windows Logo key */ |
| 24999 static final String WIN = "Win"; | 24999 static const String WIN = "Win"; |
| 25000 | 25000 |
| 25001 /** The Zoom key */ | 25001 /** The Zoom key */ |
| 25002 static final String ZOOM = "Zoom"; | 25002 static const String ZOOM = "Zoom"; |
| 25003 | 25003 |
| 25004 /** | 25004 /** |
| 25005 * The Backspace (Back) key. Note: This key value shall be also used for the | 25005 * The Backspace (Back) key. Note: This key value shall be also used for the |
| 25006 * key labeled 'delete' MacOS keyboards when not modified by the 'Fn' key | 25006 * key labeled 'delete' MacOS keyboards when not modified by the 'Fn' key |
| 25007 */ | 25007 */ |
| 25008 static final String BACKSPACE = "Backspace"; | 25008 static const String BACKSPACE = "Backspace"; |
| 25009 | 25009 |
| 25010 /** The Horizontal Tabulation (Tab) key */ | 25010 /** The Horizontal Tabulation (Tab) key */ |
| 25011 static final String TAB = "Tab"; | 25011 static const String TAB = "Tab"; |
| 25012 | 25012 |
| 25013 /** The Cancel key */ | 25013 /** The Cancel key */ |
| 25014 static final String CANCEL = "Cancel"; | 25014 static const String CANCEL = "Cancel"; |
| 25015 | 25015 |
| 25016 /** The Escape (Esc) key */ | 25016 /** The Escape (Esc) key */ |
| 25017 static final String ESC = "Esc"; | 25017 static const String ESC = "Esc"; |
| 25018 | 25018 |
| 25019 /** The Space (Spacebar) key: */ | 25019 /** The Space (Spacebar) key: */ |
| 25020 static final String SPACEBAR = "Spacebar"; | 25020 static const String SPACEBAR = "Spacebar"; |
| 25021 | 25021 |
| 25022 /** | 25022 /** |
| 25023 * The Delete (Del) Key. Note: This key value shall be also used for the key | 25023 * The Delete (Del) Key. Note: This key value shall be also used for the key |
| 25024 * labeled 'delete' MacOS keyboards when modified by the 'Fn' key | 25024 * labeled 'delete' MacOS keyboards when modified by the 'Fn' key |
| 25025 */ | 25025 */ |
| 25026 static final String DEL = "Del"; | 25026 static const String DEL = "Del"; |
| 25027 | 25027 |
| 25028 /** The Combining Grave Accent (Greek Varia, Dead Grave) key */ | 25028 /** The Combining Grave Accent (Greek Varia, Dead Grave) key */ |
| 25029 static final String DEAD_GRAVE = "DeadGrave"; | 25029 static const String DEAD_GRAVE = "DeadGrave"; |
| 25030 | 25030 |
| 25031 /** | 25031 /** |
| 25032 * The Combining Acute Accent (Stress Mark, Greek Oxia, Tonos, Dead Eacute) | 25032 * The Combining Acute Accent (Stress Mark, Greek Oxia, Tonos, Dead Eacute) |
| 25033 * key | 25033 * key |
| 25034 */ | 25034 */ |
| 25035 static final String DEAD_EACUTE = "DeadEacute"; | 25035 static const String DEAD_EACUTE = "DeadEacute"; |
| 25036 | 25036 |
| 25037 /** The Combining Circumflex Accent (Hat, Dead Circumflex) key */ | 25037 /** The Combining Circumflex Accent (Hat, Dead Circumflex) key */ |
| 25038 static final String DEAD_CIRCUMFLEX = "DeadCircumflex"; | 25038 static const String DEAD_CIRCUMFLEX = "DeadCircumflex"; |
| 25039 | 25039 |
| 25040 /** The Combining Tilde (Dead Tilde) key */ | 25040 /** The Combining Tilde (Dead Tilde) key */ |
| 25041 static final String DEAD_TILDE = "DeadTilde"; | 25041 static const String DEAD_TILDE = "DeadTilde"; |
| 25042 | 25042 |
| 25043 /** The Combining Macron (Long, Dead Macron) key */ | 25043 /** The Combining Macron (Long, Dead Macron) key */ |
| 25044 static final String DEAD_MACRON = "DeadMacron"; | 25044 static const String DEAD_MACRON = "DeadMacron"; |
| 25045 | 25045 |
| 25046 /** The Combining Breve (Short, Dead Breve) key */ | 25046 /** The Combining Breve (Short, Dead Breve) key */ |
| 25047 static final String DEAD_BREVE = "DeadBreve"; | 25047 static const String DEAD_BREVE = "DeadBreve"; |
| 25048 | 25048 |
| 25049 /** The Combining Dot Above (Derivative, Dead Above Dot) key */ | 25049 /** The Combining Dot Above (Derivative, Dead Above Dot) key */ |
| 25050 static final String DEAD_ABOVE_DOT = "DeadAboveDot"; | 25050 static const String DEAD_ABOVE_DOT = "DeadAboveDot"; |
| 25051 | 25051 |
| 25052 /** | 25052 /** |
| 25053 * The Combining Diaeresis (Double Dot Abode, Umlaut, Greek Dialytika, | 25053 * The Combining Diaeresis (Double Dot Abode, Umlaut, Greek Dialytika, |
| 25054 * Double Derivative, Dead Diaeresis) key | 25054 * Double Derivative, Dead Diaeresis) key |
| 25055 */ | 25055 */ |
| 25056 static final String DEAD_UMLAUT = "DeadUmlaut"; | 25056 static const String DEAD_UMLAUT = "DeadUmlaut"; |
| 25057 | 25057 |
| 25058 /** The Combining Ring Above (Dead Above Ring) key */ | 25058 /** The Combining Ring Above (Dead Above Ring) key */ |
| 25059 static final String DEAD_ABOVE_RING = "DeadAboveRing"; | 25059 static const String DEAD_ABOVE_RING = "DeadAboveRing"; |
| 25060 | 25060 |
| 25061 /** The Combining Double Acute Accent (Dead Doubleacute) key */ | 25061 /** The Combining Double Acute Accent (Dead Doubleacute) key */ |
| 25062 static final String DEAD_DOUBLEACUTE = "DeadDoubleacute"; | 25062 static const String DEAD_DOUBLEACUTE = "DeadDoubleacute"; |
| 25063 | 25063 |
| 25064 /** The Combining Caron (Hacek, V Above, Dead Caron) key */ | 25064 /** The Combining Caron (Hacek, V Above, Dead Caron) key */ |
| 25065 static final String DEAD_CARON = "DeadCaron"; | 25065 static const String DEAD_CARON = "DeadCaron"; |
| 25066 | 25066 |
| 25067 /** The Combining Cedilla (Dead Cedilla) key */ | 25067 /** The Combining Cedilla (Dead Cedilla) key */ |
| 25068 static final String DEAD_CEDILLA = "DeadCedilla"; | 25068 static const String DEAD_CEDILLA = "DeadCedilla"; |
| 25069 | 25069 |
| 25070 /** The Combining Ogonek (Nasal Hook, Dead Ogonek) key */ | 25070 /** The Combining Ogonek (Nasal Hook, Dead Ogonek) key */ |
| 25071 static final String DEAD_OGONEK = "DeadOgonek"; | 25071 static const String DEAD_OGONEK = "DeadOgonek"; |
| 25072 | 25072 |
| 25073 /** | 25073 /** |
| 25074 * The Combining Greek Ypogegrammeni (Greek Non-Spacing Iota Below, Iota | 25074 * The Combining Greek Ypogegrammeni (Greek Non-Spacing Iota Below, Iota |
| 25075 * Subscript, Dead Iota) key | 25075 * Subscript, Dead Iota) key |
| 25076 */ | 25076 */ |
| 25077 static final String DEAD_IOTA = "DeadIota"; | 25077 static const String DEAD_IOTA = "DeadIota"; |
| 25078 | 25078 |
| 25079 /** | 25079 /** |
| 25080 * The Combining Katakana-Hiragana Voiced Sound Mark (Dead Voiced Sound) key | 25080 * The Combining Katakana-Hiragana Voiced Sound Mark (Dead Voiced Sound) key |
| 25081 */ | 25081 */ |
| 25082 static final String DEAD_VOICED_SOUND = "DeadVoicedSound"; | 25082 static const String DEAD_VOICED_SOUND = "DeadVoicedSound"; |
| 25083 | 25083 |
| 25084 /** | 25084 /** |
| 25085 * The Combining Katakana-Hiragana Semi-Voiced Sound Mark (Dead Semivoiced | 25085 * The Combining Katakana-Hiragana Semi-Voiced Sound Mark (Dead Semivoiced |
| 25086 * Sound) key | 25086 * Sound) key |
| 25087 */ | 25087 */ |
| 25088 static final String DEC_SEMIVOICED_SOUND= "DeadSemivoicedSound"; | 25088 static const String DEC_SEMIVOICED_SOUND= "DeadSemivoicedSound"; |
| 25089 | 25089 |
| 25090 /** | 25090 /** |
| 25091 * Key value used when an implementation is unable to identify another key | 25091 * Key value used when an implementation is unable to identify another key |
| 25092 * value, due to either hardware, platform, or software constraints | 25092 * value, due to either hardware, platform, or software constraints |
| 25093 */ | 25093 */ |
| 25094 static final String UNIDENTIFIED = "Unidentified"; | 25094 static const String UNIDENTIFIED = "Unidentified"; |
| 25095 } | 25095 } |
| 25096 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 25096 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 25097 // for details. All rights reserved. Use of this source code is governed by a | 25097 // for details. All rights reserved. Use of this source code is governed by a |
| 25098 // BSD-style license that can be found in the LICENSE file. | 25098 // BSD-style license that can be found in the LICENSE file. |
| 25099 | 25099 |
| 25100 /** | 25100 /** |
| 25101 * Contains the set of standard values returned by HTMLDocument.getReadyState. | 25101 * Contains the set of standard values returned by HTMLDocument.getReadyState. |
| 25102 */ | 25102 */ |
| 25103 interface ReadyState { | 25103 interface ReadyState { |
| 25104 /** | 25104 /** |
| 25105 * Indicates the document is still loading and parsing. | 25105 * Indicates the document is still loading and parsing. |
| 25106 */ | 25106 */ |
| 25107 static final String LOADING = "loading"; | 25107 static const String LOADING = "loading"; |
| 25108 | 25108 |
| 25109 /** | 25109 /** |
| 25110 * Indicates the document is finished parsing but is still loading | 25110 * Indicates the document is finished parsing but is still loading |
| 25111 * subresources. | 25111 * subresources. |
| 25112 */ | 25112 */ |
| 25113 static final String INTERACTIVE = "interactive"; | 25113 static const String INTERACTIVE = "interactive"; |
| 25114 | 25114 |
| 25115 /** | 25115 /** |
| 25116 * Indicates the document and all subresources have been loaded. | 25116 * Indicates the document and all subresources have been loaded. |
| 25117 */ | 25117 */ |
| 25118 static final String COMPLETE = "complete"; | 25118 static const String COMPLETE = "complete"; |
| 25119 } | 25119 } |
| 25120 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 25120 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 25121 // for details. All rights reserved. Use of this source code is governed by a | 25121 // for details. All rights reserved. Use of this source code is governed by a |
| 25122 // BSD-style license that can be found in the LICENSE file. | 25122 // BSD-style license that can be found in the LICENSE file. |
| 25123 | 25123 |
| 25124 // TODO(vsm): Unify with Dartium version. | 25124 // TODO(vsm): Unify with Dartium version. |
| 25125 class _DOMWindowCrossFrameImpl implements DOMType, DOMWindow { | 25125 class _DOMWindowCrossFrameImpl implements DOMType, DOMWindow { |
| 25126 // Private window. | 25126 // Private window. |
| 25127 _DOMWindowJs _window; | 25127 _DOMWindowJs _window; |
| 25128 | 25128 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 25526 if (length < 0) throw new IllegalArgumentException('length'); | 25526 if (length < 0) throw new IllegalArgumentException('length'); |
| 25527 if (start < 0) throw new IndexOutOfRangeException(start); | 25527 if (start < 0) throw new IndexOutOfRangeException(start); |
| 25528 int end = start + length; | 25528 int end = start + length; |
| 25529 if (end > a.length) throw new IndexOutOfRangeException(end); | 25529 if (end > a.length) throw new IndexOutOfRangeException(end); |
| 25530 for (int i = start; i < end; i++) { | 25530 for (int i = start; i < end; i++) { |
| 25531 accumulator.add(a[i]); | 25531 accumulator.add(a[i]); |
| 25532 } | 25532 } |
| 25533 return accumulator; | 25533 return accumulator; |
| 25534 } | 25534 } |
| 25535 } | 25535 } |
| OLD | NEW |