Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: sdk/lib/_blink/dartium/_blink_dartium.dart

Issue 260893007: Initial overloading implementation in _blink (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Eliminated duplicate entry in dart.idl Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * This library provides entry points to the native Blink code which backs 2 * This library provides entry points to the native Blink code which backs
3 * up the dart:html library. 3 * up the dart:html library.
4 */ 4 */
5 library dart.dom._blink; 5 library dart.dom._blink;
6 6
7 import 'dart:async';
8 import 'dart:collection';
9 import 'dart:html';
10 import 'dart:_internal' hide Symbol, deprecated;
11 import 'dart:html_common';
12 import 'dart:indexed_db';
13 import 'dart:isolate';
14 import "dart:convert";
15 import 'dart:math';
16 import 'dart:mirrors';
17 import 'dart:nativewrappers';
18 import 'dart:typed_data';
19 import 'dart:web_gl' as gl;
20 import 'dart:web_sql';
21 import 'dart:svg' as svg;
22 import 'dart:svg' show Matrix;
23 import 'dart:svg' show SvgSvgElement;
24 import 'dart:web_audio' show AudioNode, AudioParam;
7 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 25 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
8 // for details. All rights reserved. Use of this source code is governed by a 26 // for details. All rights reserved. Use of this source code is governed by a
9 // BSD-style license that can be found in the LICENSE file. 27 // BSD-style license that can be found in the LICENSE file.
10 28
11 // DO NOT EDIT 29 // DO NOT EDIT
12 // Auto-generated dart:_blink library. 30 // Auto-generated dart:_blink library.
13 31
32 // TODO(leafp) These are mostly copied over from dart:html. When
33 // we shift dart:blink generation over to dartium, this dependency
34 // should go away, or at least be reconsidered.
35 // TODO(vsm): Remove this when we can do the proper checking in
36 // native code for custom elements.
37 // Not actually used, but imported since dart:html can generate these objects.
14 38
15 39
16 40
17 Native_ANGLEInstancedArrays_drawArraysInstancedANGLE_Callback(mthis, mode, first , count, primcount) native "ANGLEInstancedArrays_drawArraysInstancedANGLE_Callba ck"; 41 Native_ANGLEInstancedArrays_drawArraysInstancedANGLE_Callback(mthis, mode, first , count, primcount) native "ANGLEInstancedArrays_drawArraysInstancedANGLE_Callba ck";
18 42
19 Native_ANGLEInstancedArrays_drawElementsInstancedANGLE_Callback(mthis, mode, cou nt, type, offset, primcount) native "ANGLEInstancedArrays_drawElementsInstancedA NGLE_Callback"; 43 Native_ANGLEInstancedArrays_drawElementsInstancedANGLE_Callback(mthis, mode, cou nt, type, offset, primcount) native "ANGLEInstancedArrays_drawElementsInstancedA NGLE_Callback";
20 44
21 Native_ANGLEInstancedArrays_vertexAttribDivisorANGLE_Callback(mthis, index, divi sor) native "ANGLEInstancedArrays_vertexAttribDivisorANGLE_Callback"; 45 Native_ANGLEInstancedArrays_vertexAttribDivisorANGLE_Callback(mthis, index, divi sor) native "ANGLEInstancedArrays_vertexAttribDivisorANGLE_Callback";
22 46
23 Native_Algorithm_name_Getter(mthis) native "Algorithm_name_Getter"; 47 Native_Algorithm_name_Getter(mthis) native "Algorithm_name_Getter";
(...skipping 15 matching lines...) Expand all
39 Native_AudioNode_channelInterpretation_Getter(mthis) native "AudioNode_channelIn terpretation_Getter"; 63 Native_AudioNode_channelInterpretation_Getter(mthis) native "AudioNode_channelIn terpretation_Getter";
40 64
41 Native_AudioNode_channelInterpretation_Setter(mthis, value) native "AudioNode_ch annelInterpretation_Setter"; 65 Native_AudioNode_channelInterpretation_Setter(mthis, value) native "AudioNode_ch annelInterpretation_Setter";
42 66
43 Native_AudioNode_context_Getter(mthis) native "AudioNode_context_Getter"; 67 Native_AudioNode_context_Getter(mthis) native "AudioNode_context_Getter";
44 68
45 Native_AudioNode_numberOfInputs_Getter(mthis) native "AudioNode_numberOfInputs_G etter"; 69 Native_AudioNode_numberOfInputs_Getter(mthis) native "AudioNode_numberOfInputs_G etter";
46 70
47 Native_AudioNode_numberOfOutputs_Getter(mthis) native "AudioNode_numberOfOutputs _Getter"; 71 Native_AudioNode_numberOfOutputs_Getter(mthis) native "AudioNode_numberOfOutputs _Getter";
48 72
73 // Generated overload resolver
74 Native_AudioNode__connect(mthis, destination, output, input) {
75 if ((input is int || input == null) && (output is int || output == null) && (destination is AudioNode || destination == null)) {
76 Native_AudioNode__connect_1_Callback(mthis, destination, output, input);
77 return;
78 }
79 if ((output is int || output == null) && (destination is AudioParam || desti nation == null) && input == null) {
80 Native_AudioNode__connect_2_Callback(mthis, destination, output);
81 return;
82 }
83 throw new ArgumentError("Incorrect number or type of arguments");
84 }
85
49 Native_AudioNode__connect_1_Callback(mthis, destination, output, input) native " AudioNode__connect_1_Callback"; 86 Native_AudioNode__connect_1_Callback(mthis, destination, output, input) native " AudioNode__connect_1_Callback";
50 87
51 Native_AudioNode__connect_2_Callback(mthis, destination, output) native "AudioNo de__connect_2_Callback"; 88 Native_AudioNode__connect_2_Callback(mthis, destination, output) native "AudioNo de__connect_2_Callback";
52 89
53 Native_AudioNode_disconnect_Callback(mthis, output) native "AudioNode_disconnect _Callback"; 90 Native_AudioNode_disconnect_Callback(mthis, output) native "AudioNode_disconnect _Callback";
54 91
55 Native_AudioNode_addEventListener_Callback(mthis, type, listener, useCapture) na tive "AudioNode_addEventListener_Callback"; 92 Native_AudioNode_addEventListener_Callback(mthis, type, listener, useCapture) na tive "AudioNode_addEventListener_Callback";
56 93
57 Native_AudioNode_dispatchEvent_Callback(mthis, event) native "AudioNode_dispatch Event_Callback"; 94 Native_AudioNode_dispatchEvent_Callback(mthis, event) native "AudioNode_dispatch Event_Callback";
58 95
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 Native_TimedItem_endTime_Getter(mthis) native "TimedItem_endTime_Getter"; 128 Native_TimedItem_endTime_Getter(mthis) native "TimedItem_endTime_Getter";
92 129
93 Native_TimedItem_localTime_Getter(mthis) native "TimedItem_localTime_Getter"; 130 Native_TimedItem_localTime_Getter(mthis) native "TimedItem_localTime_Getter";
94 131
95 Native_TimedItem_player_Getter(mthis) native "TimedItem_player_Getter"; 132 Native_TimedItem_player_Getter(mthis) native "TimedItem_player_Getter";
96 133
97 Native_TimedItem_specified_Getter(mthis) native "TimedItem_specified_Getter"; 134 Native_TimedItem_specified_Getter(mthis) native "TimedItem_specified_Getter";
98 135
99 Native_TimedItem_startTime_Getter(mthis) native "TimedItem_startTime_Getter"; 136 Native_TimedItem_startTime_Getter(mthis) native "TimedItem_startTime_Getter";
100 137
138 // Generated overload resolver
139 Native_Animation_Animation(target, keyframes, timingInput) {
140 if ((timingInput is Map || timingInput == null) && (keyframes is List<Map> | | keyframes == null) && (target is Element || target == null)) {
141 return Native_Animation__create_1constructorCallback(target, keyframes, ti mingInput);
142 }
143 if ((timingInput is num || timingInput == null) && (keyframes is List<Map> | | keyframes == null) && (target is Element || target == null)) {
144 return Native_Animation__create_2constructorCallback(target, keyframes, ti mingInput);
145 }
146 if ((keyframes is List<Map> || keyframes == null) && (target is Element || t arget == null) && timingInput == null) {
147 return Native_Animation__create_3constructorCallback(target, keyframes);
148 }
149 throw new ArgumentError("Incorrect number or type of arguments");
150 }
151
101 Native_Animation__create_1constructorCallback(target, keyframes, timingInput) na tive "Animation__create_1constructorCallback"; 152 Native_Animation__create_1constructorCallback(target, keyframes, timingInput) na tive "Animation__create_1constructorCallback";
102 153
103 Native_Animation__create_2constructorCallback(target, keyframes, timingInput) na tive "Animation__create_2constructorCallback"; 154 Native_Animation__create_2constructorCallback(target, keyframes, timingInput) na tive "Animation__create_2constructorCallback";
104 155
105 Native_Animation__create_3constructorCallback(target, keyframes) native "Animati on__create_3constructorCallback"; 156 Native_Animation__create_3constructorCallback(target, keyframes) native "Animati on__create_3constructorCallback";
106 157
107 Native_ApplicationCache_status_Getter(mthis) native "ApplicationCache_status_Get ter"; 158 Native_ApplicationCache_status_Getter(mthis) native "ApplicationCache_status_Get ter";
108 159
109 Native_ApplicationCache_abort_Callback(mthis) native "ApplicationCache_abort_Cal lback"; 160 Native_ApplicationCache_abort_Callback(mthis) native "ApplicationCache_abort_Cal lback";
110 161
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 Native_AudioBufferSourceNode_playbackRate_Getter(mthis) native "AudioBufferSourc eNode_playbackRate_Getter"; 266 Native_AudioBufferSourceNode_playbackRate_Getter(mthis) native "AudioBufferSourc eNode_playbackRate_Getter";
216 267
217 Native_AudioBufferSourceNode_playbackState_Getter(mthis) native "AudioBufferSour ceNode_playbackState_Getter"; 268 Native_AudioBufferSourceNode_playbackState_Getter(mthis) native "AudioBufferSour ceNode_playbackState_Getter";
218 269
219 Native_AudioBufferSourceNode_noteGrainOn_Callback(mthis, when, grainOffset, grai nDuration) native "AudioBufferSourceNode_noteGrainOn_Callback"; 270 Native_AudioBufferSourceNode_noteGrainOn_Callback(mthis, when, grainOffset, grai nDuration) native "AudioBufferSourceNode_noteGrainOn_Callback";
220 271
221 Native_AudioBufferSourceNode_noteOff_Callback(mthis, when) native "AudioBufferSo urceNode_noteOff_Callback"; 272 Native_AudioBufferSourceNode_noteOff_Callback(mthis, when) native "AudioBufferSo urceNode_noteOff_Callback";
222 273
223 Native_AudioBufferSourceNode_noteOn_Callback(mthis, when) native "AudioBufferSou rceNode_noteOn_Callback"; 274 Native_AudioBufferSourceNode_noteOn_Callback(mthis, when) native "AudioBufferSou rceNode_noteOn_Callback";
224 275
276 // Generated overload resolver
277 Native_AudioBufferSourceNode_start(mthis, when, grainOffset, grainDuration) {
278 if (grainDuration != null) {
279 Native_AudioBufferSourceNode__start_1_Callback(mthis, when, grainOffset, g rainDuration);
280 return;
281 }
282 if (grainOffset != null) {
283 Native_AudioBufferSourceNode__start_2_Callback(mthis, when, grainOffset);
284 return;
285 }
286 if (when != null) {
287 Native_AudioBufferSourceNode__start_3_Callback(mthis, when);
288 return;
289 }
290 Native_AudioBufferSourceNode__start_4_Callback(mthis);
291 return;
292 }
293
225 Native_AudioBufferSourceNode__start_1_Callback(mthis, when, grainOffset, grainDu ration) native "AudioBufferSourceNode__start_1_Callback"; 294 Native_AudioBufferSourceNode__start_1_Callback(mthis, when, grainOffset, grainDu ration) native "AudioBufferSourceNode__start_1_Callback";
226 295
227 Native_AudioBufferSourceNode__start_2_Callback(mthis, when, grainOffset) native "AudioBufferSourceNode__start_2_Callback"; 296 Native_AudioBufferSourceNode__start_2_Callback(mthis, when, grainOffset) native "AudioBufferSourceNode__start_2_Callback";
228 297
229 Native_AudioBufferSourceNode__start_3_Callback(mthis, when) native "AudioBufferS ourceNode__start_3_Callback"; 298 Native_AudioBufferSourceNode__start_3_Callback(mthis, when) native "AudioBufferS ourceNode__start_3_Callback";
230 299
231 Native_AudioBufferSourceNode__start_4_Callback(mthis) native "AudioBufferSourceN ode__start_4_Callback"; 300 Native_AudioBufferSourceNode__start_4_Callback(mthis) native "AudioBufferSourceN ode__start_4_Callback";
232 301
302 // Generated overload resolver
303 Native_AudioBufferSourceNode_stop(mthis, when) {
304 if (when != null) {
305 Native_AudioBufferSourceNode__stop_1_Callback(mthis, when);
306 return;
307 }
308 Native_AudioBufferSourceNode__stop_2_Callback(mthis);
309 return;
310 }
311
233 Native_AudioBufferSourceNode__stop_1_Callback(mthis, when) native "AudioBufferSo urceNode__stop_1_Callback"; 312 Native_AudioBufferSourceNode__stop_1_Callback(mthis, when) native "AudioBufferSo urceNode__stop_1_Callback";
234 313
235 Native_AudioBufferSourceNode__stop_2_Callback(mthis) native "AudioBufferSourceNo de__stop_2_Callback"; 314 Native_AudioBufferSourceNode__stop_2_Callback(mthis) native "AudioBufferSourceNo de__stop_2_Callback";
236 315
316 // Generated overload resolver
317 Native_AudioContext_AudioContext() {
318 return Native_AudioContext__create_1constructorCallback();
319 }
320
237 Native_AudioContext__create_1constructorCallback() native "AudioContext__create_ 1constructorCallback"; 321 Native_AudioContext__create_1constructorCallback() native "AudioContext__create_ 1constructorCallback";
238 322
239 Native_AudioContext_activeSourceCount_Getter(mthis) native "AudioContext_activeS ourceCount_Getter"; 323 Native_AudioContext_activeSourceCount_Getter(mthis) native "AudioContext_activeS ourceCount_Getter";
240 324
241 Native_AudioContext_currentTime_Getter(mthis) native "AudioContext_currentTime_G etter"; 325 Native_AudioContext_currentTime_Getter(mthis) native "AudioContext_currentTime_G etter";
242 326
243 Native_AudioContext_destination_Getter(mthis) native "AudioContext_destination_G etter"; 327 Native_AudioContext_destination_Getter(mthis) native "AudioContext_destination_G etter";
244 328
245 Native_AudioContext_listener_Getter(mthis) native "AudioContext_listener_Getter" ; 329 Native_AudioContext_listener_Getter(mthis) native "AudioContext_listener_Getter" ;
246 330
247 Native_AudioContext_sampleRate_Getter(mthis) native "AudioContext_sampleRate_Get ter"; 331 Native_AudioContext_sampleRate_Getter(mthis) native "AudioContext_sampleRate_Get ter";
248 332
249 Native_AudioContext_createAnalyser_Callback(mthis) native "AudioContext_createAn alyser_Callback"; 333 Native_AudioContext_createAnalyser_Callback(mthis) native "AudioContext_createAn alyser_Callback";
250 334
251 Native_AudioContext_createBiquadFilter_Callback(mthis) native "AudioContext_crea teBiquadFilter_Callback"; 335 Native_AudioContext_createBiquadFilter_Callback(mthis) native "AudioContext_crea teBiquadFilter_Callback";
252 336
253 Native_AudioContext_createBuffer_Callback(mthis, numberOfChannels, numberOfFrame s, sampleRate) native "AudioContext_createBuffer_Callback"; 337 Native_AudioContext_createBuffer_Callback(mthis, numberOfChannels, numberOfFrame s, sampleRate) native "AudioContext_createBuffer_Callback";
254 338
255 Native_AudioContext_createBufferFromBuffer_Callback(mthis, buffer, mixToMono) na tive "AudioContext_createBufferFromBuffer_Callback"; 339 Native_AudioContext_createBufferFromBuffer_Callback(mthis, buffer, mixToMono) na tive "AudioContext_createBufferFromBuffer_Callback";
256 340
257 Native_AudioContext_createBufferSource_Callback(mthis) native "AudioContext_crea teBufferSource_Callback"; 341 Native_AudioContext_createBufferSource_Callback(mthis) native "AudioContext_crea teBufferSource_Callback";
258 342
343 // Generated overload resolver
344 Native_AudioContext_createChannelMerger(mthis, numberOfInputs) {
345 if (numberOfInputs != null) {
346 return Native_AudioContext__createChannelMerger_1_Callback(mthis, numberOf Inputs);
347 }
348 return Native_AudioContext__createChannelMerger_2_Callback(mthis);
349 }
350
259 Native_AudioContext__createChannelMerger_1_Callback(mthis, numberOfInputs) nativ e "AudioContext__createChannelMerger_1_Callback"; 351 Native_AudioContext__createChannelMerger_1_Callback(mthis, numberOfInputs) nativ e "AudioContext__createChannelMerger_1_Callback";
260 352
261 Native_AudioContext__createChannelMerger_2_Callback(mthis) native "AudioContext_ _createChannelMerger_2_Callback"; 353 Native_AudioContext__createChannelMerger_2_Callback(mthis) native "AudioContext_ _createChannelMerger_2_Callback";
262 354
355 // Generated overload resolver
356 Native_AudioContext_createChannelSplitter(mthis, numberOfOutputs) {
357 if (numberOfOutputs != null) {
358 return Native_AudioContext__createChannelSplitter_1_Callback(mthis, number OfOutputs);
359 }
360 return Native_AudioContext__createChannelSplitter_2_Callback(mthis);
361 }
362
263 Native_AudioContext__createChannelSplitter_1_Callback(mthis, numberOfOutputs) na tive "AudioContext__createChannelSplitter_1_Callback"; 363 Native_AudioContext__createChannelSplitter_1_Callback(mthis, numberOfOutputs) na tive "AudioContext__createChannelSplitter_1_Callback";
264 364
265 Native_AudioContext__createChannelSplitter_2_Callback(mthis) native "AudioContex t__createChannelSplitter_2_Callback"; 365 Native_AudioContext__createChannelSplitter_2_Callback(mthis) native "AudioContex t__createChannelSplitter_2_Callback";
266 366
267 Native_AudioContext_createConvolver_Callback(mthis) native "AudioContext_createC onvolver_Callback"; 367 Native_AudioContext_createConvolver_Callback(mthis) native "AudioContext_createC onvolver_Callback";
268 368
369 // Generated overload resolver
370 Native_AudioContext_createDelay(mthis, maxDelayTime) {
371 if (maxDelayTime != null) {
372 return Native_AudioContext__createDelay_1_Callback(mthis, maxDelayTime);
373 }
374 return Native_AudioContext__createDelay_2_Callback(mthis);
375 }
376
269 Native_AudioContext__createDelay_1_Callback(mthis, maxDelayTime) native "AudioCo ntext__createDelay_1_Callback"; 377 Native_AudioContext__createDelay_1_Callback(mthis, maxDelayTime) native "AudioCo ntext__createDelay_1_Callback";
270 378
271 Native_AudioContext__createDelay_2_Callback(mthis) native "AudioContext__createD elay_2_Callback"; 379 Native_AudioContext__createDelay_2_Callback(mthis) native "AudioContext__createD elay_2_Callback";
272 380
381 // Generated overload resolver
382 Native_AudioContext_createDelayNode(mthis, maxDelayTime) {
383 if (maxDelayTime != null) {
384 return Native_AudioContext__createDelayNode_1_Callback(mthis, maxDelayTime );
385 }
386 return Native_AudioContext__createDelayNode_2_Callback(mthis);
387 }
388
273 Native_AudioContext__createDelayNode_1_Callback(mthis, maxDelayTime) native "Aud ioContext__createDelayNode_1_Callback"; 389 Native_AudioContext__createDelayNode_1_Callback(mthis, maxDelayTime) native "Aud ioContext__createDelayNode_1_Callback";
274 390
275 Native_AudioContext__createDelayNode_2_Callback(mthis) native "AudioContext__cre ateDelayNode_2_Callback"; 391 Native_AudioContext__createDelayNode_2_Callback(mthis) native "AudioContext__cre ateDelayNode_2_Callback";
276 392
277 Native_AudioContext_createDynamicsCompressor_Callback(mthis) native "AudioContex t_createDynamicsCompressor_Callback"; 393 Native_AudioContext_createDynamicsCompressor_Callback(mthis) native "AudioContex t_createDynamicsCompressor_Callback";
278 394
279 Native_AudioContext_createGain_Callback(mthis) native "AudioContext_createGain_C allback"; 395 Native_AudioContext_createGain_Callback(mthis) native "AudioContext_createGain_C allback";
280 396
281 Native_AudioContext_createGainNode_Callback(mthis) native "AudioContext_createGa inNode_Callback"; 397 Native_AudioContext_createGainNode_Callback(mthis) native "AudioContext_createGa inNode_Callback";
282 398
399 // Generated overload resolver
400 Native_AudioContext_createJavaScriptNode(mthis, bufferSize, numberOfInputChannel s, numberOfOutputChannels) {
401 if (numberOfOutputChannels != null) {
402 return Native_AudioContext__createJavaScriptNode_1_Callback(mthis, bufferS ize, numberOfInputChannels, numberOfOutputChannels);
403 }
404 if (numberOfInputChannels != null) {
405 return Native_AudioContext__createJavaScriptNode_2_Callback(mthis, bufferS ize, numberOfInputChannels);
406 }
407 return Native_AudioContext__createJavaScriptNode_3_Callback(mthis, bufferSiz e);
408 }
409
283 Native_AudioContext__createJavaScriptNode_1_Callback(mthis, bufferSize, numberOf InputChannels, numberOfOutputChannels) native "AudioContext__createJavaScriptNod e_1_Callback"; 410 Native_AudioContext__createJavaScriptNode_1_Callback(mthis, bufferSize, numberOf InputChannels, numberOfOutputChannels) native "AudioContext__createJavaScriptNod e_1_Callback";
284 411
285 Native_AudioContext__createJavaScriptNode_2_Callback(mthis, bufferSize, numberOf InputChannels) native "AudioContext__createJavaScriptNode_2_Callback"; 412 Native_AudioContext__createJavaScriptNode_2_Callback(mthis, bufferSize, numberOf InputChannels) native "AudioContext__createJavaScriptNode_2_Callback";
286 413
287 Native_AudioContext__createJavaScriptNode_3_Callback(mthis, bufferSize) native " AudioContext__createJavaScriptNode_3_Callback"; 414 Native_AudioContext__createJavaScriptNode_3_Callback(mthis, bufferSize) native " AudioContext__createJavaScriptNode_3_Callback";
288 415
289 Native_AudioContext_createMediaElementSource_Callback(mthis, mediaElement) nativ e "AudioContext_createMediaElementSource_Callback"; 416 Native_AudioContext_createMediaElementSource_Callback(mthis, mediaElement) nativ e "AudioContext_createMediaElementSource_Callback";
290 417
291 Native_AudioContext_createMediaStreamDestination_Callback(mthis) native "AudioCo ntext_createMediaStreamDestination_Callback"; 418 Native_AudioContext_createMediaStreamDestination_Callback(mthis) native "AudioCo ntext_createMediaStreamDestination_Callback";
292 419
293 Native_AudioContext_createMediaStreamSource_Callback(mthis, mediaStream) native "AudioContext_createMediaStreamSource_Callback"; 420 Native_AudioContext_createMediaStreamSource_Callback(mthis, mediaStream) native "AudioContext_createMediaStreamSource_Callback";
294 421
295 Native_AudioContext_createOscillator_Callback(mthis) native "AudioContext_create Oscillator_Callback"; 422 Native_AudioContext_createOscillator_Callback(mthis) native "AudioContext_create Oscillator_Callback";
296 423
297 Native_AudioContext_createPanner_Callback(mthis) native "AudioContext_createPann er_Callback"; 424 Native_AudioContext_createPanner_Callback(mthis) native "AudioContext_createPann er_Callback";
298 425
299 Native_AudioContext_createPeriodicWave_Callback(mthis, real, imag) native "Audio Context_createPeriodicWave_Callback"; 426 Native_AudioContext_createPeriodicWave_Callback(mthis, real, imag) native "Audio Context_createPeriodicWave_Callback";
300 427
428 // Generated overload resolver
429 Native_AudioContext_createScriptProcessor(mthis, bufferSize, numberOfInputChanne ls, numberOfOutputChannels) {
430 if (numberOfOutputChannels != null) {
431 return Native_AudioContext__createScriptProcessor_1_Callback(mthis, buffer Size, numberOfInputChannels, numberOfOutputChannels);
432 }
433 if (numberOfInputChannels != null) {
434 return Native_AudioContext__createScriptProcessor_2_Callback(mthis, buffer Size, numberOfInputChannels);
435 }
436 if (bufferSize != null) {
437 return Native_AudioContext__createScriptProcessor_3_Callback(mthis, buffer Size);
438 }
439 return Native_AudioContext__createScriptProcessor_4_Callback(mthis);
440 }
441
301 Native_AudioContext__createScriptProcessor_1_Callback(mthis, bufferSize, numberO fInputChannels, numberOfOutputChannels) native "AudioContext__createScriptProces sor_1_Callback"; 442 Native_AudioContext__createScriptProcessor_1_Callback(mthis, bufferSize, numberO fInputChannels, numberOfOutputChannels) native "AudioContext__createScriptProces sor_1_Callback";
302 443
303 Native_AudioContext__createScriptProcessor_2_Callback(mthis, bufferSize, numberO fInputChannels) native "AudioContext__createScriptProcessor_2_Callback"; 444 Native_AudioContext__createScriptProcessor_2_Callback(mthis, bufferSize, numberO fInputChannels) native "AudioContext__createScriptProcessor_2_Callback";
304 445
305 Native_AudioContext__createScriptProcessor_3_Callback(mthis, bufferSize) native "AudioContext__createScriptProcessor_3_Callback"; 446 Native_AudioContext__createScriptProcessor_3_Callback(mthis, bufferSize) native "AudioContext__createScriptProcessor_3_Callback";
306 447
307 Native_AudioContext__createScriptProcessor_4_Callback(mthis) native "AudioContex t__createScriptProcessor_4_Callback"; 448 Native_AudioContext__createScriptProcessor_4_Callback(mthis) native "AudioContex t__createScriptProcessor_4_Callback";
308 449
309 Native_AudioContext_createWaveShaper_Callback(mthis) native "AudioContext_create WaveShaper_Callback"; 450 Native_AudioContext_createWaveShaper_Callback(mthis) native "AudioContext_create WaveShaper_Callback";
310 451
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 Native_BiquadFilterNode_type_Setter(mthis, value) native "BiquadFilterNode_type_ Setter"; 558 Native_BiquadFilterNode_type_Setter(mthis, value) native "BiquadFilterNode_type_ Setter";
418 559
419 Native_BiquadFilterNode_getFrequencyResponse_Callback(mthis, frequencyHz, magRes ponse, phaseResponse) native "BiquadFilterNode_getFrequencyResponse_Callback"; 560 Native_BiquadFilterNode_getFrequencyResponse_Callback(mthis, frequencyHz, magRes ponse, phaseResponse) native "BiquadFilterNode_getFrequencyResponse_Callback";
420 561
421 Native_Blob_constructorCallback(blobParts, type, endings) native "Blob_construct orCallback"; 562 Native_Blob_constructorCallback(blobParts, type, endings) native "Blob_construct orCallback";
422 563
423 Native_Blob_size_Getter(mthis) native "Blob_size_Getter"; 564 Native_Blob_size_Getter(mthis) native "Blob_size_Getter";
424 565
425 Native_Blob_type_Getter(mthis) native "Blob_type_Getter"; 566 Native_Blob_type_Getter(mthis) native "Blob_type_Getter";
426 567
568 // Generated overload resolver
569 Native_Blob_slice(mthis, start, end, contentType) {
570 if (contentType != null) {
571 return Native_Blob__slice_1_Callback(mthis, start, end, contentType);
572 }
573 if (end != null) {
574 return Native_Blob__slice_2_Callback(mthis, start, end);
575 }
576 if (start != null) {
577 return Native_Blob__slice_3_Callback(mthis, start);
578 }
579 return Native_Blob__slice_4_Callback(mthis);
580 }
581
427 Native_Blob__slice_1_Callback(mthis, start, end, contentType) native "Blob__slic e_1_Callback"; 582 Native_Blob__slice_1_Callback(mthis, start, end, contentType) native "Blob__slic e_1_Callback";
428 583
429 Native_Blob__slice_2_Callback(mthis, start, end) native "Blob__slice_2_Callback" ; 584 Native_Blob__slice_2_Callback(mthis, start, end) native "Blob__slice_2_Callback" ;
430 585
431 Native_Blob__slice_3_Callback(mthis, start) native "Blob__slice_3_Callback"; 586 Native_Blob__slice_3_Callback(mthis, start) native "Blob__slice_3_Callback";
432 587
433 Native_Blob__slice_4_Callback(mthis) native "Blob__slice_4_Callback"; 588 Native_Blob__slice_4_Callback(mthis) native "Blob__slice_4_Callback";
434 589
435 Native_ChildNode_nextElementSibling_Getter(mthis) native "ChildNode_nextElementS ibling_Getter"; 590 Native_ChildNode_nextElementSibling_Getter(mthis) native "ChildNode_nextElementS ibling_Getter";
436 591
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 Native_StyleSheet_title_Getter(mthis) native "StyleSheet_title_Getter"; 728 Native_StyleSheet_title_Getter(mthis) native "StyleSheet_title_Getter";
574 729
575 Native_StyleSheet_type_Getter(mthis) native "StyleSheet_type_Getter"; 730 Native_StyleSheet_type_Getter(mthis) native "StyleSheet_type_Getter";
576 731
577 Native_CSSStyleSheet_cssRules_Getter(mthis) native "CSSStyleSheet_cssRules_Gette r"; 732 Native_CSSStyleSheet_cssRules_Getter(mthis) native "CSSStyleSheet_cssRules_Gette r";
578 733
579 Native_CSSStyleSheet_ownerRule_Getter(mthis) native "CSSStyleSheet_ownerRule_Get ter"; 734 Native_CSSStyleSheet_ownerRule_Getter(mthis) native "CSSStyleSheet_ownerRule_Get ter";
580 735
581 Native_CSSStyleSheet_rules_Getter(mthis) native "CSSStyleSheet_rules_Getter"; 736 Native_CSSStyleSheet_rules_Getter(mthis) native "CSSStyleSheet_rules_Getter";
582 737
738 // Generated overload resolver
739 Native_CSSStyleSheet_addRule(mthis, selector, style, index) {
740 if (index != null) {
741 return Native_CSSStyleSheet__addRule_1_Callback(mthis, selector, style, in dex);
742 }
743 return Native_CSSStyleSheet__addRule_2_Callback(mthis, selector, style);
744 }
745
583 Native_CSSStyleSheet__addRule_1_Callback(mthis, selector, style, index) native " CSSStyleSheet__addRule_1_Callback"; 746 Native_CSSStyleSheet__addRule_1_Callback(mthis, selector, style, index) native " CSSStyleSheet__addRule_1_Callback";
584 747
585 Native_CSSStyleSheet__addRule_2_Callback(mthis, selector, style) native "CSSStyl eSheet__addRule_2_Callback"; 748 Native_CSSStyleSheet__addRule_2_Callback(mthis, selector, style) native "CSSStyl eSheet__addRule_2_Callback";
586 749
587 Native_CSSStyleSheet_deleteRule_Callback(mthis, index) native "CSSStyleSheet_del eteRule_Callback"; 750 Native_CSSStyleSheet_deleteRule_Callback(mthis, index) native "CSSStyleSheet_del eteRule_Callback";
588 751
752 // Generated overload resolver
753 Native_CSSStyleSheet_insertRule(mthis, rule, index) {
754 if (index != null) {
755 return Native_CSSStyleSheet__insertRule_1_Callback(mthis, rule, index);
756 }
757 return Native_CSSStyleSheet__insertRule_2_Callback(mthis, rule);
758 }
759
589 Native_CSSStyleSheet__insertRule_1_Callback(mthis, rule, index) native "CSSStyle Sheet__insertRule_1_Callback"; 760 Native_CSSStyleSheet__insertRule_1_Callback(mthis, rule, index) native "CSSStyle Sheet__insertRule_1_Callback";
590 761
591 Native_CSSStyleSheet__insertRule_2_Callback(mthis, rule) native "CSSStyleSheet__ insertRule_2_Callback"; 762 Native_CSSStyleSheet__insertRule_2_Callback(mthis, rule) native "CSSStyleSheet__ insertRule_2_Callback";
592 763
593 Native_CSSStyleSheet_removeRule_Callback(mthis, index) native "CSSStyleSheet_rem oveRule_Callback"; 764 Native_CSSStyleSheet_removeRule_Callback(mthis, index) native "CSSStyleSheet_rem oveRule_Callback";
594 765
595 Native_CSSSupportsRule_conditionText_Getter(mthis) native "CSSSupportsRule_condi tionText_Getter"; 766 Native_CSSSupportsRule_conditionText_Getter(mthis) native "CSSSupportsRule_condi tionText_Getter";
596 767
597 Native_CSSSupportsRule_cssRules_Getter(mthis) native "CSSSupportsRule_cssRules_G etter"; 768 Native_CSSSupportsRule_cssRules_Getter(mthis) native "CSSSupportsRule_cssRules_G etter";
598 769
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 Native_CanvasRenderingContext2D_arc_Callback(mthis, x, y, radius, startAngle, en dAngle, anticlockwise) native "CanvasRenderingContext2D_arc_Callback"; 868 Native_CanvasRenderingContext2D_arc_Callback(mthis, x, y, radius, startAngle, en dAngle, anticlockwise) native "CanvasRenderingContext2D_arc_Callback";
698 869
699 Native_CanvasRenderingContext2D_arcTo_Callback(mthis, x1, y1, x2, y2, radius) na tive "CanvasRenderingContext2D_arcTo_Callback"; 870 Native_CanvasRenderingContext2D_arcTo_Callback(mthis, x1, y1, x2, y2, radius) na tive "CanvasRenderingContext2D_arcTo_Callback";
700 871
701 Native_CanvasRenderingContext2D_beginPath_Callback(mthis) native "CanvasRenderin gContext2D_beginPath_Callback"; 872 Native_CanvasRenderingContext2D_beginPath_Callback(mthis) native "CanvasRenderin gContext2D_beginPath_Callback";
702 873
703 Native_CanvasRenderingContext2D_bezierCurveTo_Callback(mthis, cp1x, cp1y, cp2x, cp2y, x, y) native "CanvasRenderingContext2D_bezierCurveTo_Callback"; 874 Native_CanvasRenderingContext2D_bezierCurveTo_Callback(mthis, cp1x, cp1y, cp2x, cp2y, x, y) native "CanvasRenderingContext2D_bezierCurveTo_Callback";
704 875
705 Native_CanvasRenderingContext2D_clearRect_Callback(mthis, x, y, width, height) n ative "CanvasRenderingContext2D_clearRect_Callback"; 876 Native_CanvasRenderingContext2D_clearRect_Callback(mthis, x, y, width, height) n ative "CanvasRenderingContext2D_clearRect_Callback";
706 877
878 // Generated overload resolver
879 Native_CanvasRenderingContext2D_clip(mthis, winding) {
880 if (winding != null) {
881 Native_CanvasRenderingContext2D__clip_1_Callback(mthis, winding);
882 return;
883 }
884 Native_CanvasRenderingContext2D__clip_2_Callback(mthis);
885 return;
886 }
887
707 Native_CanvasRenderingContext2D__clip_1_Callback(mthis, winding) native "CanvasR enderingContext2D__clip_1_Callback"; 888 Native_CanvasRenderingContext2D__clip_1_Callback(mthis, winding) native "CanvasR enderingContext2D__clip_1_Callback";
708 889
709 Native_CanvasRenderingContext2D__clip_2_Callback(mthis) native "CanvasRenderingC ontext2D__clip_2_Callback"; 890 Native_CanvasRenderingContext2D__clip_2_Callback(mthis) native "CanvasRenderingC ontext2D__clip_2_Callback";
710 891
711 Native_CanvasRenderingContext2D_closePath_Callback(mthis) native "CanvasRenderin gContext2D_closePath_Callback"; 892 Native_CanvasRenderingContext2D_closePath_Callback(mthis) native "CanvasRenderin gContext2D_closePath_Callback";
712 893
713 Native_CanvasRenderingContext2D_createImageData_Callback(mthis, sw, sh) native " CanvasRenderingContext2D_createImageData_Callback"; 894 Native_CanvasRenderingContext2D_createImageData_Callback(mthis, sw, sh) native " CanvasRenderingContext2D_createImageData_Callback";
714 895
715 Native_CanvasRenderingContext2D_createImageDataFromImageData_Callback(mthis, ima gedata) native "CanvasRenderingContext2D_createImageDataFromImageData_Callback"; 896 Native_CanvasRenderingContext2D_createImageDataFromImageData_Callback(mthis, ima gedata) native "CanvasRenderingContext2D_createImageDataFromImageData_Callback";
716 897
717 Native_CanvasRenderingContext2D_createLinearGradient_Callback(mthis, x0, y0, x1, y1) native "CanvasRenderingContext2D_createLinearGradient_Callback"; 898 Native_CanvasRenderingContext2D_createLinearGradient_Callback(mthis, x0, y0, x1, y1) native "CanvasRenderingContext2D_createLinearGradient_Callback";
718 899
719 Native_CanvasRenderingContext2D_createPattern_Callback(mthis, canvas, repetition Type) native "CanvasRenderingContext2D_createPattern_Callback"; 900 Native_CanvasRenderingContext2D_createPattern_Callback(mthis, canvas, repetition Type) native "CanvasRenderingContext2D_createPattern_Callback";
720 901
721 Native_CanvasRenderingContext2D_createPatternFromImage_Callback(mthis, image, re petitionType) native "CanvasRenderingContext2D_createPatternFromImage_Callback"; 902 Native_CanvasRenderingContext2D_createPatternFromImage_Callback(mthis, image, re petitionType) native "CanvasRenderingContext2D_createPatternFromImage_Callback";
722 903
723 Native_CanvasRenderingContext2D_createRadialGradient_Callback(mthis, x0, y0, r0, x1, y1, r1) native "CanvasRenderingContext2D_createRadialGradient_Callback"; 904 Native_CanvasRenderingContext2D_createRadialGradient_Callback(mthis, x0, y0, r0, x1, y1, r1) native "CanvasRenderingContext2D_createRadialGradient_Callback";
724 905
725 Native_CanvasRenderingContext2D_drawCustomFocusRing_Callback(mthis, element) nat ive "CanvasRenderingContext2D_drawCustomFocusRing_Callback"; 906 Native_CanvasRenderingContext2D_drawCustomFocusRing_Callback(mthis, element) nat ive "CanvasRenderingContext2D_drawCustomFocusRing_Callback";
726 907
908 // Generated overload resolver
909 Native_CanvasRenderingContext2D__drawImage(mthis, canvas_OR_image_OR_imageBitmap _OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, dh) {
910 if ((sy_OR_y is num || sy_OR_y == null) && (sx_OR_x is num || sx_OR_x == nul l) && (canvas_OR_image_OR_imageBitmap_OR_video is ImageElement || canvas_OR_imag e_OR_imageBitmap_OR_video == null) && sw_OR_width == null && height_OR_sh == nul l && dx == null && dy == null && dw == null && dh == null) {
911 Native_CanvasRenderingContext2D__drawImage_1_Callback(mthis, canvas_OR_ima ge_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y);
912 return;
913 }
914 if ((height_OR_sh is num || height_OR_sh == null) && (sw_OR_width is num || sw_OR_width == null) && (sy_OR_y is num || sy_OR_y == null) && (sx_OR_x is num | | sx_OR_x == null) && (canvas_OR_image_OR_imageBitmap_OR_video is ImageElement | | canvas_OR_image_OR_imageBitmap_OR_video == null) && dx == null && dy == null & & dw == null && dh == null) {
915 Native_CanvasRenderingContext2D__drawImage_2_Callback(mthis, canvas_OR_ima ge_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh);
916 return;
917 }
918 if ((dh is num || dh == null) && (dw is num || dw == null) && (dy is num || dy == null) && (dx is num || dx == null) && (height_OR_sh is num || height_OR_sh == null) && (sw_OR_width is num || sw_OR_width == null) && (sy_OR_y is num || s y_OR_y == null) && (sx_OR_x is num || sx_OR_x == null) && (canvas_OR_image_OR_im ageBitmap_OR_video is ImageElement || canvas_OR_image_OR_imageBitmap_OR_video == null)) {
919 Native_CanvasRenderingContext2D__drawImage_3_Callback(mthis, canvas_OR_ima ge_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, dh);
920 return;
921 }
922 if ((sy_OR_y is num || sy_OR_y == null) && (sx_OR_x is num || sx_OR_x == nul l) && (canvas_OR_image_OR_imageBitmap_OR_video is CanvasElement || canvas_OR_ima ge_OR_imageBitmap_OR_video == null) && sw_OR_width == null && height_OR_sh == nu ll && dx == null && dy == null && dw == null && dh == null) {
923 Native_CanvasRenderingContext2D__drawImage_4_Callback(mthis, canvas_OR_ima ge_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y);
924 return;
925 }
926 if ((height_OR_sh is num || height_OR_sh == null) && (sw_OR_width is num || sw_OR_width == null) && (sy_OR_y is num || sy_OR_y == null) && (sx_OR_x is num | | sx_OR_x == null) && (canvas_OR_image_OR_imageBitmap_OR_video is CanvasElement || canvas_OR_image_OR_imageBitmap_OR_video == null) && dx == null && dy == null && dw == null && dh == null) {
927 Native_CanvasRenderingContext2D__drawImage_5_Callback(mthis, canvas_OR_ima ge_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh);
928 return;
929 }
930 if ((dh is num || dh == null) && (dw is num || dw == null) && (dy is num || dy == null) && (dx is num || dx == null) && (height_OR_sh is num || height_OR_sh == null) && (sw_OR_width is num || sw_OR_width == null) && (sy_OR_y is num || s y_OR_y == null) && (sx_OR_x is num || sx_OR_x == null) && (canvas_OR_image_OR_im ageBitmap_OR_video is CanvasElement || canvas_OR_image_OR_imageBitmap_OR_video = = null)) {
931 Native_CanvasRenderingContext2D__drawImage_6_Callback(mthis, canvas_OR_ima ge_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, dh);
932 return;
933 }
934 if ((sy_OR_y is num || sy_OR_y == null) && (sx_OR_x is num || sx_OR_x == nul l) && (canvas_OR_image_OR_imageBitmap_OR_video is VideoElement || canvas_OR_imag e_OR_imageBitmap_OR_video == null) && sw_OR_width == null && height_OR_sh == nul l && dx == null && dy == null && dw == null && dh == null) {
935 Native_CanvasRenderingContext2D__drawImage_7_Callback(mthis, canvas_OR_ima ge_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y);
936 return;
937 }
938 if ((height_OR_sh is num || height_OR_sh == null) && (sw_OR_width is num || sw_OR_width == null) && (sy_OR_y is num || sy_OR_y == null) && (sx_OR_x is num | | sx_OR_x == null) && (canvas_OR_image_OR_imageBitmap_OR_video is VideoElement | | canvas_OR_image_OR_imageBitmap_OR_video == null) && dx == null && dy == null & & dw == null && dh == null) {
939 Native_CanvasRenderingContext2D__drawImage_8_Callback(mthis, canvas_OR_ima ge_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh);
940 return;
941 }
942 if ((dh is num || dh == null) && (dw is num || dw == null) && (dy is num || dy == null) && (dx is num || dx == null) && (height_OR_sh is num || height_OR_sh == null) && (sw_OR_width is num || sw_OR_width == null) && (sy_OR_y is num || s y_OR_y == null) && (sx_OR_x is num || sx_OR_x == null) && (canvas_OR_image_OR_im ageBitmap_OR_video is VideoElement || canvas_OR_image_OR_imageBitmap_OR_video == null)) {
943 Native_CanvasRenderingContext2D__drawImage_9_Callback(mthis, canvas_OR_ima ge_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, dh);
944 return;
945 }
946 if ((sy_OR_y is num || sy_OR_y == null) && (sx_OR_x is num || sx_OR_x == nul l) && (canvas_OR_image_OR_imageBitmap_OR_video is ImageBitmap || canvas_OR_image _OR_imageBitmap_OR_video == null) && sw_OR_width == null && height_OR_sh == null && dx == null && dy == null && dw == null && dh == null) {
947 Native_CanvasRenderingContext2D__drawImage_10_Callback(mthis, canvas_OR_im age_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y);
948 return;
949 }
950 if ((height_OR_sh is num || height_OR_sh == null) && (sw_OR_width is num || sw_OR_width == null) && (sy_OR_y is num || sy_OR_y == null) && (sx_OR_x is num | | sx_OR_x == null) && (canvas_OR_image_OR_imageBitmap_OR_video is ImageBitmap || canvas_OR_image_OR_imageBitmap_OR_video == null) && dx == null && dy == null && dw == null && dh == null) {
951 Native_CanvasRenderingContext2D__drawImage_11_Callback(mthis, canvas_OR_im age_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh);
952 return;
953 }
954 if ((dh is num || dh == null) && (dw is num || dw == null) && (dy is num || dy == null) && (dx is num || dx == null) && (height_OR_sh is num || height_OR_sh == null) && (sw_OR_width is num || sw_OR_width == null) && (sy_OR_y is num || s y_OR_y == null) && (sx_OR_x is num || sx_OR_x == null) && (canvas_OR_image_OR_im ageBitmap_OR_video is ImageBitmap || canvas_OR_image_OR_imageBitmap_OR_video == null)) {
955 Native_CanvasRenderingContext2D__drawImage_12_Callback(mthis, canvas_OR_im age_OR_imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy , dw, dh);
956 return;
957 }
958 throw new ArgumentError("Incorrect number or type of arguments");
959 }
960
727 Native_CanvasRenderingContext2D__drawImage_1_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y) native "CanvasRenderingContext2D__drawIm age_1_Callback"; 961 Native_CanvasRenderingContext2D__drawImage_1_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y) native "CanvasRenderingContext2D__drawIm age_1_Callback";
728 962
729 Native_CanvasRenderingContext2D__drawImage_2_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh) native "Canva sRenderingContext2D__drawImage_2_Callback"; 963 Native_CanvasRenderingContext2D__drawImage_2_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh) native "Canva sRenderingContext2D__drawImage_2_Callback";
730 964
731 Native_CanvasRenderingContext2D__drawImage_3_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, d h) native "CanvasRenderingContext2D__drawImage_3_Callback"; 965 Native_CanvasRenderingContext2D__drawImage_3_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, d h) native "CanvasRenderingContext2D__drawImage_3_Callback";
732 966
733 Native_CanvasRenderingContext2D__drawImage_4_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y) native "CanvasRenderingContext2D__drawIm age_4_Callback"; 967 Native_CanvasRenderingContext2D__drawImage_4_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y) native "CanvasRenderingContext2D__drawIm age_4_Callback";
734 968
735 Native_CanvasRenderingContext2D__drawImage_5_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh) native "Canva sRenderingContext2D__drawImage_5_Callback"; 969 Native_CanvasRenderingContext2D__drawImage_5_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh) native "Canva sRenderingContext2D__drawImage_5_Callback";
736 970
737 Native_CanvasRenderingContext2D__drawImage_6_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, d h) native "CanvasRenderingContext2D__drawImage_6_Callback"; 971 Native_CanvasRenderingContext2D__drawImage_6_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, d h) native "CanvasRenderingContext2D__drawImage_6_Callback";
738 972
739 Native_CanvasRenderingContext2D__drawImage_7_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y) native "CanvasRenderingContext2D__drawIm age_7_Callback"; 973 Native_CanvasRenderingContext2D__drawImage_7_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y) native "CanvasRenderingContext2D__drawIm age_7_Callback";
740 974
741 Native_CanvasRenderingContext2D__drawImage_8_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh) native "Canva sRenderingContext2D__drawImage_8_Callback"; 975 Native_CanvasRenderingContext2D__drawImage_8_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh) native "Canva sRenderingContext2D__drawImage_8_Callback";
742 976
743 Native_CanvasRenderingContext2D__drawImage_9_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, d h) native "CanvasRenderingContext2D__drawImage_9_Callback"; 977 Native_CanvasRenderingContext2D__drawImage_9_Callback(mthis, canvas_OR_image_OR_ imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, d h) native "CanvasRenderingContext2D__drawImage_9_Callback";
744 978
745 Native_CanvasRenderingContext2D__drawImage_10_Callback(mthis, canvas_OR_image_OR _imageBitmap_OR_video, sx_OR_x, sy_OR_y) native "CanvasRenderingContext2D__drawI mage_10_Callback"; 979 Native_CanvasRenderingContext2D__drawImage_10_Callback(mthis, canvas_OR_image_OR _imageBitmap_OR_video, sx_OR_x, sy_OR_y) native "CanvasRenderingContext2D__drawI mage_10_Callback";
746 980
747 Native_CanvasRenderingContext2D__drawImage_11_Callback(mthis, canvas_OR_image_OR _imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh) native "Canv asRenderingContext2D__drawImage_11_Callback"; 981 Native_CanvasRenderingContext2D__drawImage_11_Callback(mthis, canvas_OR_image_OR _imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh) native "Canv asRenderingContext2D__drawImage_11_Callback";
748 982
749 Native_CanvasRenderingContext2D__drawImage_12_Callback(mthis, canvas_OR_image_OR _imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, dh) native "CanvasRenderingContext2D__drawImage_12_Callback"; 983 Native_CanvasRenderingContext2D__drawImage_12_Callback(mthis, canvas_OR_image_OR _imageBitmap_OR_video, sx_OR_x, sy_OR_y, sw_OR_width, height_OR_sh, dx, dy, dw, dh) native "CanvasRenderingContext2D__drawImage_12_Callback";
750 984
751 Native_CanvasRenderingContext2D_drawSystemFocusRing_Callback(mthis, element) nat ive "CanvasRenderingContext2D_drawSystemFocusRing_Callback"; 985 Native_CanvasRenderingContext2D_drawSystemFocusRing_Callback(mthis, element) nat ive "CanvasRenderingContext2D_drawSystemFocusRing_Callback";
752 986
753 Native_CanvasRenderingContext2D_ellipse_Callback(mthis, x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise) native "CanvasRenderingContext2D_ ellipse_Callback"; 987 Native_CanvasRenderingContext2D_ellipse_Callback(mthis, x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise) native "CanvasRenderingContext2D_ ellipse_Callback";
754 988
989 // Generated overload resolver
990 Native_CanvasRenderingContext2D_fill(mthis, winding) {
991 if (winding != null) {
992 Native_CanvasRenderingContext2D__fill_1_Callback(mthis, winding);
993 return;
994 }
995 Native_CanvasRenderingContext2D__fill_2_Callback(mthis);
996 return;
997 }
998
755 Native_CanvasRenderingContext2D__fill_1_Callback(mthis, winding) native "CanvasR enderingContext2D__fill_1_Callback"; 999 Native_CanvasRenderingContext2D__fill_1_Callback(mthis, winding) native "CanvasR enderingContext2D__fill_1_Callback";
756 1000
757 Native_CanvasRenderingContext2D__fill_2_Callback(mthis) native "CanvasRenderingC ontext2D__fill_2_Callback"; 1001 Native_CanvasRenderingContext2D__fill_2_Callback(mthis) native "CanvasRenderingC ontext2D__fill_2_Callback";
758 1002
759 Native_CanvasRenderingContext2D_fillRect_Callback(mthis, x, y, width, height) na tive "CanvasRenderingContext2D_fillRect_Callback"; 1003 Native_CanvasRenderingContext2D_fillRect_Callback(mthis, x, y, width, height) na tive "CanvasRenderingContext2D_fillRect_Callback";
760 1004
1005 // Generated overload resolver
1006 Native_CanvasRenderingContext2D_fillText(mthis, text, x, y, maxWidth) {
1007 if (maxWidth != null) {
1008 Native_CanvasRenderingContext2D__fillText_1_Callback(mthis, text, x, y, ma xWidth);
1009 return;
1010 }
1011 Native_CanvasRenderingContext2D__fillText_2_Callback(mthis, text, x, y);
1012 return;
1013 }
1014
761 Native_CanvasRenderingContext2D__fillText_1_Callback(mthis, text, x, y, maxWidth ) native "CanvasRenderingContext2D__fillText_1_Callback"; 1015 Native_CanvasRenderingContext2D__fillText_1_Callback(mthis, text, x, y, maxWidth ) native "CanvasRenderingContext2D__fillText_1_Callback";
762 1016
763 Native_CanvasRenderingContext2D__fillText_2_Callback(mthis, text, x, y) native " CanvasRenderingContext2D__fillText_2_Callback"; 1017 Native_CanvasRenderingContext2D__fillText_2_Callback(mthis, text, x, y) native " CanvasRenderingContext2D__fillText_2_Callback";
764 1018
765 Native_CanvasRenderingContext2D_getContextAttributes_Callback(mthis) native "Can vasRenderingContext2D_getContextAttributes_Callback"; 1019 Native_CanvasRenderingContext2D_getContextAttributes_Callback(mthis) native "Can vasRenderingContext2D_getContextAttributes_Callback";
766 1020
767 Native_CanvasRenderingContext2D_getImageData_Callback(mthis, sx, sy, sw, sh) nat ive "CanvasRenderingContext2D_getImageData_Callback"; 1021 Native_CanvasRenderingContext2D_getImageData_Callback(mthis, sx, sy, sw, sh) nat ive "CanvasRenderingContext2D_getImageData_Callback";
768 1022
769 Native_CanvasRenderingContext2D_getLineDash_Callback(mthis) native "CanvasRender ingContext2D_getLineDash_Callback"; 1023 Native_CanvasRenderingContext2D_getLineDash_Callback(mthis) native "CanvasRender ingContext2D_getLineDash_Callback";
770 1024
1025 // Generated overload resolver
1026 Native_CanvasRenderingContext2D_isPointInPath(mthis, x, y, winding) {
1027 if (winding != null) {
1028 return Native_CanvasRenderingContext2D__isPointInPath_1_Callback(mthis, x, y, winding);
1029 }
1030 return Native_CanvasRenderingContext2D__isPointInPath_2_Callback(mthis, x, y );
1031 }
1032
771 Native_CanvasRenderingContext2D__isPointInPath_1_Callback(mthis, x, y, winding) native "CanvasRenderingContext2D__isPointInPath_1_Callback"; 1033 Native_CanvasRenderingContext2D__isPointInPath_1_Callback(mthis, x, y, winding) native "CanvasRenderingContext2D__isPointInPath_1_Callback";
772 1034
773 Native_CanvasRenderingContext2D__isPointInPath_2_Callback(mthis, x, y) native "C anvasRenderingContext2D__isPointInPath_2_Callback"; 1035 Native_CanvasRenderingContext2D__isPointInPath_2_Callback(mthis, x, y) native "C anvasRenderingContext2D__isPointInPath_2_Callback";
774 1036
775 Native_CanvasRenderingContext2D_isPointInStroke_Callback(mthis, x, y) native "Ca nvasRenderingContext2D_isPointInStroke_Callback"; 1037 Native_CanvasRenderingContext2D_isPointInStroke_Callback(mthis, x, y) native "Ca nvasRenderingContext2D_isPointInStroke_Callback";
776 1038
777 Native_CanvasRenderingContext2D_lineTo_Callback(mthis, x, y) native "CanvasRende ringContext2D_lineTo_Callback"; 1039 Native_CanvasRenderingContext2D_lineTo_Callback(mthis, x, y) native "CanvasRende ringContext2D_lineTo_Callback";
778 1040
779 Native_CanvasRenderingContext2D_measureText_Callback(mthis, text) native "Canvas RenderingContext2D_measureText_Callback"; 1041 Native_CanvasRenderingContext2D_measureText_Callback(mthis, text) native "Canvas RenderingContext2D_measureText_Callback";
780 1042
781 Native_CanvasRenderingContext2D_moveTo_Callback(mthis, x, y) native "CanvasRende ringContext2D_moveTo_Callback"; 1043 Native_CanvasRenderingContext2D_moveTo_Callback(mthis, x, y) native "CanvasRende ringContext2D_moveTo_Callback";
782 1044
1045 // Generated overload resolver
1046 Native_CanvasRenderingContext2D_putImageData(mthis, imagedata, dx, dy, dirtyX, d irtyY, dirtyWidth, dirtyHeight) {
1047 if ((dy is num || dy == null) && (dx is num || dx == null) && (imagedata is ImageData || imagedata == null) && dirtyX == null && dirtyY == null && dirtyWidt h == null && dirtyHeight == null) {
1048 Native_CanvasRenderingContext2D__putImageData_1_Callback(mthis, imagedata, dx, dy);
1049 return;
1050 }
1051 if ((dirtyHeight is num || dirtyHeight == null) && (dirtyWidth is num || dir tyWidth == null) && (dirtyY is num || dirtyY == null) && (dirtyX is num || dirty X == null) && (dy is num || dy == null) && (dx is num || dx == null) && (imageda ta is ImageData || imagedata == null)) {
1052 Native_CanvasRenderingContext2D__putImageData_2_Callback(mthis, imagedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight);
1053 return;
1054 }
1055 throw new ArgumentError("Incorrect number or type of arguments");
1056 }
1057
783 Native_CanvasRenderingContext2D__putImageData_1_Callback(mthis, imagedata, dx, d y) native "CanvasRenderingContext2D__putImageData_1_Callback"; 1058 Native_CanvasRenderingContext2D__putImageData_1_Callback(mthis, imagedata, dx, d y) native "CanvasRenderingContext2D__putImageData_1_Callback";
784 1059
785 Native_CanvasRenderingContext2D__putImageData_2_Callback(mthis, imagedata, dx, d y, dirtyX, dirtyY, dirtyWidth, dirtyHeight) native "CanvasRenderingContext2D__pu tImageData_2_Callback"; 1060 Native_CanvasRenderingContext2D__putImageData_2_Callback(mthis, imagedata, dx, d y, dirtyX, dirtyY, dirtyWidth, dirtyHeight) native "CanvasRenderingContext2D__pu tImageData_2_Callback";
786 1061
787 Native_CanvasRenderingContext2D_quadraticCurveTo_Callback(mthis, cpx, cpy, x, y) native "CanvasRenderingContext2D_quadraticCurveTo_Callback"; 1062 Native_CanvasRenderingContext2D_quadraticCurveTo_Callback(mthis, cpx, cpy, x, y) native "CanvasRenderingContext2D_quadraticCurveTo_Callback";
788 1063
789 Native_CanvasRenderingContext2D_rect_Callback(mthis, x, y, width, height) native "CanvasRenderingContext2D_rect_Callback"; 1064 Native_CanvasRenderingContext2D_rect_Callback(mthis, x, y, width, height) native "CanvasRenderingContext2D_rect_Callback";
790 1065
791 Native_CanvasRenderingContext2D_resetTransform_Callback(mthis) native "CanvasRen deringContext2D_resetTransform_Callback"; 1066 Native_CanvasRenderingContext2D_resetTransform_Callback(mthis) native "CanvasRen deringContext2D_resetTransform_Callback";
792 1067
793 Native_CanvasRenderingContext2D_restore_Callback(mthis) native "CanvasRenderingC ontext2D_restore_Callback"; 1068 Native_CanvasRenderingContext2D_restore_Callback(mthis) native "CanvasRenderingC ontext2D_restore_Callback";
794 1069
795 Native_CanvasRenderingContext2D_rotate_Callback(mthis, angle) native "CanvasRend eringContext2D_rotate_Callback"; 1070 Native_CanvasRenderingContext2D_rotate_Callback(mthis, angle) native "CanvasRend eringContext2D_rotate_Callback";
796 1071
797 Native_CanvasRenderingContext2D_save_Callback(mthis) native "CanvasRenderingCont ext2D_save_Callback"; 1072 Native_CanvasRenderingContext2D_save_Callback(mthis) native "CanvasRenderingCont ext2D_save_Callback";
798 1073
799 Native_CanvasRenderingContext2D_scale_Callback(mthis, sx, sy) native "CanvasRend eringContext2D_scale_Callback"; 1074 Native_CanvasRenderingContext2D_scale_Callback(mthis, sx, sy) native "CanvasRend eringContext2D_scale_Callback";
800 1075
801 Native_CanvasRenderingContext2D_setLineDash_Callback(mthis, dash) native "Canvas RenderingContext2D_setLineDash_Callback"; 1076 Native_CanvasRenderingContext2D_setLineDash_Callback(mthis, dash) native "Canvas RenderingContext2D_setLineDash_Callback";
802 1077
803 Native_CanvasRenderingContext2D_setTransform_Callback(mthis, m11, m12, m21, m22, dx, dy) native "CanvasRenderingContext2D_setTransform_Callback"; 1078 Native_CanvasRenderingContext2D_setTransform_Callback(mthis, m11, m12, m21, m22, dx, dy) native "CanvasRenderingContext2D_setTransform_Callback";
804 1079
805 Native_CanvasRenderingContext2D_stroke_Callback(mthis) native "CanvasRenderingCo ntext2D_stroke_Callback"; 1080 Native_CanvasRenderingContext2D_stroke_Callback(mthis) native "CanvasRenderingCo ntext2D_stroke_Callback";
806 1081
807 Native_CanvasRenderingContext2D_strokeRect_Callback(mthis, x, y, width, height) native "CanvasRenderingContext2D_strokeRect_Callback"; 1082 Native_CanvasRenderingContext2D_strokeRect_Callback(mthis, x, y, width, height) native "CanvasRenderingContext2D_strokeRect_Callback";
808 1083
1084 // Generated overload resolver
1085 Native_CanvasRenderingContext2D_strokeText(mthis, text, x, y, maxWidth) {
1086 if (maxWidth != null) {
1087 Native_CanvasRenderingContext2D__strokeText_1_Callback(mthis, text, x, y, maxWidth);
1088 return;
1089 }
1090 Native_CanvasRenderingContext2D__strokeText_2_Callback(mthis, text, x, y);
1091 return;
1092 }
1093
809 Native_CanvasRenderingContext2D__strokeText_1_Callback(mthis, text, x, y, maxWid th) native "CanvasRenderingContext2D__strokeText_1_Callback"; 1094 Native_CanvasRenderingContext2D__strokeText_1_Callback(mthis, text, x, y, maxWid th) native "CanvasRenderingContext2D__strokeText_1_Callback";
810 1095
811 Native_CanvasRenderingContext2D__strokeText_2_Callback(mthis, text, x, y) native "CanvasRenderingContext2D__strokeText_2_Callback"; 1096 Native_CanvasRenderingContext2D__strokeText_2_Callback(mthis, text, x, y) native "CanvasRenderingContext2D__strokeText_2_Callback";
812 1097
813 Native_CanvasRenderingContext2D_transform_Callback(mthis, m11, m12, m21, m22, dx , dy) native "CanvasRenderingContext2D_transform_Callback"; 1098 Native_CanvasRenderingContext2D_transform_Callback(mthis, m11, m12, m21, m22, dx , dy) native "CanvasRenderingContext2D_transform_Callback";
814 1099
815 Native_CanvasRenderingContext2D_translate_Callback(mthis, tx, ty) native "Canvas RenderingContext2D_translate_Callback"; 1100 Native_CanvasRenderingContext2D_translate_Callback(mthis, tx, ty) native "Canvas RenderingContext2D_translate_Callback";
816 1101
817 Native_CanvasRenderingContext2D_webkitGetImageDataHD_Callback(mthis, sx, sy, sw, sh) native "CanvasRenderingContext2D_webkitGetImageDataHD_Callback"; 1102 Native_CanvasRenderingContext2D_webkitGetImageDataHD_Callback(mthis, sx, sy, sw, sh) native "CanvasRenderingContext2D_webkitGetImageDataHD_Callback";
818 1103
1104 // Generated overload resolver
1105 Native_CanvasRenderingContext2D_putImageDataHD(mthis, imagedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight) {
1106 if ((dy is num || dy == null) && (dx is num || dx == null) && (imagedata is ImageData || imagedata == null) && dirtyX == null && dirtyY == null && dirtyWidt h == null && dirtyHeight == null) {
1107 Native_CanvasRenderingContext2D__webkitPutImageDataHD_1_Callback(mthis, im agedata, dx, dy);
1108 return;
1109 }
1110 if ((dirtyHeight is num || dirtyHeight == null) && (dirtyWidth is num || dir tyWidth == null) && (dirtyY is num || dirtyY == null) && (dirtyX is num || dirty X == null) && (dy is num || dy == null) && (dx is num || dx == null) && (imageda ta is ImageData || imagedata == null)) {
1111 Native_CanvasRenderingContext2D__webkitPutImageDataHD_2_Callback(mthis, im agedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight);
1112 return;
1113 }
1114 throw new ArgumentError("Incorrect number or type of arguments");
1115 }
1116
819 Native_CanvasRenderingContext2D__webkitPutImageDataHD_1_Callback(mthis, imagedat a, dx, dy) native "CanvasRenderingContext2D__webkitPutImageDataHD_1_Callback"; 1117 Native_CanvasRenderingContext2D__webkitPutImageDataHD_1_Callback(mthis, imagedat a, dx, dy) native "CanvasRenderingContext2D__webkitPutImageDataHD_1_Callback";
820 1118
821 Native_CanvasRenderingContext2D__webkitPutImageDataHD_2_Callback(mthis, imagedat a, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight) native "CanvasRenderingConte xt2D__webkitPutImageDataHD_2_Callback"; 1119 Native_CanvasRenderingContext2D__webkitPutImageDataHD_2_Callback(mthis, imagedat a, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight) native "CanvasRenderingConte xt2D__webkitPutImageDataHD_2_Callback";
822 1120
823 Native_ClientRect_bottom_Getter(mthis) native "ClientRect_bottom_Getter"; 1121 Native_ClientRect_bottom_Getter(mthis) native "ClientRect_bottom_Getter";
824 1122
825 Native_ClientRect_height_Getter(mthis) native "ClientRect_height_Getter"; 1123 Native_ClientRect_height_Getter(mthis) native "ClientRect_height_Getter";
826 1124
827 Native_ClientRect_left_Getter(mthis) native "ClientRect_left_Getter"; 1125 Native_ClientRect_left_Getter(mthis) native "ClientRect_left_Getter";
828 1126
(...skipping 16 matching lines...) Expand all
845 Native_Clipboard_effectAllowed_Getter(mthis) native "Clipboard_effectAllowed_Get ter"; 1143 Native_Clipboard_effectAllowed_Getter(mthis) native "Clipboard_effectAllowed_Get ter";
846 1144
847 Native_Clipboard_effectAllowed_Setter(mthis, value) native "Clipboard_effectAllo wed_Setter"; 1145 Native_Clipboard_effectAllowed_Setter(mthis, value) native "Clipboard_effectAllo wed_Setter";
848 1146
849 Native_Clipboard_files_Getter(mthis) native "Clipboard_files_Getter"; 1147 Native_Clipboard_files_Getter(mthis) native "Clipboard_files_Getter";
850 1148
851 Native_Clipboard_items_Getter(mthis) native "Clipboard_items_Getter"; 1149 Native_Clipboard_items_Getter(mthis) native "Clipboard_items_Getter";
852 1150
853 Native_Clipboard_types_Getter(mthis) native "Clipboard_types_Getter"; 1151 Native_Clipboard_types_Getter(mthis) native "Clipboard_types_Getter";
854 1152
1153 // Generated overload resolver
1154 Native_Clipboard_clearData(mthis, type) {
1155 if (type != null) {
1156 Native_Clipboard__clearData_1_Callback(mthis, type);
1157 return;
1158 }
1159 Native_Clipboard__clearData_2_Callback(mthis);
1160 return;
1161 }
1162
855 Native_Clipboard__clearData_1_Callback(mthis, type) native "Clipboard__clearData _1_Callback"; 1163 Native_Clipboard__clearData_1_Callback(mthis, type) native "Clipboard__clearData _1_Callback";
856 1164
857 Native_Clipboard__clearData_2_Callback(mthis) native "Clipboard__clearData_2_Cal lback"; 1165 Native_Clipboard__clearData_2_Callback(mthis) native "Clipboard__clearData_2_Cal lback";
858 1166
859 Native_Clipboard_getData_Callback(mthis, type) native "Clipboard_getData_Callbac k"; 1167 Native_Clipboard_getData_Callback(mthis, type) native "Clipboard_getData_Callbac k";
860 1168
861 Native_Clipboard_setData_Callback(mthis, type, data) native "Clipboard_setData_C allback"; 1169 Native_Clipboard_setData_Callback(mthis, type, data) native "Clipboard_setData_C allback";
862 1170
863 Native_Clipboard_setDragImage_Callback(mthis, element, x, y) native "Clipboard_s etDragImage_Callback"; 1171 Native_Clipboard_setDragImage_Callback(mthis, element, x, y) native "Clipboard_s etDragImage_Callback";
864 1172
865 Native_CloseEvent_code_Getter(mthis) native "CloseEvent_code_Getter"; 1173 Native_CloseEvent_code_Getter(mthis) native "CloseEvent_code_Getter";
866 1174
867 Native_CloseEvent_reason_Getter(mthis) native "CloseEvent_reason_Getter"; 1175 Native_CloseEvent_reason_Getter(mthis) native "CloseEvent_reason_Getter";
868 1176
869 Native_CloseEvent_wasClean_Getter(mthis) native "CloseEvent_wasClean_Getter"; 1177 Native_CloseEvent_wasClean_Getter(mthis) native "CloseEvent_wasClean_Getter";
870 1178
1179 // Generated overload resolver
1180 Native_Comment_Comment(data) {
1181 return Native_Comment__create_1constructorCallback(data);
1182 }
1183
871 Native_Comment__create_1constructorCallback(data) native "Comment__create_1const ructorCallback"; 1184 Native_Comment__create_1constructorCallback(data) native "Comment__create_1const ructorCallback";
872 1185
873 Native_UIEvent_charCode_Getter(mthis) native "UIEvent_charCode_Getter"; 1186 Native_UIEvent_charCode_Getter(mthis) native "UIEvent_charCode_Getter";
874 1187
875 Native_UIEvent_detail_Getter(mthis) native "UIEvent_detail_Getter"; 1188 Native_UIEvent_detail_Getter(mthis) native "UIEvent_detail_Getter";
876 1189
877 Native_UIEvent_keyCode_Getter(mthis) native "UIEvent_keyCode_Getter"; 1190 Native_UIEvent_keyCode_Getter(mthis) native "UIEvent_keyCode_Getter";
878 1191
879 Native_UIEvent_layerX_Getter(mthis) native "UIEvent_layerX_Getter"; 1192 Native_UIEvent_layerX_Getter(mthis) native "UIEvent_layerX_Getter";
880 1193
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
993 Native_DOMImplementation_createCSSStyleSheet_Callback(mthis, title, media) nativ e "DOMImplementation_createCSSStyleSheet_Callback"; 1306 Native_DOMImplementation_createCSSStyleSheet_Callback(mthis, title, media) nativ e "DOMImplementation_createCSSStyleSheet_Callback";
994 1307
995 Native_DOMImplementation_createDocument_Callback(mthis, namespaceURI, qualifiedN ame, doctype) native "DOMImplementation_createDocument_Callback"; 1308 Native_DOMImplementation_createDocument_Callback(mthis, namespaceURI, qualifiedN ame, doctype) native "DOMImplementation_createDocument_Callback";
996 1309
997 Native_DOMImplementation_createDocumentType_Callback(mthis, qualifiedName, publi cId, systemId) native "DOMImplementation_createDocumentType_Callback"; 1310 Native_DOMImplementation_createDocumentType_Callback(mthis, qualifiedName, publi cId, systemId) native "DOMImplementation_createDocumentType_Callback";
998 1311
999 Native_DOMImplementation_createHTMLDocument_Callback(mthis, title) native "DOMIm plementation_createHTMLDocument_Callback"; 1312 Native_DOMImplementation_createHTMLDocument_Callback(mthis, title) native "DOMIm plementation_createHTMLDocument_Callback";
1000 1313
1001 Native_DOMImplementation_hasFeature_Callback(mthis, feature, version) native "DO MImplementation_hasFeature_Callback"; 1314 Native_DOMImplementation_hasFeature_Callback(mthis, feature, version) native "DO MImplementation_hasFeature_Callback";
1002 1315
1316 // Generated overload resolver
1317 Native_DOMParser_DomParser() {
1318 return Native_DOMParser__create_1constructorCallback();
1319 }
1320
1003 Native_DOMParser__create_1constructorCallback() native "DOMParser__create_1const ructorCallback"; 1321 Native_DOMParser__create_1constructorCallback() native "DOMParser__create_1const ructorCallback";
1004 1322
1005 Native_DOMParser_parseFromString_Callback(mthis, str, contentType) native "DOMPa rser_parseFromString_Callback"; 1323 Native_DOMParser_parseFromString_Callback(mthis, str, contentType) native "DOMPa rser_parseFromString_Callback";
1006 1324
1007 Native_DOMTokenList_length_Getter(mthis) native "DOMTokenList_length_Getter"; 1325 Native_DOMTokenList_length_Getter(mthis) native "DOMTokenList_length_Getter";
1008 1326
1009 Native_DOMTokenList_contains_Callback(mthis, token) native "DOMTokenList_contain s_Callback"; 1327 Native_DOMTokenList_contains_Callback(mthis, token) native "DOMTokenList_contain s_Callback";
1010 1328
1011 Native_DOMTokenList_item_Callback(mthis, index) native "DOMTokenList_item_Callba ck"; 1329 Native_DOMTokenList_item_Callback(mthis, index) native "DOMTokenList_item_Callba ck";
1012 1330
1013 Native_DOMTokenList_toString_Callback(mthis) native "DOMTokenList_toString_Callb ack"; 1331 Native_DOMTokenList_toString_Callback(mthis) native "DOMTokenList_toString_Callb ack";
1014 1332
1333 // Generated overload resolver
1334 Native_DOMTokenList_toggle(mthis, token, force) {
1335 if (force != null) {
1336 return Native_DOMTokenList__toggle_1_Callback(mthis, token, force);
1337 }
1338 return Native_DOMTokenList__toggle_2_Callback(mthis, token);
1339 }
1340
1015 Native_DOMTokenList__toggle_1_Callback(mthis, token, force) native "DOMTokenList __toggle_1_Callback"; 1341 Native_DOMTokenList__toggle_1_Callback(mthis, token, force) native "DOMTokenList __toggle_1_Callback";
1016 1342
1017 Native_DOMTokenList__toggle_2_Callback(mthis, token) native "DOMTokenList__toggl e_2_Callback"; 1343 Native_DOMTokenList__toggle_2_Callback(mthis, token) native "DOMTokenList__toggl e_2_Callback";
1018 1344
1019 Native_DOMSettableTokenList_value_Getter(mthis) native "DOMSettableTokenList_val ue_Getter"; 1345 Native_DOMSettableTokenList_value_Getter(mthis) native "DOMSettableTokenList_val ue_Getter";
1020 1346
1021 Native_DOMSettableTokenList_value_Setter(mthis, value) native "DOMSettableTokenL ist_value_Setter"; 1347 Native_DOMSettableTokenList_value_Setter(mthis, value) native "DOMSettableTokenL ist_value_Setter";
1022 1348
1023 Native_DOMSettableTokenList___getter___Callback(mthis, index) native "DOMSettabl eTokenList___getter___Callback"; 1349 Native_DOMSettableTokenList___getter___Callback(mthis, index) native "DOMSettabl eTokenList___getter___Callback";
1024 1350
1025 Native_DOMStringList_length_Getter(mthis) native "DOMStringList_length_Getter"; 1351 Native_DOMStringList_length_Getter(mthis) native "DOMStringList_length_Getter";
1026 1352
1027 Native_DOMStringList_NativeIndexed_Getter(mthis, index) native "DOMStringList_it em_Callback"; 1353 Native_DOMStringList_NativeIndexed_Getter(mthis, index) native "DOMStringList_it em_Callback";
1028 1354
1029 Native_DOMStringList_contains_Callback(mthis, string) native "DOMStringList_cont ains_Callback"; 1355 Native_DOMStringList_contains_Callback(mthis, string) native "DOMStringList_cont ains_Callback";
1030 1356
1031 Native_DOMStringList_item_Callback(mthis, index) native "DOMStringList_item_Call back"; 1357 Native_DOMStringList_item_Callback(mthis, index) native "DOMStringList_item_Call back";
1032 1358
1359 // Generated overload resolver
1360 Native_DOMStringMap___delete__(mthis, index_OR_name) {
1361 if ((index_OR_name is int || index_OR_name == null)) {
1362 return Native_DOMStringMap____delete___1_Callback(mthis, index_OR_name);
1363 }
1364 if ((index_OR_name is String || index_OR_name == null)) {
1365 return Native_DOMStringMap____delete___2_Callback(mthis, index_OR_name);
1366 }
1367 throw new ArgumentError("Incorrect number or type of arguments");
1368 }
1369
1033 Native_DOMStringMap____delete___1_Callback(mthis, index_OR_name) native "DOMStri ngMap____delete___1_Callback"; 1370 Native_DOMStringMap____delete___1_Callback(mthis, index_OR_name) native "DOMStri ngMap____delete___1_Callback";
1034 1371
1035 Native_DOMStringMap____delete___2_Callback(mthis, index_OR_name) native "DOMStri ngMap____delete___2_Callback"; 1372 Native_DOMStringMap____delete___2_Callback(mthis, index_OR_name) native "DOMStri ngMap____delete___2_Callback";
1036 1373
1374 // Generated overload resolver
1375 Native_DOMStringMap___getter__(mthis, index_OR_name) {
1376 if ((index_OR_name is int || index_OR_name == null)) {
1377 return Native_DOMStringMap____getter___1_Callback(mthis, index_OR_name);
1378 }
1379 if ((index_OR_name is String || index_OR_name == null)) {
1380 return Native_DOMStringMap____getter___2_Callback(mthis, index_OR_name);
1381 }
1382 throw new ArgumentError("Incorrect number or type of arguments");
1383 }
1384
1037 Native_DOMStringMap____getter___1_Callback(mthis, index_OR_name) native "DOMStri ngMap____getter___1_Callback"; 1385 Native_DOMStringMap____getter___1_Callback(mthis, index_OR_name) native "DOMStri ngMap____getter___1_Callback";
1038 1386
1039 Native_DOMStringMap____getter___2_Callback(mthis, index_OR_name) native "DOMStri ngMap____getter___2_Callback"; 1387 Native_DOMStringMap____getter___2_Callback(mthis, index_OR_name) native "DOMStri ngMap____getter___2_Callback";
1040 1388
1389 // Generated overload resolver
1390 Native_DOMStringMap___setter__(mthis, index_OR_name, value) {
1391 if ((value is String || value == null) && (index_OR_name is int || index_OR_ name == null)) {
1392 Native_DOMStringMap____setter___1_Callback(mthis, index_OR_name, value);
1393 return;
1394 }
1395 if ((value is String || value == null) && (index_OR_name is String || index_ OR_name == null)) {
1396 Native_DOMStringMap____setter___2_Callback(mthis, index_OR_name, value);
1397 return;
1398 }
1399 throw new ArgumentError("Incorrect number or type of arguments");
1400 }
1401
1041 Native_DOMStringMap____setter___1_Callback(mthis, index_OR_name, value) native " DOMStringMap____setter___1_Callback"; 1402 Native_DOMStringMap____setter___1_Callback(mthis, index_OR_name, value) native " DOMStringMap____setter___1_Callback";
1042 1403
1043 Native_DOMStringMap____setter___2_Callback(mthis, index_OR_name, value) native " DOMStringMap____setter___2_Callback"; 1404 Native_DOMStringMap____setter___2_Callback(mthis, index_OR_name, value) native " DOMStringMap____setter___2_Callback";
1044 1405
1045 Native_DataTransferItem_kind_Getter(mthis) native "DataTransferItem_kind_Getter" ; 1406 Native_DataTransferItem_kind_Getter(mthis) native "DataTransferItem_kind_Getter" ;
1046 1407
1047 Native_DataTransferItem_type_Getter(mthis) native "DataTransferItem_type_Getter" ; 1408 Native_DataTransferItem_type_Getter(mthis) native "DataTransferItem_type_Getter" ;
1048 1409
1049 Native_DataTransferItem_getAsFile_Callback(mthis) native "DataTransferItem_getAs File_Callback"; 1410 Native_DataTransferItem_getAsFile_Callback(mthis) native "DataTransferItem_getAs File_Callback";
1050 1411
1051 Native_DataTransferItem_getAsString_Callback(mthis, callback) native "DataTransf erItem_getAsString_Callback"; 1412 Native_DataTransferItem_getAsString_Callback(mthis, callback) native "DataTransf erItem_getAsString_Callback";
1052 1413
1053 Native_DataTransferItem_webkitGetAsEntry_Callback(mthis) native "DataTransferIte m_webkitGetAsEntry_Callback"; 1414 Native_DataTransferItem_webkitGetAsEntry_Callback(mthis) native "DataTransferIte m_webkitGetAsEntry_Callback";
1054 1415
1055 Native_DataTransferItemList_length_Getter(mthis) native "DataTransferItemList_le ngth_Getter"; 1416 Native_DataTransferItemList_length_Getter(mthis) native "DataTransferItemList_le ngth_Getter";
1056 1417
1057 Native_DataTransferItemList___getter___Callback(mthis, index) native "DataTransf erItemList___getter___Callback"; 1418 Native_DataTransferItemList___getter___Callback(mthis, index) native "DataTransf erItemList___getter___Callback";
1058 1419
1420 // Generated overload resolver
1421 Native_DataTransferItemList_add(mthis, data_OR_file, type) {
1422 if ((data_OR_file is File || data_OR_file == null) && type == null) {
1423 return Native_DataTransferItemList__add_1_Callback(mthis, data_OR_file);
1424 }
1425 if ((type is String || type == null) && (data_OR_file is String || data_OR_f ile == null)) {
1426 return Native_DataTransferItemList__add_2_Callback(mthis, data_OR_file, ty pe);
1427 }
1428 throw new ArgumentError("Incorrect number or type of arguments");
1429 }
1430
1059 Native_DataTransferItemList__add_1_Callback(mthis, data_OR_file) native "DataTra nsferItemList__add_1_Callback"; 1431 Native_DataTransferItemList__add_1_Callback(mthis, data_OR_file) native "DataTra nsferItemList__add_1_Callback";
1060 1432
1061 Native_DataTransferItemList__add_2_Callback(mthis, data_OR_file, type) native "D ataTransferItemList__add_2_Callback"; 1433 Native_DataTransferItemList__add_2_Callback(mthis, data_OR_file, type) native "D ataTransferItemList__add_2_Callback";
1062 1434
1063 Native_DataTransferItemList_addData_Callback(mthis, data, type) native "DataTran sferItemList_addData_Callback"; 1435 Native_DataTransferItemList_addData_Callback(mthis, data, type) native "DataTran sferItemList_addData_Callback";
1064 1436
1065 Native_DataTransferItemList_addFile_Callback(mthis, file) native "DataTransferIt emList_addFile_Callback"; 1437 Native_DataTransferItemList_addFile_Callback(mthis, file) native "DataTransferIt emList_addFile_Callback";
1066 1438
1067 Native_DataTransferItemList_clear_Callback(mthis) native "DataTransferItemList_c lear_Callback"; 1439 Native_DataTransferItemList_clear_Callback(mthis) native "DataTransferItemList_c lear_Callback";
1068 1440
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1183 Native_Entry_filesystem_Getter(mthis) native "Entry_filesystem_Getter"; 1555 Native_Entry_filesystem_Getter(mthis) native "Entry_filesystem_Getter";
1184 1556
1185 Native_Entry_fullPath_Getter(mthis) native "Entry_fullPath_Getter"; 1557 Native_Entry_fullPath_Getter(mthis) native "Entry_fullPath_Getter";
1186 1558
1187 Native_Entry_isDirectory_Getter(mthis) native "Entry_isDirectory_Getter"; 1559 Native_Entry_isDirectory_Getter(mthis) native "Entry_isDirectory_Getter";
1188 1560
1189 Native_Entry_isFile_Getter(mthis) native "Entry_isFile_Getter"; 1561 Native_Entry_isFile_Getter(mthis) native "Entry_isFile_Getter";
1190 1562
1191 Native_Entry_name_Getter(mthis) native "Entry_name_Getter"; 1563 Native_Entry_name_Getter(mthis) native "Entry_name_Getter";
1192 1564
1565 // Generated overload resolver
1566 Native_Entry__copyTo(mthis, parent, name, successCallback, errorCallback) {
1567 if (name != null) {
1568 Native_Entry__copyTo_1_Callback(mthis, parent, name, successCallback, erro rCallback);
1569 return;
1570 }
1571 Native_Entry__copyTo_2_Callback(mthis, parent);
1572 return;
1573 }
1574
1193 Native_Entry__copyTo_1_Callback(mthis, parent, name, successCallback, errorCallb ack) native "Entry__copyTo_1_Callback"; 1575 Native_Entry__copyTo_1_Callback(mthis, parent, name, successCallback, errorCallb ack) native "Entry__copyTo_1_Callback";
1194 1576
1195 Native_Entry__copyTo_2_Callback(mthis, parent) native "Entry__copyTo_2_Callback" ; 1577 Native_Entry__copyTo_2_Callback(mthis, parent) native "Entry__copyTo_2_Callback" ;
1196 1578
1197 Native_Entry_getMetadata_Callback(mthis, successCallback, errorCallback) native "Entry_getMetadata_Callback"; 1579 Native_Entry_getMetadata_Callback(mthis, successCallback, errorCallback) native "Entry_getMetadata_Callback";
1198 1580
1199 Native_Entry_getParent_Callback(mthis, successCallback, errorCallback) native "E ntry_getParent_Callback"; 1581 Native_Entry_getParent_Callback(mthis, successCallback, errorCallback) native "E ntry_getParent_Callback";
1200 1582
1583 // Generated overload resolver
1584 Native_Entry__moveTo(mthis, parent, name, successCallback, errorCallback) {
1585 if (name != null) {
1586 Native_Entry__moveTo_1_Callback(mthis, parent, name, successCallback, erro rCallback);
1587 return;
1588 }
1589 Native_Entry__moveTo_2_Callback(mthis, parent);
1590 return;
1591 }
1592
1201 Native_Entry__moveTo_1_Callback(mthis, parent, name, successCallback, errorCallb ack) native "Entry__moveTo_1_Callback"; 1593 Native_Entry__moveTo_1_Callback(mthis, parent, name, successCallback, errorCallb ack) native "Entry__moveTo_1_Callback";
1202 1594
1203 Native_Entry__moveTo_2_Callback(mthis, parent) native "Entry__moveTo_2_Callback" ; 1595 Native_Entry__moveTo_2_Callback(mthis, parent) native "Entry__moveTo_2_Callback" ;
1204 1596
1205 Native_Entry_remove_Callback(mthis, successCallback, errorCallback) native "Entr y_remove_Callback"; 1597 Native_Entry_remove_Callback(mthis, successCallback, errorCallback) native "Entr y_remove_Callback";
1206 1598
1207 Native_Entry_toURL_Callback(mthis) native "Entry_toURL_Callback"; 1599 Native_Entry_toURL_Callback(mthis) native "Entry_toURL_Callback";
1208 1600
1209 Native_DirectoryEntry_createReader_Callback(mthis) native "DirectoryEntry_create Reader_Callback"; 1601 Native_DirectoryEntry_createReader_Callback(mthis) native "DirectoryEntry_create Reader_Callback";
1210 1602
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 Native_Document_adoptNode_Callback(mthis, node) native "Document_adoptNode_Callb ack"; 1679 Native_Document_adoptNode_Callback(mthis, node) native "Document_adoptNode_Callb ack";
1288 1680
1289 Native_Document_caretRangeFromPoint_Callback(mthis, x, y) native "Document_caret RangeFromPoint_Callback"; 1681 Native_Document_caretRangeFromPoint_Callback(mthis, x, y) native "Document_caret RangeFromPoint_Callback";
1290 1682
1291 Native_Document_createDocumentFragment_Callback(mthis) native "Document_createDo cumentFragment_Callback"; 1683 Native_Document_createDocumentFragment_Callback(mthis) native "Document_createDo cumentFragment_Callback";
1292 1684
1293 Native_Document_createElement_Callback(mthis, localName_OR_tagName, typeExtensio n) native "Document_createElement_Callback"; 1685 Native_Document_createElement_Callback(mthis, localName_OR_tagName, typeExtensio n) native "Document_createElement_Callback";
1294 1686
1295 Native_Document_createElementNS_Callback(mthis, namespaceURI, qualifiedName, typ eExtension) native "Document_createElementNS_Callback"; 1687 Native_Document_createElementNS_Callback(mthis, namespaceURI, qualifiedName, typ eExtension) native "Document_createElementNS_Callback";
1296 1688
1689 // Generated overload resolver
1690 Native_Document__createEvent(mthis, eventType) {
1691 if (eventType != null) {
1692 return Native_Document__createEvent_1_Callback(mthis, eventType);
1693 }
1694 return Native_Document__createEvent_2_Callback(mthis);
1695 }
1696
1297 Native_Document__createEvent_1_Callback(mthis, eventType) native "Document__crea teEvent_1_Callback"; 1697 Native_Document__createEvent_1_Callback(mthis, eventType) native "Document__crea teEvent_1_Callback";
1298 1698
1299 Native_Document__createEvent_2_Callback(mthis) native "Document__createEvent_2_C allback"; 1699 Native_Document__createEvent_2_Callback(mthis) native "Document__createEvent_2_C allback";
1300 1700
1701 // Generated overload resolver
1702 Native_Document__createNodeIterator(mthis, root, whatToShow, filter) {
1703 if (filter != null) {
1704 return Native_Document__createNodeIterator_1_Callback(mthis, root, whatToS how, filter);
1705 }
1706 if (whatToShow != null) {
1707 return Native_Document__createNodeIterator_2_Callback(mthis, root, whatToS how);
1708 }
1709 return Native_Document__createNodeIterator_3_Callback(mthis, root);
1710 }
1711
1301 Native_Document__createNodeIterator_1_Callback(mthis, root, whatToShow, filter) native "Document__createNodeIterator_1_Callback"; 1712 Native_Document__createNodeIterator_1_Callback(mthis, root, whatToShow, filter) native "Document__createNodeIterator_1_Callback";
1302 1713
1303 Native_Document__createNodeIterator_2_Callback(mthis, root, whatToShow) native " Document__createNodeIterator_2_Callback"; 1714 Native_Document__createNodeIterator_2_Callback(mthis, root, whatToShow) native " Document__createNodeIterator_2_Callback";
1304 1715
1305 Native_Document__createNodeIterator_3_Callback(mthis, root) native "Document__cr eateNodeIterator_3_Callback"; 1716 Native_Document__createNodeIterator_3_Callback(mthis, root) native "Document__cr eateNodeIterator_3_Callback";
1306 1717
1307 Native_Document_createRange_Callback(mthis) native "Document_createRange_Callbac k"; 1718 Native_Document_createRange_Callback(mthis) native "Document_createRange_Callbac k";
1308 1719
1309 Native_Document_createTextNode_Callback(mthis, data) native "Document_createText Node_Callback"; 1720 Native_Document_createTextNode_Callback(mthis, data) native "Document_createText Node_Callback";
1310 1721
1311 Native_Document_createTouch_Callback(mthis, window, target, identifier, pageX, p ageY, screenX, screenY, webkitRadiusX, webkitRadiusY, webkitRotationAngle, webki tForce) native "Document_createTouch_Callback"; 1722 Native_Document_createTouch_Callback(mthis, window, target, identifier, pageX, p ageY, screenX, screenY, webkitRadiusX, webkitRadiusY, webkitRotationAngle, webki tForce) native "Document_createTouch_Callback";
1312 1723
1724 // Generated overload resolver
1725 Native_Document__createTreeWalker(mthis, root, whatToShow, filter) {
1726 if (filter != null) {
1727 return Native_Document__createTreeWalker_1_Callback(mthis, root, whatToSho w, filter);
1728 }
1729 if (whatToShow != null) {
1730 return Native_Document__createTreeWalker_2_Callback(mthis, root, whatToSho w);
1731 }
1732 return Native_Document__createTreeWalker_3_Callback(mthis, root);
1733 }
1734
1313 Native_Document__createTreeWalker_1_Callback(mthis, root, whatToShow, filter) na tive "Document__createTreeWalker_1_Callback"; 1735 Native_Document__createTreeWalker_1_Callback(mthis, root, whatToShow, filter) na tive "Document__createTreeWalker_1_Callback";
1314 1736
1315 Native_Document__createTreeWalker_2_Callback(mthis, root, whatToShow) native "Do cument__createTreeWalker_2_Callback"; 1737 Native_Document__createTreeWalker_2_Callback(mthis, root, whatToShow) native "Do cument__createTreeWalker_2_Callback";
1316 1738
1317 Native_Document__createTreeWalker_3_Callback(mthis, root) native "Document__crea teTreeWalker_3_Callback"; 1739 Native_Document__createTreeWalker_3_Callback(mthis, root) native "Document__crea teTreeWalker_3_Callback";
1318 1740
1319 Native_Document_elementFromPoint_Callback(mthis, x, y) native "Document_elementF romPoint_Callback"; 1741 Native_Document_elementFromPoint_Callback(mthis, x, y) native "Document_elementF romPoint_Callback";
1320 1742
1321 Native_Document_execCommand_Callback(mthis, command, userInterface, value) nativ e "Document_execCommand_Callback"; 1743 Native_Document_execCommand_Callback(mthis, command, userInterface, value) nativ e "Document_execCommand_Callback";
1322 1744
1323 Native_Document_getCSSCanvasContext_Callback(mthis, contextId, name, width, heig ht) native "Document_getCSSCanvasContext_Callback"; 1745 Native_Document_getCSSCanvasContext_Callback(mthis, contextId, name, width, heig ht) native "Document_getCSSCanvasContext_Callback";
1324 1746
1325 Native_Document_getElementById_Callback(mthis, elementId) native "Document_getEl ementById_Callback"; 1747 Native_Document_getElementById_Callback(mthis, elementId) native "Document_getEl ementById_Callback";
1326 1748
1327 Native_Document_getElementsByClassName_Callback(mthis, classNames) native "Docum ent_getElementsByClassName_Callback"; 1749 Native_Document_getElementsByClassName_Callback(mthis, classNames) native "Docum ent_getElementsByClassName_Callback";
1328 1750
1329 Native_Document_getElementsByName_Callback(mthis, elementName) native "Document_ getElementsByName_Callback"; 1751 Native_Document_getElementsByName_Callback(mthis, elementName) native "Document_ getElementsByName_Callback";
1330 1752
1331 Native_Document_getElementsByTagName_Callback(mthis, localName) native "Document _getElementsByTagName_Callback"; 1753 Native_Document_getElementsByTagName_Callback(mthis, localName) native "Document _getElementsByTagName_Callback";
1332 1754
1755 // Generated overload resolver
1756 Native_Document_importNode(mthis, node, deep) {
1757 if (deep != null) {
1758 return Native_Document__importNode_1_Callback(mthis, node, deep);
1759 }
1760 return Native_Document__importNode_2_Callback(mthis, node);
1761 }
1762
1333 Native_Document__importNode_1_Callback(mthis, node, deep) native "Document__impo rtNode_1_Callback"; 1763 Native_Document__importNode_1_Callback(mthis, node, deep) native "Document__impo rtNode_1_Callback";
1334 1764
1335 Native_Document__importNode_2_Callback(mthis, node) native "Document__importNode _2_Callback"; 1765 Native_Document__importNode_2_Callback(mthis, node) native "Document__importNode _2_Callback";
1336 1766
1337 Native_Document_queryCommandEnabled_Callback(mthis, command) native "Document_qu eryCommandEnabled_Callback"; 1767 Native_Document_queryCommandEnabled_Callback(mthis, command) native "Document_qu eryCommandEnabled_Callback";
1338 1768
1339 Native_Document_queryCommandIndeterm_Callback(mthis, command) native "Document_q ueryCommandIndeterm_Callback"; 1769 Native_Document_queryCommandIndeterm_Callback(mthis, command) native "Document_q ueryCommandIndeterm_Callback";
1340 1770
1341 Native_Document_queryCommandState_Callback(mthis, command) native "Document_quer yCommandState_Callback"; 1771 Native_Document_queryCommandState_Callback(mthis, command) native "Document_quer yCommandState_Callback";
1342 1772
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1431 Native_Element_scrollTop_Setter(mthis, value) native "Element_scrollTop_Setter"; 1861 Native_Element_scrollTop_Setter(mthis, value) native "Element_scrollTop_Setter";
1432 1862
1433 Native_Element_scrollWidth_Getter(mthis) native "Element_scrollWidth_Getter"; 1863 Native_Element_scrollWidth_Getter(mthis) native "Element_scrollWidth_Getter";
1434 1864
1435 Native_Element_shadowRoot_Getter(mthis) native "Element_shadowRoot_Getter"; 1865 Native_Element_shadowRoot_Getter(mthis) native "Element_shadowRoot_Getter";
1436 1866
1437 Native_Element_style_Getter(mthis) native "Element_style_Getter"; 1867 Native_Element_style_Getter(mthis) native "Element_style_Getter";
1438 1868
1439 Native_Element_tagName_Getter(mthis) native "Element_tagName_Getter"; 1869 Native_Element_tagName_Getter(mthis) native "Element_tagName_Getter";
1440 1870
1871 // Generated overload resolver
1872 Native_Element_animate(mthis, keyframes, timingInput) {
1873 if ((timingInput is Map || timingInput == null) && (keyframes is List<Map> | | keyframes == null)) {
1874 return Native_Element__animate_1_Callback(mthis, keyframes, timingInput);
1875 }
1876 if ((timingInput is num || timingInput == null) && (keyframes is List<Map> | | keyframes == null)) {
1877 return Native_Element__animate_2_Callback(mthis, keyframes, timingInput);
1878 }
1879 if ((keyframes is List<Map> || keyframes == null) && timingInput == null) {
1880 return Native_Element__animate_3_Callback(mthis, keyframes);
1881 }
1882 throw new ArgumentError("Incorrect number or type of arguments");
1883 }
1884
1441 Native_Element__animate_1_Callback(mthis, keyframes, timingInput) native "Elemen t__animate_1_Callback"; 1885 Native_Element__animate_1_Callback(mthis, keyframes, timingInput) native "Elemen t__animate_1_Callback";
1442 1886
1443 Native_Element__animate_2_Callback(mthis, keyframes, timingInput) native "Elemen t__animate_2_Callback"; 1887 Native_Element__animate_2_Callback(mthis, keyframes, timingInput) native "Elemen t__animate_2_Callback";
1444 1888
1445 Native_Element__animate_3_Callback(mthis, keyframes) native "Element__animate_3_ Callback"; 1889 Native_Element__animate_3_Callback(mthis, keyframes) native "Element__animate_3_ Callback";
1446 1890
1447 Native_Element_blur_Callback(mthis) native "Element_blur_Callback"; 1891 Native_Element_blur_Callback(mthis) native "Element_blur_Callback";
1448 1892
1449 Native_Element_createShadowRoot_Callback(mthis) native "Element_createShadowRoot _Callback"; 1893 Native_Element_createShadowRoot_Callback(mthis) native "Element_createShadowRoot _Callback";
1450 1894
(...skipping 30 matching lines...) Expand all
1481 Native_Element_querySelectorAll_Callback(mthis, selectors) native "Element_query SelectorAll_Callback"; 1925 Native_Element_querySelectorAll_Callback(mthis, selectors) native "Element_query SelectorAll_Callback";
1482 1926
1483 Native_Element_removeAttribute_Callback(mthis, name) native "Element_removeAttri bute_Callback"; 1927 Native_Element_removeAttribute_Callback(mthis, name) native "Element_removeAttri bute_Callback";
1484 1928
1485 Native_Element_removeAttributeNS_Callback(mthis, namespaceURI, localName) native "Element_removeAttributeNS_Callback"; 1929 Native_Element_removeAttributeNS_Callback(mthis, namespaceURI, localName) native "Element_removeAttributeNS_Callback";
1486 1930
1487 Native_Element_scrollByLines_Callback(mthis, lines) native "Element_scrollByLine s_Callback"; 1931 Native_Element_scrollByLines_Callback(mthis, lines) native "Element_scrollByLine s_Callback";
1488 1932
1489 Native_Element_scrollByPages_Callback(mthis, pages) native "Element_scrollByPage s_Callback"; 1933 Native_Element_scrollByPages_Callback(mthis, pages) native "Element_scrollByPage s_Callback";
1490 1934
1935 // Generated overload resolver
1936 Native_Element__scrollIntoView(mthis, alignWithTop) {
1937 if (alignWithTop != null) {
1938 Native_Element__scrollIntoView_1_Callback(mthis, alignWithTop);
1939 return;
1940 }
1941 Native_Element__scrollIntoView_2_Callback(mthis);
1942 return;
1943 }
1944
1491 Native_Element__scrollIntoView_1_Callback(mthis, alignWithTop) native "Element__ scrollIntoView_1_Callback"; 1945 Native_Element__scrollIntoView_1_Callback(mthis, alignWithTop) native "Element__ scrollIntoView_1_Callback";
1492 1946
1493 Native_Element__scrollIntoView_2_Callback(mthis) native "Element__scrollIntoView _2_Callback"; 1947 Native_Element__scrollIntoView_2_Callback(mthis) native "Element__scrollIntoView _2_Callback";
1494 1948
1949 // Generated overload resolver
1950 Native_Element__scrollIntoViewIfNeeded(mthis, centerIfNeeded) {
1951 if (centerIfNeeded != null) {
1952 Native_Element__scrollIntoViewIfNeeded_1_Callback(mthis, centerIfNeeded);
1953 return;
1954 }
1955 Native_Element__scrollIntoViewIfNeeded_2_Callback(mthis);
1956 return;
1957 }
1958
1495 Native_Element__scrollIntoViewIfNeeded_1_Callback(mthis, centerIfNeeded) native "Element__scrollIntoViewIfNeeded_1_Callback"; 1959 Native_Element__scrollIntoViewIfNeeded_1_Callback(mthis, centerIfNeeded) native "Element__scrollIntoViewIfNeeded_1_Callback";
1496 1960
1497 Native_Element__scrollIntoViewIfNeeded_2_Callback(mthis) native "Element__scroll IntoViewIfNeeded_2_Callback"; 1961 Native_Element__scrollIntoViewIfNeeded_2_Callback(mthis) native "Element__scroll IntoViewIfNeeded_2_Callback";
1498 1962
1499 Native_Element_setAttribute_Callback(mthis, name, value) native "Element_setAttr ibute_Callback"; 1963 Native_Element_setAttribute_Callback(mthis, name, value) native "Element_setAttr ibute_Callback";
1500 1964
1501 Native_Element_setAttributeNS_Callback(mthis, namespaceURI, qualifiedName, value ) native "Element_setAttributeNS_Callback"; 1965 Native_Element_setAttributeNS_Callback(mthis, namespaceURI, qualifiedName, value ) native "Element_setAttributeNS_Callback";
1502 1966
1503 Native_Element_webkitRequestFullscreen_Callback(mthis) native "Element_webkitReq uestFullscreen_Callback"; 1967 Native_Element_webkitRequestFullscreen_Callback(mthis) native "Element_webkitReq uestFullscreen_Callback";
1504 1968
(...skipping 16 matching lines...) Expand all
1521 Native_ErrorEvent_colno_Getter(mthis) native "ErrorEvent_colno_Getter"; 1985 Native_ErrorEvent_colno_Getter(mthis) native "ErrorEvent_colno_Getter";
1522 1986
1523 Native_ErrorEvent_error_Getter(mthis) native "ErrorEvent_error_Getter"; 1987 Native_ErrorEvent_error_Getter(mthis) native "ErrorEvent_error_Getter";
1524 1988
1525 Native_ErrorEvent_filename_Getter(mthis) native "ErrorEvent_filename_Getter"; 1989 Native_ErrorEvent_filename_Getter(mthis) native "ErrorEvent_filename_Getter";
1526 1990
1527 Native_ErrorEvent_lineno_Getter(mthis) native "ErrorEvent_lineno_Getter"; 1991 Native_ErrorEvent_lineno_Getter(mthis) native "ErrorEvent_lineno_Getter";
1528 1992
1529 Native_ErrorEvent_message_Getter(mthis) native "ErrorEvent_message_Getter"; 1993 Native_ErrorEvent_message_Getter(mthis) native "ErrorEvent_message_Getter";
1530 1994
1995 // Generated overload resolver
1996 Native_EventSource_EventSource(url, eventSourceInit) {
1997 return Native_EventSource__create_1constructorCallback(url, eventSourceInit) ;
1998 }
1999
1531 Native_EventSource__create_1constructorCallback(url, eventSourceInit) native "Ev entSource__create_1constructorCallback"; 2000 Native_EventSource__create_1constructorCallback(url, eventSourceInit) native "Ev entSource__create_1constructorCallback";
1532 2001
1533 Native_EventSource_readyState_Getter(mthis) native "EventSource_readyState_Gette r"; 2002 Native_EventSource_readyState_Getter(mthis) native "EventSource_readyState_Gette r";
1534 2003
1535 Native_EventSource_url_Getter(mthis) native "EventSource_url_Getter"; 2004 Native_EventSource_url_Getter(mthis) native "EventSource_url_Getter";
1536 2005
1537 Native_EventSource_withCredentials_Getter(mthis) native "EventSource_withCredent ials_Getter"; 2006 Native_EventSource_withCredentials_Getter(mthis) native "EventSource_withCredent ials_Getter";
1538 2007
1539 Native_EventSource_close_Callback(mthis) native "EventSource_close_Callback"; 2008 Native_EventSource_close_Callback(mthis) native "EventSource_close_Callback";
1540 2009
(...skipping 16 matching lines...) Expand all
1557 Native_FileEntry_file_Callback(mthis, successCallback, errorCallback) native "Fi leEntry_file_Callback"; 2026 Native_FileEntry_file_Callback(mthis, successCallback, errorCallback) native "Fi leEntry_file_Callback";
1558 2027
1559 Native_FileError_code_Getter(mthis) native "FileError_code_Getter"; 2028 Native_FileError_code_Getter(mthis) native "FileError_code_Getter";
1560 2029
1561 Native_FileList_length_Getter(mthis) native "FileList_length_Getter"; 2030 Native_FileList_length_Getter(mthis) native "FileList_length_Getter";
1562 2031
1563 Native_FileList_NativeIndexed_Getter(mthis, index) native "FileList_item_Callbac k"; 2032 Native_FileList_NativeIndexed_Getter(mthis, index) native "FileList_item_Callbac k";
1564 2033
1565 Native_FileList_item_Callback(mthis, index) native "FileList_item_Callback"; 2034 Native_FileList_item_Callback(mthis, index) native "FileList_item_Callback";
1566 2035
2036 // Generated overload resolver
2037 Native_FileReader_FileReader() {
2038 return Native_FileReader__create_1constructorCallback();
2039 }
2040
1567 Native_FileReader__create_1constructorCallback() native "FileReader__create_1con structorCallback"; 2041 Native_FileReader__create_1constructorCallback() native "FileReader__create_1con structorCallback";
1568 2042
1569 Native_FileReader_error_Getter(mthis) native "FileReader_error_Getter"; 2043 Native_FileReader_error_Getter(mthis) native "FileReader_error_Getter";
1570 2044
1571 Native_FileReader_readyState_Getter(mthis) native "FileReader_readyState_Getter" ; 2045 Native_FileReader_readyState_Getter(mthis) native "FileReader_readyState_Getter" ;
1572 2046
1573 Native_FileReader_result_Getter(mthis) native "FileReader_result_Getter"; 2047 Native_FileReader_result_Getter(mthis) native "FileReader_result_Getter";
1574 2048
1575 Native_FileReader_abort_Callback(mthis) native "FileReader_abort_Callback"; 2049 Native_FileReader_abort_Callback(mthis) native "FileReader_abort_Callback";
1576 2050
1577 Native_FileReader_readAsArrayBuffer_Callback(mthis, blob) native "FileReader_rea dAsArrayBuffer_Callback"; 2051 Native_FileReader_readAsArrayBuffer_Callback(mthis, blob) native "FileReader_rea dAsArrayBuffer_Callback";
1578 2052
1579 Native_FileReader_readAsDataURL_Callback(mthis, blob) native "FileReader_readAsD ataURL_Callback"; 2053 Native_FileReader_readAsDataURL_Callback(mthis, blob) native "FileReader_readAsD ataURL_Callback";
1580 2054
2055 // Generated overload resolver
2056 Native_FileReader_readAsText(mthis, blob, encoding) {
2057 if (encoding != null) {
2058 Native_FileReader__readAsText_1_Callback(mthis, blob, encoding);
2059 return;
2060 }
2061 Native_FileReader__readAsText_2_Callback(mthis, blob);
2062 return;
2063 }
2064
1581 Native_FileReader__readAsText_1_Callback(mthis, blob, encoding) native "FileRead er__readAsText_1_Callback"; 2065 Native_FileReader__readAsText_1_Callback(mthis, blob, encoding) native "FileRead er__readAsText_1_Callback";
1582 2066
1583 Native_FileReader__readAsText_2_Callback(mthis, blob) native "FileReader__readAs Text_2_Callback"; 2067 Native_FileReader__readAsText_2_Callback(mthis, blob) native "FileReader__readAs Text_2_Callback";
1584 2068
1585 Native_FileReader_addEventListener_Callback(mthis, type, listener, useCapture) n ative "FileReader_addEventListener_Callback"; 2069 Native_FileReader_addEventListener_Callback(mthis, type, listener, useCapture) n ative "FileReader_addEventListener_Callback";
1586 2070
1587 Native_FileReader_dispatchEvent_Callback(mthis, event) native "FileReader_dispat chEvent_Callback"; 2071 Native_FileReader_dispatchEvent_Callback(mthis, event) native "FileReader_dispat chEvent_Callback";
1588 2072
1589 Native_FileReader_removeEventListener_Callback(mthis, type, listener, useCapture ) native "FileReader_removeEventListener_Callback"; 2073 Native_FileReader_removeEventListener_Callback(mthis, type, listener, useCapture ) native "FileReader_removeEventListener_Callback";
1590 2074
2075 // Generated overload resolver
2076 Native_FileReaderSync__FileReaderSync() {
2077 return Native_FileReaderSync__create_1constructorCallback();
2078 }
2079
1591 Native_FileReaderSync__create_1constructorCallback() native "FileReaderSync__cre ate_1constructorCallback"; 2080 Native_FileReaderSync__create_1constructorCallback() native "FileReaderSync__cre ate_1constructorCallback";
1592 2081
1593 Native_FileWriter_error_Getter(mthis) native "FileWriter_error_Getter"; 2082 Native_FileWriter_error_Getter(mthis) native "FileWriter_error_Getter";
1594 2083
1595 Native_FileWriter_length_Getter(mthis) native "FileWriter_length_Getter"; 2084 Native_FileWriter_length_Getter(mthis) native "FileWriter_length_Getter";
1596 2085
1597 Native_FileWriter_position_Getter(mthis) native "FileWriter_position_Getter"; 2086 Native_FileWriter_position_Getter(mthis) native "FileWriter_position_Getter";
1598 2087
1599 Native_FileWriter_readyState_Getter(mthis) native "FileWriter_readyState_Getter" ; 2088 Native_FileWriter_readyState_Getter(mthis) native "FileWriter_readyState_Getter" ;
1600 2089
1601 Native_FileWriter_abort_Callback(mthis) native "FileWriter_abort_Callback"; 2090 Native_FileWriter_abort_Callback(mthis) native "FileWriter_abort_Callback";
1602 2091
1603 Native_FileWriter_seek_Callback(mthis, position) native "FileWriter_seek_Callbac k"; 2092 Native_FileWriter_seek_Callback(mthis, position) native "FileWriter_seek_Callbac k";
1604 2093
1605 Native_FileWriter_truncate_Callback(mthis, size) native "FileWriter_truncate_Cal lback"; 2094 Native_FileWriter_truncate_Callback(mthis, size) native "FileWriter_truncate_Cal lback";
1606 2095
1607 Native_FileWriter_write_Callback(mthis, data) native "FileWriter_write_Callback" ; 2096 Native_FileWriter_write_Callback(mthis, data) native "FileWriter_write_Callback" ;
1608 2097
1609 Native_FileWriter_addEventListener_Callback(mthis, type, listener, useCapture) n ative "FileWriter_addEventListener_Callback"; 2098 Native_FileWriter_addEventListener_Callback(mthis, type, listener, useCapture) n ative "FileWriter_addEventListener_Callback";
1610 2099
1611 Native_FileWriter_dispatchEvent_Callback(mthis, event) native "FileWriter_dispat chEvent_Callback"; 2100 Native_FileWriter_dispatchEvent_Callback(mthis, event) native "FileWriter_dispat chEvent_Callback";
1612 2101
1613 Native_FileWriter_removeEventListener_Callback(mthis, type, listener, useCapture ) native "FileWriter_removeEventListener_Callback"; 2102 Native_FileWriter_removeEventListener_Callback(mthis, type, listener, useCapture ) native "FileWriter_removeEventListener_Callback";
1614 2103
1615 Native_FocusEvent_relatedTarget_Getter(mthis) native "FocusEvent_relatedTarget_G etter"; 2104 Native_FocusEvent_relatedTarget_Getter(mthis) native "FocusEvent_relatedTarget_G etter";
1616 2105
2106 // Generated overload resolver
2107 Native_FontFace_FontFace(family, source, descriptors) {
2108 return Native_FontFace__create_1constructorCallback(family, source, descript ors);
2109 }
2110
1617 Native_FontFace__create_1constructorCallback(family, source, descriptors) native "FontFace__create_1constructorCallback"; 2111 Native_FontFace__create_1constructorCallback(family, source, descriptors) native "FontFace__create_1constructorCallback";
1618 2112
1619 Native_FontFace_family_Getter(mthis) native "FontFace_family_Getter"; 2113 Native_FontFace_family_Getter(mthis) native "FontFace_family_Getter";
1620 2114
1621 Native_FontFace_family_Setter(mthis, value) native "FontFace_family_Setter"; 2115 Native_FontFace_family_Setter(mthis, value) native "FontFace_family_Setter";
1622 2116
1623 Native_FontFace_featureSettings_Getter(mthis) native "FontFace_featureSettings_G etter"; 2117 Native_FontFace_featureSettings_Getter(mthis) native "FontFace_featureSettings_G etter";
1624 2118
1625 Native_FontFace_featureSettings_Setter(mthis, value) native "FontFace_featureSet tings_Setter"; 2119 Native_FontFace_featureSettings_Setter(mthis, value) native "FontFace_featureSet tings_Setter";
1626 2120
(...skipping 26 matching lines...) Expand all
1653 Native_FontFaceSet_status_Getter(mthis) native "FontFaceSet_status_Getter"; 2147 Native_FontFaceSet_status_Getter(mthis) native "FontFaceSet_status_Getter";
1654 2148
1655 Native_FontFaceSet_add_Callback(mthis, fontFace) native "FontFaceSet_add_Callbac k"; 2149 Native_FontFaceSet_add_Callback(mthis, fontFace) native "FontFaceSet_add_Callbac k";
1656 2150
1657 Native_FontFaceSet_check_Callback(mthis, font, text) native "FontFaceSet_check_C allback"; 2151 Native_FontFaceSet_check_Callback(mthis, font, text) native "FontFaceSet_check_C allback";
1658 2152
1659 Native_FontFaceSet_clear_Callback(mthis) native "FontFaceSet_clear_Callback"; 2153 Native_FontFaceSet_clear_Callback(mthis) native "FontFaceSet_clear_Callback";
1660 2154
1661 Native_FontFaceSet_delete_Callback(mthis, fontFace) native "FontFaceSet_delete_C allback"; 2155 Native_FontFaceSet_delete_Callback(mthis, fontFace) native "FontFaceSet_delete_C allback";
1662 2156
2157 // Generated overload resolver
2158 Native_FontFaceSet_forEach(mthis, callback, thisArg) {
2159 if (thisArg != null) {
2160 Native_FontFaceSet__forEach_1_Callback(mthis, callback, thisArg);
2161 return;
2162 }
2163 Native_FontFaceSet__forEach_2_Callback(mthis, callback);
2164 return;
2165 }
2166
1663 Native_FontFaceSet__forEach_1_Callback(mthis, callback, thisArg) native "FontFac eSet__forEach_1_Callback"; 2167 Native_FontFaceSet__forEach_1_Callback(mthis, callback, thisArg) native "FontFac eSet__forEach_1_Callback";
1664 2168
1665 Native_FontFaceSet__forEach_2_Callback(mthis, callback) native "FontFaceSet__for Each_2_Callback"; 2169 Native_FontFaceSet__forEach_2_Callback(mthis, callback) native "FontFaceSet__for Each_2_Callback";
1666 2170
1667 Native_FontFaceSet_has_Callback(mthis, fontFace) native "FontFaceSet_has_Callbac k"; 2171 Native_FontFaceSet_has_Callback(mthis, fontFace) native "FontFaceSet_has_Callbac k";
1668 2172
1669 Native_FontFaceSet_addEventListener_Callback(mthis, type, listener, useCapture) native "FontFaceSet_addEventListener_Callback"; 2173 Native_FontFaceSet_addEventListener_Callback(mthis, type, listener, useCapture) native "FontFaceSet_addEventListener_Callback";
1670 2174
1671 Native_FontFaceSet_dispatchEvent_Callback(mthis, event) native "FontFaceSet_disp atchEvent_Callback"; 2175 Native_FontFaceSet_dispatchEvent_Callback(mthis, event) native "FontFaceSet_disp atchEvent_Callback";
1672 2176
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
2001 Native_HTMLMediaElement_textTracks_Getter(mthis) native "HTMLMediaElement_textTr acks_Getter"; 2505 Native_HTMLMediaElement_textTracks_Getter(mthis) native "HTMLMediaElement_textTr acks_Getter";
2002 2506
2003 Native_HTMLMediaElement_volume_Getter(mthis) native "HTMLMediaElement_volume_Get ter"; 2507 Native_HTMLMediaElement_volume_Getter(mthis) native "HTMLMediaElement_volume_Get ter";
2004 2508
2005 Native_HTMLMediaElement_volume_Setter(mthis, value) native "HTMLMediaElement_vol ume_Setter"; 2509 Native_HTMLMediaElement_volume_Setter(mthis, value) native "HTMLMediaElement_vol ume_Setter";
2006 2510
2007 Native_HTMLMediaElement_webkitAudioDecodedByteCount_Getter(mthis) native "HTMLMe diaElement_webkitAudioDecodedByteCount_Getter"; 2511 Native_HTMLMediaElement_webkitAudioDecodedByteCount_Getter(mthis) native "HTMLMe diaElement_webkitAudioDecodedByteCount_Getter";
2008 2512
2009 Native_HTMLMediaElement_webkitVideoDecodedByteCount_Getter(mthis) native "HTMLMe diaElement_webkitVideoDecodedByteCount_Getter"; 2513 Native_HTMLMediaElement_webkitVideoDecodedByteCount_Getter(mthis) native "HTMLMe diaElement_webkitVideoDecodedByteCount_Getter";
2010 2514
2515 // Generated overload resolver
2516 Native_HTMLMediaElement_addTextTrack(mthis, kind, label, language) {
2517 if (language != null) {
2518 return Native_HTMLMediaElement__addTextTrack_1_Callback(mthis, kind, label , language);
2519 }
2520 if (label != null) {
2521 return Native_HTMLMediaElement__addTextTrack_2_Callback(mthis, kind, label );
2522 }
2523 return Native_HTMLMediaElement__addTextTrack_3_Callback(mthis, kind);
2524 }
2525
2011 Native_HTMLMediaElement__addTextTrack_1_Callback(mthis, kind, label, language) n ative "HTMLMediaElement__addTextTrack_1_Callback"; 2526 Native_HTMLMediaElement__addTextTrack_1_Callback(mthis, kind, label, language) n ative "HTMLMediaElement__addTextTrack_1_Callback";
2012 2527
2013 Native_HTMLMediaElement__addTextTrack_2_Callback(mthis, kind, label) native "HTM LMediaElement__addTextTrack_2_Callback"; 2528 Native_HTMLMediaElement__addTextTrack_2_Callback(mthis, kind, label) native "HTM LMediaElement__addTextTrack_2_Callback";
2014 2529
2015 Native_HTMLMediaElement__addTextTrack_3_Callback(mthis, kind) native "HTMLMediaE lement__addTextTrack_3_Callback"; 2530 Native_HTMLMediaElement__addTextTrack_3_Callback(mthis, kind) native "HTMLMediaE lement__addTextTrack_3_Callback";
2016 2531
2017 Native_HTMLMediaElement_canPlayType_Callback(mthis, type, keySystem) native "HTM LMediaElement_canPlayType_Callback"; 2532 Native_HTMLMediaElement_canPlayType_Callback(mthis, type, keySystem) native "HTM LMediaElement_canPlayType_Callback";
2018 2533
2019 Native_HTMLMediaElement_load_Callback(mthis) native "HTMLMediaElement_load_Callb ack"; 2534 Native_HTMLMediaElement_load_Callback(mthis) native "HTMLMediaElement_load_Callb ack";
2020 2535
2021 Native_HTMLMediaElement_pause_Callback(mthis) native "HTMLMediaElement_pause_Cal lback"; 2536 Native_HTMLMediaElement_pause_Callback(mthis) native "HTMLMediaElement_pause_Cal lback";
2022 2537
2023 Native_HTMLMediaElement_play_Callback(mthis) native "HTMLMediaElement_play_Callb ack"; 2538 Native_HTMLMediaElement_play_Callback(mthis) native "HTMLMediaElement_play_Callb ack";
2024 2539
2025 Native_HTMLMediaElement_setMediaKeys_Callback(mthis, mediaKeys) native "HTMLMedi aElement_setMediaKeys_Callback"; 2540 Native_HTMLMediaElement_setMediaKeys_Callback(mthis, mediaKeys) native "HTMLMedi aElement_setMediaKeys_Callback";
2026 2541
2542 // Generated overload resolver
2543 Native_HTMLMediaElement_addKey(mthis, keySystem, key, initData, sessionId) {
2544 if (initData != null) {
2545 Native_HTMLMediaElement__webkitAddKey_1_Callback(mthis, keySystem, key, in itData, sessionId);
2546 return;
2547 }
2548 Native_HTMLMediaElement__webkitAddKey_2_Callback(mthis, keySystem, key);
2549 return;
2550 }
2551
2027 Native_HTMLMediaElement__webkitAddKey_1_Callback(mthis, keySystem, key, initData , sessionId) native "HTMLMediaElement__webkitAddKey_1_Callback"; 2552 Native_HTMLMediaElement__webkitAddKey_1_Callback(mthis, keySystem, key, initData , sessionId) native "HTMLMediaElement__webkitAddKey_1_Callback";
2028 2553
2029 Native_HTMLMediaElement__webkitAddKey_2_Callback(mthis, keySystem, key) native " HTMLMediaElement__webkitAddKey_2_Callback"; 2554 Native_HTMLMediaElement__webkitAddKey_2_Callback(mthis, keySystem, key) native " HTMLMediaElement__webkitAddKey_2_Callback";
2030 2555
2031 Native_HTMLMediaElement_webkitCancelKeyRequest_Callback(mthis, keySystem, sessio nId) native "HTMLMediaElement_webkitCancelKeyRequest_Callback"; 2556 Native_HTMLMediaElement_webkitCancelKeyRequest_Callback(mthis, keySystem, sessio nId) native "HTMLMediaElement_webkitCancelKeyRequest_Callback";
2032 2557
2558 // Generated overload resolver
2559 Native_HTMLMediaElement_generateKeyRequest(mthis, keySystem, initData) {
2560 if (initData != null) {
2561 Native_HTMLMediaElement__webkitGenerateKeyRequest_1_Callback(mthis, keySys tem, initData);
2562 return;
2563 }
2564 Native_HTMLMediaElement__webkitGenerateKeyRequest_2_Callback(mthis, keySyste m);
2565 return;
2566 }
2567
2033 Native_HTMLMediaElement__webkitGenerateKeyRequest_1_Callback(mthis, keySystem, i nitData) native "HTMLMediaElement__webkitGenerateKeyRequest_1_Callback"; 2568 Native_HTMLMediaElement__webkitGenerateKeyRequest_1_Callback(mthis, keySystem, i nitData) native "HTMLMediaElement__webkitGenerateKeyRequest_1_Callback";
2034 2569
2035 Native_HTMLMediaElement__webkitGenerateKeyRequest_2_Callback(mthis, keySystem) n ative "HTMLMediaElement__webkitGenerateKeyRequest_2_Callback"; 2570 Native_HTMLMediaElement__webkitGenerateKeyRequest_2_Callback(mthis, keySystem) n ative "HTMLMediaElement__webkitGenerateKeyRequest_2_Callback";
2036 2571
2572 // Generated overload resolver
2573 Native_HTMLAudioElement_AudioElement(src) {
2574 return Native_HTMLAudioElement__create_1constructorCallback(src);
2575 }
2576
2037 Native_HTMLAudioElement__create_1constructorCallback(src) native "HTMLAudioEleme nt__create_1constructorCallback"; 2577 Native_HTMLAudioElement__create_1constructorCallback(src) native "HTMLAudioEleme nt__create_1constructorCallback";
2038 2578
2039 Native_HTMLBaseElement_href_Getter(mthis) native "HTMLBaseElement_href_Getter"; 2579 Native_HTMLBaseElement_href_Getter(mthis) native "HTMLBaseElement_href_Getter";
2040 2580
2041 Native_HTMLBaseElement_href_Setter(mthis, value) native "HTMLBaseElement_href_Se tter"; 2581 Native_HTMLBaseElement_href_Setter(mthis, value) native "HTMLBaseElement_href_Se tter";
2042 2582
2043 Native_HTMLBaseElement_target_Getter(mthis) native "HTMLBaseElement_target_Gette r"; 2583 Native_HTMLBaseElement_target_Getter(mthis) native "HTMLBaseElement_target_Gette r";
2044 2584
2045 Native_HTMLBaseElement_target_Setter(mthis, value) native "HTMLBaseElement_targe t_Setter"; 2585 Native_HTMLBaseElement_target_Setter(mthis, value) native "HTMLBaseElement_targe t_Setter";
2046 2586
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
2493 Native_HTMLInputElement_width_Setter(mthis, value) native "HTMLInputElement_widt h_Setter"; 3033 Native_HTMLInputElement_width_Setter(mthis, value) native "HTMLInputElement_widt h_Setter";
2494 3034
2495 Native_HTMLInputElement_willValidate_Getter(mthis) native "HTMLInputElement_will Validate_Getter"; 3035 Native_HTMLInputElement_willValidate_Getter(mthis) native "HTMLInputElement_will Validate_Getter";
2496 3036
2497 Native_HTMLInputElement_checkValidity_Callback(mthis) native "HTMLInputElement_c heckValidity_Callback"; 3037 Native_HTMLInputElement_checkValidity_Callback(mthis) native "HTMLInputElement_c heckValidity_Callback";
2498 3038
2499 Native_HTMLInputElement_select_Callback(mthis) native "HTMLInputElement_select_C allback"; 3039 Native_HTMLInputElement_select_Callback(mthis) native "HTMLInputElement_select_C allback";
2500 3040
2501 Native_HTMLInputElement_setCustomValidity_Callback(mthis, error) native "HTMLInp utElement_setCustomValidity_Callback"; 3041 Native_HTMLInputElement_setCustomValidity_Callback(mthis, error) native "HTMLInp utElement_setCustomValidity_Callback";
2502 3042
3043 // Generated overload resolver
3044 Native_HTMLInputElement_setRangeText(mthis, replacement, start, end, selectionMo de) {
3045 if ((replacement is String || replacement == null) && start == null && end = = null && selectionMode == null) {
3046 Native_HTMLInputElement__setRangeText_1_Callback(mthis, replacement);
3047 return;
3048 }
3049 if ((selectionMode is String || selectionMode == null) && (end is int || end == null) && (start is int || start == null) && (replacement is String || replac ement == null)) {
3050 Native_HTMLInputElement__setRangeText_2_Callback(mthis, replacement, start , end, selectionMode);
3051 return;
3052 }
3053 throw new ArgumentError("Incorrect number or type of arguments");
3054 }
3055
2503 Native_HTMLInputElement__setRangeText_1_Callback(mthis, replacement) native "HTM LInputElement__setRangeText_1_Callback"; 3056 Native_HTMLInputElement__setRangeText_1_Callback(mthis, replacement) native "HTM LInputElement__setRangeText_1_Callback";
2504 3057
2505 Native_HTMLInputElement__setRangeText_2_Callback(mthis, replacement, start, end, selectionMode) native "HTMLInputElement__setRangeText_2_Callback"; 3058 Native_HTMLInputElement__setRangeText_2_Callback(mthis, replacement, start, end, selectionMode) native "HTMLInputElement__setRangeText_2_Callback";
2506 3059
3060 // Generated overload resolver
3061 Native_HTMLInputElement_setSelectionRange(mthis, start, end, direction) {
3062 if (direction != null) {
3063 Native_HTMLInputElement__setSelectionRange_1_Callback(mthis, start, end, d irection);
3064 return;
3065 }
3066 Native_HTMLInputElement__setSelectionRange_2_Callback(mthis, start, end);
3067 return;
3068 }
3069
2507 Native_HTMLInputElement__setSelectionRange_1_Callback(mthis, start, end, directi on) native "HTMLInputElement__setSelectionRange_1_Callback"; 3070 Native_HTMLInputElement__setSelectionRange_1_Callback(mthis, start, end, directi on) native "HTMLInputElement__setSelectionRange_1_Callback";
2508 3071
2509 Native_HTMLInputElement__setSelectionRange_2_Callback(mthis, start, end) native "HTMLInputElement__setSelectionRange_2_Callback"; 3072 Native_HTMLInputElement__setSelectionRange_2_Callback(mthis, start, end) native "HTMLInputElement__setSelectionRange_2_Callback";
2510 3073
3074 // Generated overload resolver
3075 Native_HTMLInputElement_stepDown(mthis, n) {
3076 if (n != null) {
3077 Native_HTMLInputElement__stepDown_1_Callback(mthis, n);
3078 return;
3079 }
3080 Native_HTMLInputElement__stepDown_2_Callback(mthis);
3081 return;
3082 }
3083
2511 Native_HTMLInputElement__stepDown_1_Callback(mthis, n) native "HTMLInputElement_ _stepDown_1_Callback"; 3084 Native_HTMLInputElement__stepDown_1_Callback(mthis, n) native "HTMLInputElement_ _stepDown_1_Callback";
2512 3085
2513 Native_HTMLInputElement__stepDown_2_Callback(mthis) native "HTMLInputElement__st epDown_2_Callback"; 3086 Native_HTMLInputElement__stepDown_2_Callback(mthis) native "HTMLInputElement__st epDown_2_Callback";
2514 3087
3088 // Generated overload resolver
3089 Native_HTMLInputElement_stepUp(mthis, n) {
3090 if (n != null) {
3091 Native_HTMLInputElement__stepUp_1_Callback(mthis, n);
3092 return;
3093 }
3094 Native_HTMLInputElement__stepUp_2_Callback(mthis);
3095 return;
3096 }
3097
2515 Native_HTMLInputElement__stepUp_1_Callback(mthis, n) native "HTMLInputElement__s tepUp_1_Callback"; 3098 Native_HTMLInputElement__stepUp_1_Callback(mthis, n) native "HTMLInputElement__s tepUp_1_Callback";
2516 3099
2517 Native_HTMLInputElement__stepUp_2_Callback(mthis) native "HTMLInputElement__step Up_2_Callback"; 3100 Native_HTMLInputElement__stepUp_2_Callback(mthis) native "HTMLInputElement__step Up_2_Callback";
2518 3101
2519 Native_HTMLKeygenElement_autofocus_Getter(mthis) native "HTMLKeygenElement_autof ocus_Getter"; 3102 Native_HTMLKeygenElement_autofocus_Getter(mthis) native "HTMLKeygenElement_autof ocus_Getter";
2520 3103
2521 Native_HTMLKeygenElement_autofocus_Setter(mthis, value) native "HTMLKeygenElemen t_autofocus_Setter"; 3104 Native_HTMLKeygenElement_autofocus_Setter(mthis, value) native "HTMLKeygenElemen t_autofocus_Setter";
2522 3105
2523 Native_HTMLKeygenElement_challenge_Getter(mthis) native "HTMLKeygenElement_chall enge_Getter"; 3106 Native_HTMLKeygenElement_challenge_Getter(mthis) native "HTMLKeygenElement_chall enge_Getter";
2524 3107
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
2705 Native_HTMLObjectElement_setCustomValidity_Callback(mthis, error) native "HTMLOb jectElement_setCustomValidity_Callback"; 3288 Native_HTMLObjectElement_setCustomValidity_Callback(mthis, error) native "HTMLOb jectElement_setCustomValidity_Callback";
2706 3289
2707 Native_HTMLOptGroupElement_disabled_Getter(mthis) native "HTMLOptGroupElement_di sabled_Getter"; 3290 Native_HTMLOptGroupElement_disabled_Getter(mthis) native "HTMLOptGroupElement_di sabled_Getter";
2708 3291
2709 Native_HTMLOptGroupElement_disabled_Setter(mthis, value) native "HTMLOptGroupEle ment_disabled_Setter"; 3292 Native_HTMLOptGroupElement_disabled_Setter(mthis, value) native "HTMLOptGroupEle ment_disabled_Setter";
2710 3293
2711 Native_HTMLOptGroupElement_label_Getter(mthis) native "HTMLOptGroupElement_label _Getter"; 3294 Native_HTMLOptGroupElement_label_Getter(mthis) native "HTMLOptGroupElement_label _Getter";
2712 3295
2713 Native_HTMLOptGroupElement_label_Setter(mthis, value) native "HTMLOptGroupElemen t_label_Setter"; 3296 Native_HTMLOptGroupElement_label_Setter(mthis, value) native "HTMLOptGroupElemen t_label_Setter";
2714 3297
3298 // Generated overload resolver
3299 Native_HTMLOptionElement_OptionElement__(data, value, defaultSelected, selected) {
3300 return Native_HTMLOptionElement__create_1constructorCallback(data, value, de faultSelected, selected);
3301 }
3302
2715 Native_HTMLOptionElement__create_1constructorCallback(data, value, defaultSelect ed, selected) native "HTMLOptionElement__create_1constructorCallback"; 3303 Native_HTMLOptionElement__create_1constructorCallback(data, value, defaultSelect ed, selected) native "HTMLOptionElement__create_1constructorCallback";
2716 3304
2717 Native_HTMLOptionElement_defaultSelected_Getter(mthis) native "HTMLOptionElement _defaultSelected_Getter"; 3305 Native_HTMLOptionElement_defaultSelected_Getter(mthis) native "HTMLOptionElement _defaultSelected_Getter";
2718 3306
2719 Native_HTMLOptionElement_defaultSelected_Setter(mthis, value) native "HTMLOption Element_defaultSelected_Setter"; 3307 Native_HTMLOptionElement_defaultSelected_Setter(mthis, value) native "HTMLOption Element_defaultSelected_Setter";
2720 3308
2721 Native_HTMLOptionElement_disabled_Getter(mthis) native "HTMLOptionElement_disabl ed_Getter"; 3309 Native_HTMLOptionElement_disabled_Getter(mthis) native "HTMLOptionElement_disabl ed_Getter";
2722 3310
2723 Native_HTMLOptionElement_disabled_Setter(mthis, value) native "HTMLOptionElement _disabled_Setter"; 3311 Native_HTMLOptionElement_disabled_Setter(mthis, value) native "HTMLOptionElement _disabled_Setter";
2724 3312
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
3065 Native_HTMLTextAreaElement_wrap_Getter(mthis) native "HTMLTextAreaElement_wrap_G etter"; 3653 Native_HTMLTextAreaElement_wrap_Getter(mthis) native "HTMLTextAreaElement_wrap_G etter";
3066 3654
3067 Native_HTMLTextAreaElement_wrap_Setter(mthis, value) native "HTMLTextAreaElement _wrap_Setter"; 3655 Native_HTMLTextAreaElement_wrap_Setter(mthis, value) native "HTMLTextAreaElement _wrap_Setter";
3068 3656
3069 Native_HTMLTextAreaElement_checkValidity_Callback(mthis) native "HTMLTextAreaEle ment_checkValidity_Callback"; 3657 Native_HTMLTextAreaElement_checkValidity_Callback(mthis) native "HTMLTextAreaEle ment_checkValidity_Callback";
3070 3658
3071 Native_HTMLTextAreaElement_select_Callback(mthis) native "HTMLTextAreaElement_se lect_Callback"; 3659 Native_HTMLTextAreaElement_select_Callback(mthis) native "HTMLTextAreaElement_se lect_Callback";
3072 3660
3073 Native_HTMLTextAreaElement_setCustomValidity_Callback(mthis, error) native "HTML TextAreaElement_setCustomValidity_Callback"; 3661 Native_HTMLTextAreaElement_setCustomValidity_Callback(mthis, error) native "HTML TextAreaElement_setCustomValidity_Callback";
3074 3662
3663 // Generated overload resolver
3664 Native_HTMLTextAreaElement_setRangeText(mthis, replacement, start, end, selectio nMode) {
3665 if ((replacement is String || replacement == null) && start == null && end = = null && selectionMode == null) {
3666 Native_HTMLTextAreaElement__setRangeText_1_Callback(mthis, replacement);
3667 return;
3668 }
3669 if ((selectionMode is String || selectionMode == null) && (end is int || end == null) && (start is int || start == null) && (replacement is String || replac ement == null)) {
3670 Native_HTMLTextAreaElement__setRangeText_2_Callback(mthis, replacement, st art, end, selectionMode);
3671 return;
3672 }
3673 throw new ArgumentError("Incorrect number or type of arguments");
3674 }
3675
3075 Native_HTMLTextAreaElement__setRangeText_1_Callback(mthis, replacement) native " HTMLTextAreaElement__setRangeText_1_Callback"; 3676 Native_HTMLTextAreaElement__setRangeText_1_Callback(mthis, replacement) native " HTMLTextAreaElement__setRangeText_1_Callback";
3076 3677
3077 Native_HTMLTextAreaElement__setRangeText_2_Callback(mthis, replacement, start, e nd, selectionMode) native "HTMLTextAreaElement__setRangeText_2_Callback"; 3678 Native_HTMLTextAreaElement__setRangeText_2_Callback(mthis, replacement, start, e nd, selectionMode) native "HTMLTextAreaElement__setRangeText_2_Callback";
3078 3679
3680 // Generated overload resolver
3681 Native_HTMLTextAreaElement_setSelectionRange(mthis, start, end, direction) {
3682 if (direction != null) {
3683 Native_HTMLTextAreaElement__setSelectionRange_1_Callback(mthis, start, end , direction);
3684 return;
3685 }
3686 Native_HTMLTextAreaElement__setSelectionRange_2_Callback(mthis, start, end);
3687 return;
3688 }
3689
3079 Native_HTMLTextAreaElement__setSelectionRange_1_Callback(mthis, start, end, dire ction) native "HTMLTextAreaElement__setSelectionRange_1_Callback"; 3690 Native_HTMLTextAreaElement__setSelectionRange_1_Callback(mthis, start, end, dire ction) native "HTMLTextAreaElement__setSelectionRange_1_Callback";
3080 3691
3081 Native_HTMLTextAreaElement__setSelectionRange_2_Callback(mthis, start, end) nati ve "HTMLTextAreaElement__setSelectionRange_2_Callback"; 3692 Native_HTMLTextAreaElement__setSelectionRange_2_Callback(mthis, start, end) nati ve "HTMLTextAreaElement__setSelectionRange_2_Callback";
3082 3693
3083 Native_HTMLTrackElement_default_Getter(mthis) native "HTMLTrackElement_default_G etter"; 3694 Native_HTMLTrackElement_default_Getter(mthis) native "HTMLTrackElement_default_G etter";
3084 3695
3085 Native_HTMLTrackElement_default_Setter(mthis, value) native "HTMLTrackElement_de fault_Setter"; 3696 Native_HTMLTrackElement_default_Setter(mthis, value) native "HTMLTrackElement_de fault_Setter";
3086 3697
3087 Native_HTMLTrackElement_kind_Getter(mthis) native "HTMLTrackElement_kind_Getter" ; 3698 Native_HTMLTrackElement_kind_Getter(mthis) native "HTMLTrackElement_kind_Getter" ;
3088 3699
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
3175 Native_IDBDatabase_objectStoreNames_Getter(mthis) native "IDBDatabase_objectStor eNames_Getter"; 3786 Native_IDBDatabase_objectStoreNames_Getter(mthis) native "IDBDatabase_objectStor eNames_Getter";
3176 3787
3177 Native_IDBDatabase_version_Getter(mthis) native "IDBDatabase_version_Getter"; 3788 Native_IDBDatabase_version_Getter(mthis) native "IDBDatabase_version_Getter";
3178 3789
3179 Native_IDBDatabase_close_Callback(mthis) native "IDBDatabase_close_Callback"; 3790 Native_IDBDatabase_close_Callback(mthis) native "IDBDatabase_close_Callback";
3180 3791
3181 Native_IDBDatabase_createObjectStore_Callback(mthis, name, options) native "IDBD atabase_createObjectStore_Callback"; 3792 Native_IDBDatabase_createObjectStore_Callback(mthis, name, options) native "IDBD atabase_createObjectStore_Callback";
3182 3793
3183 Native_IDBDatabase_deleteObjectStore_Callback(mthis, name) native "IDBDatabase_d eleteObjectStore_Callback"; 3794 Native_IDBDatabase_deleteObjectStore_Callback(mthis, name) native "IDBDatabase_d eleteObjectStore_Callback";
3184 3795
3796 // Generated overload resolver
3797 Native_IDBDatabase_transaction(mthis, storeName_OR_storeNames, mode) {
3798 if ((mode is String || mode == null) && (storeName_OR_storeNames is List<Str ing> || storeName_OR_storeNames == null)) {
3799 return Native_IDBDatabase__transaction_1_Callback(mthis, storeName_OR_stor eNames, mode);
3800 }
3801 if ((mode is String || mode == null) && (storeName_OR_storeNames is List<Str ing> || storeName_OR_storeNames == null)) {
3802 return Native_IDBDatabase__transaction_2_Callback(mthis, storeName_OR_stor eNames, mode);
3803 }
3804 if ((mode is String || mode == null) && (storeName_OR_storeNames is String | | storeName_OR_storeNames == null)) {
3805 return Native_IDBDatabase__transaction_3_Callback(mthis, storeName_OR_stor eNames, mode);
3806 }
3807 throw new ArgumentError("Incorrect number or type of arguments");
3808 }
3809
3185 Native_IDBDatabase__transaction_1_Callback(mthis, storeName_OR_storeNames, mode) native "IDBDatabase__transaction_1_Callback"; 3810 Native_IDBDatabase__transaction_1_Callback(mthis, storeName_OR_storeNames, mode) native "IDBDatabase__transaction_1_Callback";
3186 3811
3187 Native_IDBDatabase__transaction_2_Callback(mthis, storeName_OR_storeNames, mode) native "IDBDatabase__transaction_2_Callback"; 3812 Native_IDBDatabase__transaction_2_Callback(mthis, storeName_OR_storeNames, mode) native "IDBDatabase__transaction_2_Callback";
3188 3813
3189 Native_IDBDatabase__transaction_3_Callback(mthis, storeName_OR_storeNames, mode) native "IDBDatabase__transaction_3_Callback"; 3814 Native_IDBDatabase__transaction_3_Callback(mthis, storeName_OR_storeNames, mode) native "IDBDatabase__transaction_3_Callback";
3190 3815
3191 Native_IDBDatabase_transactionList_Callback(mthis, storeNames, mode) native "IDB Database_transactionList_Callback"; 3816 Native_IDBDatabase_transactionList_Callback(mthis, storeNames, mode) native "IDB Database_transactionList_Callback";
3192 3817
3193 Native_IDBDatabase_transactionStore_Callback(mthis, storeName, mode) native "IDB Database_transactionStore_Callback"; 3818 Native_IDBDatabase_transactionStore_Callback(mthis, storeName, mode) native "IDB Database_transactionStore_Callback";
3194 3819
3195 Native_IDBDatabase_transactionStores_Callback(mthis, storeNames, mode) native "I DBDatabase_transactionStores_Callback"; 3820 Native_IDBDatabase_transactionStores_Callback(mthis, storeNames, mode) native "I DBDatabase_transactionStores_Callback";
3196 3821
3197 Native_IDBDatabase_addEventListener_Callback(mthis, type, listener, useCapture) native "IDBDatabase_addEventListener_Callback"; 3822 Native_IDBDatabase_addEventListener_Callback(mthis, type, listener, useCapture) native "IDBDatabase_addEventListener_Callback";
3198 3823
3199 Native_IDBDatabase_dispatchEvent_Callback(mthis, event) native "IDBDatabase_disp atchEvent_Callback"; 3824 Native_IDBDatabase_dispatchEvent_Callback(mthis, event) native "IDBDatabase_disp atchEvent_Callback";
3200 3825
3201 Native_IDBDatabase_removeEventListener_Callback(mthis, type, listener, useCaptur e) native "IDBDatabase_removeEventListener_Callback"; 3826 Native_IDBDatabase_removeEventListener_Callback(mthis, type, listener, useCaptur e) native "IDBDatabase_removeEventListener_Callback";
3202 3827
3203 Native_IDBFactory_cmp_Callback(mthis, first, second) native "IDBFactory_cmp_Call back"; 3828 Native_IDBFactory_cmp_Callback(mthis, first, second) native "IDBFactory_cmp_Call back";
3204 3829
3205 Native_IDBFactory_deleteDatabase_Callback(mthis, name) native "IDBFactory_delete Database_Callback"; 3830 Native_IDBFactory_deleteDatabase_Callback(mthis, name) native "IDBFactory_delete Database_Callback";
3206 3831
3832 // Generated overload resolver
3833 Native_IDBFactory__open(mthis, name, version) {
3834 if (version != null) {
3835 return Native_IDBFactory__open_1_Callback(mthis, name, version);
3836 }
3837 return Native_IDBFactory__open_2_Callback(mthis, name);
3838 }
3839
3207 Native_IDBFactory__open_1_Callback(mthis, name, version) native "IDBFactory__ope n_1_Callback"; 3840 Native_IDBFactory__open_1_Callback(mthis, name, version) native "IDBFactory__ope n_1_Callback";
3208 3841
3209 Native_IDBFactory__open_2_Callback(mthis, name) native "IDBFactory__open_2_Callb ack"; 3842 Native_IDBFactory__open_2_Callback(mthis, name) native "IDBFactory__open_2_Callb ack";
3210 3843
3211 Native_IDBFactory_webkitGetDatabaseNames_Callback(mthis) native "IDBFactory_webk itGetDatabaseNames_Callback"; 3844 Native_IDBFactory_webkitGetDatabaseNames_Callback(mthis) native "IDBFactory_webk itGetDatabaseNames_Callback";
3212 3845
3213 Native_IDBIndex_keyPath_Getter(mthis) native "IDBIndex_keyPath_Getter"; 3846 Native_IDBIndex_keyPath_Getter(mthis) native "IDBIndex_keyPath_Getter";
3214 3847
3215 Native_IDBIndex_multiEntry_Getter(mthis) native "IDBIndex_multiEntry_Getter"; 3848 Native_IDBIndex_multiEntry_Getter(mthis) native "IDBIndex_multiEntry_Getter";
3216 3849
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
3255 Native_IDBObjectStore_name_Getter(mthis) native "IDBObjectStore_name_Getter"; 3888 Native_IDBObjectStore_name_Getter(mthis) native "IDBObjectStore_name_Getter";
3256 3889
3257 Native_IDBObjectStore_transaction_Getter(mthis) native "IDBObjectStore_transacti on_Getter"; 3890 Native_IDBObjectStore_transaction_Getter(mthis) native "IDBObjectStore_transacti on_Getter";
3258 3891
3259 Native_IDBObjectStore_add_Callback(mthis, value, key) native "IDBObjectStore_add _Callback"; 3892 Native_IDBObjectStore_add_Callback(mthis, value, key) native "IDBObjectStore_add _Callback";
3260 3893
3261 Native_IDBObjectStore_clear_Callback(mthis) native "IDBObjectStore_clear_Callbac k"; 3894 Native_IDBObjectStore_clear_Callback(mthis) native "IDBObjectStore_clear_Callbac k";
3262 3895
3263 Native_IDBObjectStore_count_Callback(mthis, key) native "IDBObjectStore_count_Ca llback"; 3896 Native_IDBObjectStore_count_Callback(mthis, key) native "IDBObjectStore_count_Ca llback";
3264 3897
3898 // Generated overload resolver
3899 Native_IDBObjectStore__createIndex(mthis, name, keyPath, options) {
3900 if ((options is Map || options == null) && (keyPath is List<String> || keyPa th == null) && (name is String || name == null)) {
3901 return Native_IDBObjectStore__createIndex_1_Callback(mthis, name, keyPath, options);
3902 }
3903 if ((options is Map || options == null) && (keyPath is String || keyPath == null) && (name is String || name == null)) {
3904 return Native_IDBObjectStore__createIndex_2_Callback(mthis, name, keyPath, options);
3905 }
3906 throw new ArgumentError("Incorrect number or type of arguments");
3907 }
3908
3265 Native_IDBObjectStore__createIndex_1_Callback(mthis, name, keyPath, options) nat ive "IDBObjectStore__createIndex_1_Callback"; 3909 Native_IDBObjectStore__createIndex_1_Callback(mthis, name, keyPath, options) nat ive "IDBObjectStore__createIndex_1_Callback";
3266 3910
3267 Native_IDBObjectStore__createIndex_2_Callback(mthis, name, keyPath, options) nat ive "IDBObjectStore__createIndex_2_Callback"; 3911 Native_IDBObjectStore__createIndex_2_Callback(mthis, name, keyPath, options) nat ive "IDBObjectStore__createIndex_2_Callback";
3268 3912
3269 Native_IDBObjectStore_delete_Callback(mthis, key) native "IDBObjectStore_delete_ Callback"; 3913 Native_IDBObjectStore_delete_Callback(mthis, key) native "IDBObjectStore_delete_ Callback";
3270 3914
3271 Native_IDBObjectStore_deleteIndex_Callback(mthis, name) native "IDBObjectStore_d eleteIndex_Callback"; 3915 Native_IDBObjectStore_deleteIndex_Callback(mthis, name) native "IDBObjectStore_d eleteIndex_Callback";
3272 3916
3273 Native_IDBObjectStore_get_Callback(mthis, key) native "IDBObjectStore_get_Callba ck"; 3917 Native_IDBObjectStore_get_Callback(mthis, key) native "IDBObjectStore_get_Callba ck";
3274 3918
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
3455 Native_MIDIPort_addEventListener_Callback(mthis, type, listener, useCapture) nat ive "MIDIPort_addEventListener_Callback"; 4099 Native_MIDIPort_addEventListener_Callback(mthis, type, listener, useCapture) nat ive "MIDIPort_addEventListener_Callback";
3456 4100
3457 Native_MIDIPort_dispatchEvent_Callback(mthis, event) native "MIDIPort_dispatchEv ent_Callback"; 4101 Native_MIDIPort_dispatchEvent_Callback(mthis, event) native "MIDIPort_dispatchEv ent_Callback";
3458 4102
3459 Native_MIDIPort_removeEventListener_Callback(mthis, type, listener, useCapture) native "MIDIPort_removeEventListener_Callback"; 4103 Native_MIDIPort_removeEventListener_Callback(mthis, type, listener, useCapture) native "MIDIPort_removeEventListener_Callback";
3460 4104
3461 Native_MIDIMessageEvent_data_Getter(mthis) native "MIDIMessageEvent_data_Getter" ; 4105 Native_MIDIMessageEvent_data_Getter(mthis) native "MIDIMessageEvent_data_Getter" ;
3462 4106
3463 Native_MIDIMessageEvent_receivedTime_Getter(mthis) native "MIDIMessageEvent_rece ivedTime_Getter"; 4107 Native_MIDIMessageEvent_receivedTime_Getter(mthis) native "MIDIMessageEvent_rece ivedTime_Getter";
3464 4108
4109 // Generated overload resolver
4110 Native_MIDIOutput_send(mthis, data, timestamp) {
4111 if (timestamp != null) {
4112 Native_MIDIOutput__send_1_Callback(mthis, data, timestamp);
4113 return;
4114 }
4115 Native_MIDIOutput__send_2_Callback(mthis, data);
4116 return;
4117 }
4118
3465 Native_MIDIOutput__send_1_Callback(mthis, data, timestamp) native "MIDIOutput__s end_1_Callback"; 4119 Native_MIDIOutput__send_1_Callback(mthis, data, timestamp) native "MIDIOutput__s end_1_Callback";
3466 4120
3467 Native_MIDIOutput__send_2_Callback(mthis, data) native "MIDIOutput__send_2_Callb ack"; 4121 Native_MIDIOutput__send_2_Callback(mthis, data) native "MIDIOutput__send_2_Callb ack";
3468 4122
4123 // Generated overload resolver
4124 Native_MediaController_MediaController() {
4125 return Native_MediaController__create_1constructorCallback();
4126 }
4127
3469 Native_MediaController__create_1constructorCallback() native "MediaController__c reate_1constructorCallback"; 4128 Native_MediaController__create_1constructorCallback() native "MediaController__c reate_1constructorCallback";
3470 4129
3471 Native_MediaController_buffered_Getter(mthis) native "MediaController_buffered_G etter"; 4130 Native_MediaController_buffered_Getter(mthis) native "MediaController_buffered_G etter";
3472 4131
3473 Native_MediaController_currentTime_Getter(mthis) native "MediaController_current Time_Getter"; 4132 Native_MediaController_currentTime_Getter(mthis) native "MediaController_current Time_Getter";
3474 4133
3475 Native_MediaController_currentTime_Setter(mthis, value) native "MediaController_ currentTime_Setter"; 4134 Native_MediaController_currentTime_Setter(mthis, value) native "MediaController_ currentTime_Setter";
3476 4135
3477 Native_MediaController_defaultPlaybackRate_Getter(mthis) native "MediaController _defaultPlaybackRate_Getter"; 4136 Native_MediaController_defaultPlaybackRate_Getter(mthis) native "MediaController _defaultPlaybackRate_Getter";
3478 4137
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
3551 Native_MediaKeySession_release_Callback(mthis) native "MediaKeySession_release_C allback"; 4210 Native_MediaKeySession_release_Callback(mthis) native "MediaKeySession_release_C allback";
3552 4211
3553 Native_MediaKeySession_update_Callback(mthis, response) native "MediaKeySession_ update_Callback"; 4212 Native_MediaKeySession_update_Callback(mthis, response) native "MediaKeySession_ update_Callback";
3554 4213
3555 Native_MediaKeySession_addEventListener_Callback(mthis, type, listener, useCaptu re) native "MediaKeySession_addEventListener_Callback"; 4214 Native_MediaKeySession_addEventListener_Callback(mthis, type, listener, useCaptu re) native "MediaKeySession_addEventListener_Callback";
3556 4215
3557 Native_MediaKeySession_dispatchEvent_Callback(mthis, event) native "MediaKeySess ion_dispatchEvent_Callback"; 4216 Native_MediaKeySession_dispatchEvent_Callback(mthis, event) native "MediaKeySess ion_dispatchEvent_Callback";
3558 4217
3559 Native_MediaKeySession_removeEventListener_Callback(mthis, type, listener, useCa pture) native "MediaKeySession_removeEventListener_Callback"; 4218 Native_MediaKeySession_removeEventListener_Callback(mthis, type, listener, useCa pture) native "MediaKeySession_removeEventListener_Callback";
3560 4219
4220 // Generated overload resolver
4221 Native_MediaKeys_MediaKeys(keySystem) {
4222 return Native_MediaKeys__create_1constructorCallback(keySystem);
4223 }
4224
3561 Native_MediaKeys__create_1constructorCallback(keySystem) native "MediaKeys__crea te_1constructorCallback"; 4225 Native_MediaKeys__create_1constructorCallback(keySystem) native "MediaKeys__crea te_1constructorCallback";
3562 4226
3563 Native_MediaKeys_keySystem_Getter(mthis) native "MediaKeys_keySystem_Getter"; 4227 Native_MediaKeys_keySystem_Getter(mthis) native "MediaKeys_keySystem_Getter";
3564 4228
3565 Native_MediaKeys_createSession_Callback(mthis, type, initData) native "MediaKeys _createSession_Callback"; 4229 Native_MediaKeys_createSession_Callback(mthis, type, initData) native "MediaKeys _createSession_Callback";
3566 4230
3567 Native_MediaList_length_Getter(mthis) native "MediaList_length_Getter"; 4231 Native_MediaList_length_Getter(mthis) native "MediaList_length_Getter";
3568 4232
3569 Native_MediaList_mediaText_Getter(mthis) native "MediaList_mediaText_Getter"; 4233 Native_MediaList_mediaText_Getter(mthis) native "MediaList_mediaText_Getter";
3570 4234
3571 Native_MediaList_mediaText_Setter(mthis, value) native "MediaList_mediaText_Sett er"; 4235 Native_MediaList_mediaText_Setter(mthis, value) native "MediaList_mediaText_Sett er";
3572 4236
3573 Native_MediaList_appendMedium_Callback(mthis, newMedium) native "MediaList_appen dMedium_Callback"; 4237 Native_MediaList_appendMedium_Callback(mthis, newMedium) native "MediaList_appen dMedium_Callback";
3574 4238
3575 Native_MediaList_deleteMedium_Callback(mthis, oldMedium) native "MediaList_delet eMedium_Callback"; 4239 Native_MediaList_deleteMedium_Callback(mthis, oldMedium) native "MediaList_delet eMedium_Callback";
3576 4240
3577 Native_MediaList_item_Callback(mthis, index) native "MediaList_item_Callback"; 4241 Native_MediaList_item_Callback(mthis, index) native "MediaList_item_Callback";
3578 4242
3579 Native_MediaQueryList_matches_Getter(mthis) native "MediaQueryList_matches_Gette r"; 4243 Native_MediaQueryList_matches_Getter(mthis) native "MediaQueryList_matches_Gette r";
3580 4244
3581 Native_MediaQueryList_media_Getter(mthis) native "MediaQueryList_media_Getter"; 4245 Native_MediaQueryList_media_Getter(mthis) native "MediaQueryList_media_Getter";
3582 4246
4247 // Generated overload resolver
4248 Native_MediaSource_MediaSource() {
4249 return Native_MediaSource__create_1constructorCallback();
4250 }
4251
3583 Native_MediaSource__create_1constructorCallback() native "MediaSource__create_1c onstructorCallback"; 4252 Native_MediaSource__create_1constructorCallback() native "MediaSource__create_1c onstructorCallback";
3584 4253
3585 Native_MediaSource_activeSourceBuffers_Getter(mthis) native "MediaSource_activeS ourceBuffers_Getter"; 4254 Native_MediaSource_activeSourceBuffers_Getter(mthis) native "MediaSource_activeS ourceBuffers_Getter";
3586 4255
3587 Native_MediaSource_duration_Getter(mthis) native "MediaSource_duration_Getter"; 4256 Native_MediaSource_duration_Getter(mthis) native "MediaSource_duration_Getter";
3588 4257
3589 Native_MediaSource_duration_Setter(mthis, value) native "MediaSource_duration_Se tter"; 4258 Native_MediaSource_duration_Setter(mthis, value) native "MediaSource_duration_Se tter";
3590 4259
3591 Native_MediaSource_readyState_Getter(mthis) native "MediaSource_readyState_Gette r"; 4260 Native_MediaSource_readyState_Getter(mthis) native "MediaSource_readyState_Gette r";
3592 4261
3593 Native_MediaSource_sourceBuffers_Getter(mthis) native "MediaSource_sourceBuffers _Getter"; 4262 Native_MediaSource_sourceBuffers_Getter(mthis) native "MediaSource_sourceBuffers _Getter";
3594 4263
3595 Native_MediaSource_addSourceBuffer_Callback(mthis, type) native "MediaSource_add SourceBuffer_Callback"; 4264 Native_MediaSource_addSourceBuffer_Callback(mthis, type) native "MediaSource_add SourceBuffer_Callback";
3596 4265
4266 // Generated overload resolver
4267 Native_MediaSource_endOfStream(mthis, error) {
4268 if (error != null) {
4269 Native_MediaSource__endOfStream_1_Callback(mthis, error);
4270 return;
4271 }
4272 Native_MediaSource__endOfStream_2_Callback(mthis);
4273 return;
4274 }
4275
3597 Native_MediaSource__endOfStream_1_Callback(mthis, error) native "MediaSource__en dOfStream_1_Callback"; 4276 Native_MediaSource__endOfStream_1_Callback(mthis, error) native "MediaSource__en dOfStream_1_Callback";
3598 4277
3599 Native_MediaSource__endOfStream_2_Callback(mthis) native "MediaSource__endOfStre am_2_Callback"; 4278 Native_MediaSource__endOfStream_2_Callback(mthis) native "MediaSource__endOfStre am_2_Callback";
3600 4279
3601 Native_MediaSource_isTypeSupported_Callback(type) native "MediaSource_isTypeSupp orted_Callback"; 4280 Native_MediaSource_isTypeSupported_Callback(type) native "MediaSource_isTypeSupp orted_Callback";
3602 4281
3603 Native_MediaSource_removeSourceBuffer_Callback(mthis, buffer) native "MediaSourc e_removeSourceBuffer_Callback"; 4282 Native_MediaSource_removeSourceBuffer_Callback(mthis, buffer) native "MediaSourc e_removeSourceBuffer_Callback";
3604 4283
3605 Native_MediaSource_addEventListener_Callback(mthis, type, listener, useCapture) native "MediaSource_addEventListener_Callback"; 4284 Native_MediaSource_addEventListener_Callback(mthis, type, listener, useCapture) native "MediaSource_addEventListener_Callback";
3606 4285
3607 Native_MediaSource_dispatchEvent_Callback(mthis, event) native "MediaSource_disp atchEvent_Callback"; 4286 Native_MediaSource_dispatchEvent_Callback(mthis, event) native "MediaSource_disp atchEvent_Callback";
3608 4287
3609 Native_MediaSource_removeEventListener_Callback(mthis, type, listener, useCaptur e) native "MediaSource_removeEventListener_Callback"; 4288 Native_MediaSource_removeEventListener_Callback(mthis, type, listener, useCaptur e) native "MediaSource_removeEventListener_Callback";
3610 4289
4290 // Generated overload resolver
4291 Native_MediaStream_MediaStream(stream_OR_tracks) {
4292 if (stream_OR_tracks == null) {
4293 return Native_MediaStream__create_1constructorCallback();
4294 }
4295 if ((stream_OR_tracks is MediaStream || stream_OR_tracks == null)) {
4296 return Native_MediaStream__create_2constructorCallback(stream_OR_tracks);
4297 }
4298 if ((stream_OR_tracks is List<MediaStreamTrack> || stream_OR_tracks == null) ) {
4299 return Native_MediaStream__create_3constructorCallback(stream_OR_tracks);
4300 }
4301 throw new ArgumentError("Incorrect number or type of arguments");
4302 }
4303
3611 Native_MediaStream__create_1constructorCallback() native "MediaStream__create_1c onstructorCallback"; 4304 Native_MediaStream__create_1constructorCallback() native "MediaStream__create_1c onstructorCallback";
3612 4305
3613 Native_MediaStream__create_2constructorCallback(stream_OR_tracks) native "MediaS tream__create_2constructorCallback"; 4306 Native_MediaStream__create_2constructorCallback(stream_OR_tracks) native "MediaS tream__create_2constructorCallback";
3614 4307
3615 Native_MediaStream__create_3constructorCallback(stream_OR_tracks) native "MediaS tream__create_3constructorCallback"; 4308 Native_MediaStream__create_3constructorCallback(stream_OR_tracks) native "MediaS tream__create_3constructorCallback";
3616 4309
3617 Native_MediaStream_ended_Getter(mthis) native "MediaStream_ended_Getter"; 4310 Native_MediaStream_ended_Getter(mthis) native "MediaStream_ended_Getter";
3618 4311
3619 Native_MediaStream_id_Getter(mthis) native "MediaStream_id_Getter"; 4312 Native_MediaStream_id_Getter(mthis) native "MediaStream_id_Getter";
3620 4313
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
3891 Native_NodeIterator_nextNode_Callback(mthis) native "NodeIterator_nextNode_Callb ack"; 4584 Native_NodeIterator_nextNode_Callback(mthis) native "NodeIterator_nextNode_Callb ack";
3892 4585
3893 Native_NodeIterator_previousNode_Callback(mthis) native "NodeIterator_previousNo de_Callback"; 4586 Native_NodeIterator_previousNode_Callback(mthis) native "NodeIterator_previousNo de_Callback";
3894 4587
3895 Native_NodeList_length_Getter(mthis) native "NodeList_length_Getter"; 4588 Native_NodeList_length_Getter(mthis) native "NodeList_length_Getter";
3896 4589
3897 Native_NodeList_NativeIndexed_Getter(mthis, index) native "NodeList_item_Callbac k"; 4590 Native_NodeList_NativeIndexed_Getter(mthis, index) native "NodeList_item_Callbac k";
3898 4591
3899 Native_NodeList_item_Callback(mthis, index) native "NodeList_item_Callback"; 4592 Native_NodeList_item_Callback(mthis, index) native "NodeList_item_Callback";
3900 4593
4594 // Generated overload resolver
4595 Native_Notification_Notification(title, options) {
4596 return Native_Notification__create_1constructorCallback(title, options);
4597 }
4598
3901 Native_Notification__create_1constructorCallback(title, options) native "Notific ation__create_1constructorCallback"; 4599 Native_Notification__create_1constructorCallback(title, options) native "Notific ation__create_1constructorCallback";
3902 4600
3903 Native_Notification_body_Getter(mthis) native "Notification_body_Getter"; 4601 Native_Notification_body_Getter(mthis) native "Notification_body_Getter";
3904 4602
3905 Native_Notification_dir_Getter(mthis) native "Notification_dir_Getter"; 4603 Native_Notification_dir_Getter(mthis) native "Notification_dir_Getter";
3906 4604
3907 Native_Notification_icon_Getter(mthis) native "Notification_icon_Getter"; 4605 Native_Notification_icon_Getter(mthis) native "Notification_icon_Getter";
3908 4606
3909 Native_Notification_lang_Getter(mthis) native "Notification_lang_Getter"; 4607 Native_Notification_lang_Getter(mthis) native "Notification_lang_Getter";
3910 4608
(...skipping 16 matching lines...) Expand all
3927 Native_OESVertexArrayObject_bindVertexArrayOES_Callback(mthis, arrayObject) nati ve "OESVertexArrayObject_bindVertexArrayOES_Callback"; 4625 Native_OESVertexArrayObject_bindVertexArrayOES_Callback(mthis, arrayObject) nati ve "OESVertexArrayObject_bindVertexArrayOES_Callback";
3928 4626
3929 Native_OESVertexArrayObject_createVertexArrayOES_Callback(mthis) native "OESVert exArrayObject_createVertexArrayOES_Callback"; 4627 Native_OESVertexArrayObject_createVertexArrayOES_Callback(mthis) native "OESVert exArrayObject_createVertexArrayOES_Callback";
3930 4628
3931 Native_OESVertexArrayObject_deleteVertexArrayOES_Callback(mthis, arrayObject) na tive "OESVertexArrayObject_deleteVertexArrayOES_Callback"; 4629 Native_OESVertexArrayObject_deleteVertexArrayOES_Callback(mthis, arrayObject) na tive "OESVertexArrayObject_deleteVertexArrayOES_Callback";
3932 4630
3933 Native_OESVertexArrayObject_isVertexArrayOES_Callback(mthis, arrayObject) native "OESVertexArrayObject_isVertexArrayOES_Callback"; 4631 Native_OESVertexArrayObject_isVertexArrayOES_Callback(mthis, arrayObject) native "OESVertexArrayObject_isVertexArrayOES_Callback";
3934 4632
3935 Native_OfflineAudioCompletionEvent_renderedBuffer_Getter(mthis) native "OfflineA udioCompletionEvent_renderedBuffer_Getter"; 4633 Native_OfflineAudioCompletionEvent_renderedBuffer_Getter(mthis) native "OfflineA udioCompletionEvent_renderedBuffer_Getter";
3936 4634
4635 // Generated overload resolver
4636 Native_OfflineAudioContext_OfflineAudioContext(numberOfChannels, numberOfFrames, sampleRate) {
4637 return Native_OfflineAudioContext__create_1constructorCallback(numberOfChann els, numberOfFrames, sampleRate);
4638 }
4639
3937 Native_OfflineAudioContext__create_1constructorCallback(numberOfChannels, number OfFrames, sampleRate) native "OfflineAudioContext__create_1constructorCallback"; 4640 Native_OfflineAudioContext__create_1constructorCallback(numberOfChannels, number OfFrames, sampleRate) native "OfflineAudioContext__create_1constructorCallback";
3938 4641
3939 Native_OscillatorNode_detune_Getter(mthis) native "OscillatorNode_detune_Getter" ; 4642 Native_OscillatorNode_detune_Getter(mthis) native "OscillatorNode_detune_Getter" ;
3940 4643
3941 Native_OscillatorNode_frequency_Getter(mthis) native "OscillatorNode_frequency_G etter"; 4644 Native_OscillatorNode_frequency_Getter(mthis) native "OscillatorNode_frequency_G etter";
3942 4645
3943 Native_OscillatorNode_playbackState_Getter(mthis) native "OscillatorNode_playbac kState_Getter"; 4646 Native_OscillatorNode_playbackState_Getter(mthis) native "OscillatorNode_playbac kState_Getter";
3944 4647
3945 Native_OscillatorNode_type_Getter(mthis) native "OscillatorNode_type_Getter"; 4648 Native_OscillatorNode_type_Getter(mthis) native "OscillatorNode_type_Getter";
3946 4649
3947 Native_OscillatorNode_type_Setter(mthis, value) native "OscillatorNode_type_Sett er"; 4650 Native_OscillatorNode_type_Setter(mthis, value) native "OscillatorNode_type_Sett er";
3948 4651
3949 Native_OscillatorNode_noteOff_Callback(mthis, when) native "OscillatorNode_noteO ff_Callback"; 4652 Native_OscillatorNode_noteOff_Callback(mthis, when) native "OscillatorNode_noteO ff_Callback";
3950 4653
3951 Native_OscillatorNode_noteOn_Callback(mthis, when) native "OscillatorNode_noteOn _Callback"; 4654 Native_OscillatorNode_noteOn_Callback(mthis, when) native "OscillatorNode_noteOn _Callback";
3952 4655
3953 Native_OscillatorNode_setPeriodicWave_Callback(mthis, periodicWave) native "Osci llatorNode_setPeriodicWave_Callback"; 4656 Native_OscillatorNode_setPeriodicWave_Callback(mthis, periodicWave) native "Osci llatorNode_setPeriodicWave_Callback";
3954 4657
4658 // Generated overload resolver
4659 Native_OscillatorNode_start(mthis, when) {
4660 if (when != null) {
4661 Native_OscillatorNode__start_1_Callback(mthis, when);
4662 return;
4663 }
4664 Native_OscillatorNode__start_2_Callback(mthis);
4665 return;
4666 }
4667
3955 Native_OscillatorNode__start_1_Callback(mthis, when) native "OscillatorNode__sta rt_1_Callback"; 4668 Native_OscillatorNode__start_1_Callback(mthis, when) native "OscillatorNode__sta rt_1_Callback";
3956 4669
3957 Native_OscillatorNode__start_2_Callback(mthis) native "OscillatorNode__start_2_C allback"; 4670 Native_OscillatorNode__start_2_Callback(mthis) native "OscillatorNode__start_2_C allback";
3958 4671
4672 // Generated overload resolver
4673 Native_OscillatorNode_stop(mthis, when) {
4674 if (when != null) {
4675 Native_OscillatorNode__stop_1_Callback(mthis, when);
4676 return;
4677 }
4678 Native_OscillatorNode__stop_2_Callback(mthis);
4679 return;
4680 }
4681
3959 Native_OscillatorNode__stop_1_Callback(mthis, when) native "OscillatorNode__stop _1_Callback"; 4682 Native_OscillatorNode__stop_1_Callback(mthis, when) native "OscillatorNode__stop _1_Callback";
3960 4683
3961 Native_OscillatorNode__stop_2_Callback(mthis) native "OscillatorNode__stop_2_Cal lback"; 4684 Native_OscillatorNode__stop_2_Callback(mthis) native "OscillatorNode__stop_2_Cal lback";
3962 4685
3963 Native_OverflowEvent_horizontalOverflow_Getter(mthis) native "OverflowEvent_hori zontalOverflow_Getter"; 4686 Native_OverflowEvent_horizontalOverflow_Getter(mthis) native "OverflowEvent_hori zontalOverflow_Getter";
3964 4687
3965 Native_OverflowEvent_orient_Getter(mthis) native "OverflowEvent_orient_Getter"; 4688 Native_OverflowEvent_orient_Getter(mthis) native "OverflowEvent_orient_Getter";
3966 4689
3967 Native_OverflowEvent_verticalOverflow_Getter(mthis) native "OverflowEvent_vertic alOverflow_Getter"; 4690 Native_OverflowEvent_verticalOverflow_Getter(mthis) native "OverflowEvent_vertic alOverflow_Getter";
3968 4691
(...skipping 30 matching lines...) Expand all
3999 Native_PannerNode_rolloffFactor_Getter(mthis) native "PannerNode_rolloffFactor_G etter"; 4722 Native_PannerNode_rolloffFactor_Getter(mthis) native "PannerNode_rolloffFactor_G etter";
4000 4723
4001 Native_PannerNode_rolloffFactor_Setter(mthis, value) native "PannerNode_rolloffF actor_Setter"; 4724 Native_PannerNode_rolloffFactor_Setter(mthis, value) native "PannerNode_rolloffF actor_Setter";
4002 4725
4003 Native_PannerNode_setOrientation_Callback(mthis, x, y, z) native "PannerNode_set Orientation_Callback"; 4726 Native_PannerNode_setOrientation_Callback(mthis, x, y, z) native "PannerNode_set Orientation_Callback";
4004 4727
4005 Native_PannerNode_setPosition_Callback(mthis, x, y, z) native "PannerNode_setPos ition_Callback"; 4728 Native_PannerNode_setPosition_Callback(mthis, x, y, z) native "PannerNode_setPos ition_Callback";
4006 4729
4007 Native_PannerNode_setVelocity_Callback(mthis, x, y, z) native "PannerNode_setVel ocity_Callback"; 4730 Native_PannerNode_setVelocity_Callback(mthis, x, y, z) native "PannerNode_setVel ocity_Callback";
4008 4731
4732 // Generated overload resolver
4733 Native_Path_Path(path_OR_text) {
4734 if (path_OR_text == null) {
4735 return Native_Path__create_1constructorCallback();
4736 }
4737 if ((path_OR_text is Path || path_OR_text == null)) {
4738 return Native_Path__create_2constructorCallback(path_OR_text);
4739 }
4740 if ((path_OR_text is String || path_OR_text == null)) {
4741 return Native_Path__create_3constructorCallback(path_OR_text);
4742 }
4743 throw new ArgumentError("Incorrect number or type of arguments");
4744 }
4745
4009 Native_Path__create_1constructorCallback() native "Path__create_1constructorCall back"; 4746 Native_Path__create_1constructorCallback() native "Path__create_1constructorCall back";
4010 4747
4011 Native_Path__create_2constructorCallback(path_OR_text) native "Path__create_2con structorCallback"; 4748 Native_Path__create_2constructorCallback(path_OR_text) native "Path__create_2con structorCallback";
4012 4749
4013 Native_Path__create_3constructorCallback(path_OR_text) native "Path__create_3con structorCallback"; 4750 Native_Path__create_3constructorCallback(path_OR_text) native "Path__create_3con structorCallback";
4014 4751
4015 Native_Path_arc_Callback(mthis, x, y, radius, startAngle, endAngle, anticlockwis e) native "Path_arc_Callback"; 4752 Native_Path_arc_Callback(mthis, x, y, radius, startAngle, endAngle, anticlockwis e) native "Path_arc_Callback";
4016 4753
4017 Native_Path_arcTo_Callback(mthis, x1, y1, x2, y2, radius) native "Path_arcTo_Cal lback"; 4754 Native_Path_arcTo_Callback(mthis, x1, y1, x2, y2, radius) native "Path_arcTo_Cal lback";
4018 4755
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
4215 Native_RTCDTMFSender_canInsertDTMF_Getter(mthis) native "RTCDTMFSender_canInsert DTMF_Getter"; 4952 Native_RTCDTMFSender_canInsertDTMF_Getter(mthis) native "RTCDTMFSender_canInsert DTMF_Getter";
4216 4953
4217 Native_RTCDTMFSender_duration_Getter(mthis) native "RTCDTMFSender_duration_Gette r"; 4954 Native_RTCDTMFSender_duration_Getter(mthis) native "RTCDTMFSender_duration_Gette r";
4218 4955
4219 Native_RTCDTMFSender_interToneGap_Getter(mthis) native "RTCDTMFSender_interToneG ap_Getter"; 4956 Native_RTCDTMFSender_interToneGap_Getter(mthis) native "RTCDTMFSender_interToneG ap_Getter";
4220 4957
4221 Native_RTCDTMFSender_toneBuffer_Getter(mthis) native "RTCDTMFSender_toneBuffer_G etter"; 4958 Native_RTCDTMFSender_toneBuffer_Getter(mthis) native "RTCDTMFSender_toneBuffer_G etter";
4222 4959
4223 Native_RTCDTMFSender_track_Getter(mthis) native "RTCDTMFSender_track_Getter"; 4960 Native_RTCDTMFSender_track_Getter(mthis) native "RTCDTMFSender_track_Getter";
4224 4961
4962 // Generated overload resolver
4963 Native_RTCDTMFSender_insertDtmf(mthis, tones, duration, interToneGap) {
4964 if (interToneGap != null) {
4965 Native_RTCDTMFSender__insertDTMF_1_Callback(mthis, tones, duration, interT oneGap);
4966 return;
4967 }
4968 if (duration != null) {
4969 Native_RTCDTMFSender__insertDTMF_2_Callback(mthis, tones, duration);
4970 return;
4971 }
4972 Native_RTCDTMFSender__insertDTMF_3_Callback(mthis, tones);
4973 return;
4974 }
4975
4225 Native_RTCDTMFSender__insertDTMF_1_Callback(mthis, tones, duration, interToneGap ) native "RTCDTMFSender__insertDTMF_1_Callback"; 4976 Native_RTCDTMFSender__insertDTMF_1_Callback(mthis, tones, duration, interToneGap ) native "RTCDTMFSender__insertDTMF_1_Callback";
4226 4977
4227 Native_RTCDTMFSender__insertDTMF_2_Callback(mthis, tones, duration) native "RTCD TMFSender__insertDTMF_2_Callback"; 4978 Native_RTCDTMFSender__insertDTMF_2_Callback(mthis, tones, duration) native "RTCD TMFSender__insertDTMF_2_Callback";
4228 4979
4229 Native_RTCDTMFSender__insertDTMF_3_Callback(mthis, tones) native "RTCDTMFSender_ _insertDTMF_3_Callback"; 4980 Native_RTCDTMFSender__insertDTMF_3_Callback(mthis, tones) native "RTCDTMFSender_ _insertDTMF_3_Callback";
4230 4981
4231 Native_RTCDTMFSender_addEventListener_Callback(mthis, type, listener, useCapture ) native "RTCDTMFSender_addEventListener_Callback"; 4982 Native_RTCDTMFSender_addEventListener_Callback(mthis, type, listener, useCapture ) native "RTCDTMFSender_addEventListener_Callback";
4232 4983
4233 Native_RTCDTMFSender_dispatchEvent_Callback(mthis, event) native "RTCDTMFSender_ dispatchEvent_Callback"; 4984 Native_RTCDTMFSender_dispatchEvent_Callback(mthis, event) native "RTCDTMFSender_ dispatchEvent_Callback";
4234 4985
(...skipping 20 matching lines...) Expand all
4255 Native_RTCDataChannel_ordered_Getter(mthis) native "RTCDataChannel_ordered_Gette r"; 5006 Native_RTCDataChannel_ordered_Getter(mthis) native "RTCDataChannel_ordered_Gette r";
4256 5007
4257 Native_RTCDataChannel_protocol_Getter(mthis) native "RTCDataChannel_protocol_Get ter"; 5008 Native_RTCDataChannel_protocol_Getter(mthis) native "RTCDataChannel_protocol_Get ter";
4258 5009
4259 Native_RTCDataChannel_readyState_Getter(mthis) native "RTCDataChannel_readyState _Getter"; 5010 Native_RTCDataChannel_readyState_Getter(mthis) native "RTCDataChannel_readyState _Getter";
4260 5011
4261 Native_RTCDataChannel_reliable_Getter(mthis) native "RTCDataChannel_reliable_Get ter"; 5012 Native_RTCDataChannel_reliable_Getter(mthis) native "RTCDataChannel_reliable_Get ter";
4262 5013
4263 Native_RTCDataChannel_close_Callback(mthis) native "RTCDataChannel_close_Callbac k"; 5014 Native_RTCDataChannel_close_Callback(mthis) native "RTCDataChannel_close_Callbac k";
4264 5015
5016 // Generated overload resolver
5017 Native_RTCDataChannel_send(mthis, data) {
5018 if ((data is TypedData || data == null)) {
5019 Native_RTCDataChannel__send_1_Callback(mthis, data);
5020 return;
5021 }
5022 if ((data is ByteBuffer || data == null)) {
5023 Native_RTCDataChannel__send_2_Callback(mthis, data);
5024 return;
5025 }
5026 if ((data is Blob || data == null)) {
5027 Native_RTCDataChannel__send_3_Callback(mthis, data);
5028 return;
5029 }
5030 if ((data is String || data == null)) {
5031 Native_RTCDataChannel__send_4_Callback(mthis, data);
5032 return;
5033 }
5034 throw new ArgumentError("Incorrect number or type of arguments");
5035 }
5036
4265 Native_RTCDataChannel__send_1_Callback(mthis, data) native "RTCDataChannel__send _1_Callback"; 5037 Native_RTCDataChannel__send_1_Callback(mthis, data) native "RTCDataChannel__send _1_Callback";
4266 5038
4267 Native_RTCDataChannel__send_2_Callback(mthis, data) native "RTCDataChannel__send _2_Callback"; 5039 Native_RTCDataChannel__send_2_Callback(mthis, data) native "RTCDataChannel__send _2_Callback";
4268 5040
4269 Native_RTCDataChannel__send_3_Callback(mthis, data) native "RTCDataChannel__send _3_Callback"; 5041 Native_RTCDataChannel__send_3_Callback(mthis, data) native "RTCDataChannel__send _3_Callback";
4270 5042
4271 Native_RTCDataChannel__send_4_Callback(mthis, data) native "RTCDataChannel__send _4_Callback"; 5043 Native_RTCDataChannel__send_4_Callback(mthis, data) native "RTCDataChannel__send _4_Callback";
4272 5044
4273 Native_RTCDataChannel_sendBlob_Callback(mthis, data) native "RTCDataChannel_send Blob_Callback"; 5045 Native_RTCDataChannel_sendBlob_Callback(mthis, data) native "RTCDataChannel_send Blob_Callback";
4274 5046
4275 Native_RTCDataChannel_sendByteBuffer_Callback(mthis, data) native "RTCDataChanne l_sendByteBuffer_Callback"; 5047 Native_RTCDataChannel_sendByteBuffer_Callback(mthis, data) native "RTCDataChanne l_sendByteBuffer_Callback";
4276 5048
4277 Native_RTCDataChannel_sendString_Callback(mthis, data) native "RTCDataChannel_se ndString_Callback"; 5049 Native_RTCDataChannel_sendString_Callback(mthis, data) native "RTCDataChannel_se ndString_Callback";
4278 5050
4279 Native_RTCDataChannel_sendTypedData_Callback(mthis, data) native "RTCDataChannel _sendTypedData_Callback"; 5051 Native_RTCDataChannel_sendTypedData_Callback(mthis, data) native "RTCDataChannel _sendTypedData_Callback";
4280 5052
4281 Native_RTCDataChannel_addEventListener_Callback(mthis, type, listener, useCaptur e) native "RTCDataChannel_addEventListener_Callback"; 5053 Native_RTCDataChannel_addEventListener_Callback(mthis, type, listener, useCaptur e) native "RTCDataChannel_addEventListener_Callback";
4282 5054
4283 Native_RTCDataChannel_dispatchEvent_Callback(mthis, event) native "RTCDataChanne l_dispatchEvent_Callback"; 5055 Native_RTCDataChannel_dispatchEvent_Callback(mthis, event) native "RTCDataChanne l_dispatchEvent_Callback";
4284 5056
4285 Native_RTCDataChannel_removeEventListener_Callback(mthis, type, listener, useCap ture) native "RTCDataChannel_removeEventListener_Callback"; 5057 Native_RTCDataChannel_removeEventListener_Callback(mthis, type, listener, useCap ture) native "RTCDataChannel_removeEventListener_Callback";
4286 5058
4287 Native_RTCDataChannelEvent_channel_Getter(mthis) native "RTCDataChannelEvent_cha nnel_Getter"; 5059 Native_RTCDataChannelEvent_channel_Getter(mthis) native "RTCDataChannelEvent_cha nnel_Getter";
4288 5060
5061 // Generated overload resolver
5062 Native_RTCIceCandidate_RtcIceCandidate(dictionary) {
5063 return Native_RTCIceCandidate__create_1constructorCallback(dictionary);
5064 }
5065
4289 Native_RTCIceCandidate__create_1constructorCallback(dictionary) native "RTCIceCa ndidate__create_1constructorCallback"; 5066 Native_RTCIceCandidate__create_1constructorCallback(dictionary) native "RTCIceCa ndidate__create_1constructorCallback";
4290 5067
4291 Native_RTCIceCandidate_candidate_Getter(mthis) native "RTCIceCandidate_candidate _Getter"; 5068 Native_RTCIceCandidate_candidate_Getter(mthis) native "RTCIceCandidate_candidate _Getter";
4292 5069
4293 Native_RTCIceCandidate_sdpMLineIndex_Getter(mthis) native "RTCIceCandidate_sdpML ineIndex_Getter"; 5070 Native_RTCIceCandidate_sdpMLineIndex_Getter(mthis) native "RTCIceCandidate_sdpML ineIndex_Getter";
4294 5071
4295 Native_RTCIceCandidate_sdpMid_Getter(mthis) native "RTCIceCandidate_sdpMid_Gette r"; 5072 Native_RTCIceCandidate_sdpMid_Getter(mthis) native "RTCIceCandidate_sdpMid_Gette r";
4296 5073
4297 Native_RTCIceCandidateEvent_candidate_Getter(mthis) native "RTCIceCandidateEvent _candidate_Getter"; 5074 Native_RTCIceCandidateEvent_candidate_Getter(mthis) native "RTCIceCandidateEvent _candidate_Getter";
4298 5075
5076 // Generated overload resolver
5077 Native_RTCPeerConnection_RtcPeerConnection(rtcIceServers, mediaConstraints) {
5078 return Native_RTCPeerConnection__create_1constructorCallback(rtcIceServers, mediaConstraints);
5079 }
5080
4299 Native_RTCPeerConnection__create_1constructorCallback(rtcIceServers, mediaConstr aints) native "RTCPeerConnection__create_1constructorCallback"; 5081 Native_RTCPeerConnection__create_1constructorCallback(rtcIceServers, mediaConstr aints) native "RTCPeerConnection__create_1constructorCallback";
4300 5082
4301 Native_RTCPeerConnection_iceConnectionState_Getter(mthis) native "RTCPeerConnect ion_iceConnectionState_Getter"; 5083 Native_RTCPeerConnection_iceConnectionState_Getter(mthis) native "RTCPeerConnect ion_iceConnectionState_Getter";
4302 5084
4303 Native_RTCPeerConnection_iceGatheringState_Getter(mthis) native "RTCPeerConnecti on_iceGatheringState_Getter"; 5085 Native_RTCPeerConnection_iceGatheringState_Getter(mthis) native "RTCPeerConnecti on_iceGatheringState_Getter";
4304 5086
4305 Native_RTCPeerConnection_localDescription_Getter(mthis) native "RTCPeerConnectio n_localDescription_Getter"; 5087 Native_RTCPeerConnection_localDescription_Getter(mthis) native "RTCPeerConnectio n_localDescription_Getter";
4306 5088
4307 Native_RTCPeerConnection_remoteDescription_Getter(mthis) native "RTCPeerConnecti on_remoteDescription_Getter"; 5089 Native_RTCPeerConnection_remoteDescription_Getter(mthis) native "RTCPeerConnecti on_remoteDescription_Getter";
4308 5090
(...skipping 28 matching lines...) Expand all
4337 Native_RTCPeerConnection_setRemoteDescription_Callback(mthis, description, succe ssCallback, failureCallback) native "RTCPeerConnection_setRemoteDescription_Call back"; 5119 Native_RTCPeerConnection_setRemoteDescription_Callback(mthis, description, succe ssCallback, failureCallback) native "RTCPeerConnection_setRemoteDescription_Call back";
4338 5120
4339 Native_RTCPeerConnection_updateIce_Callback(mthis, configuration, mediaConstrain ts) native "RTCPeerConnection_updateIce_Callback"; 5121 Native_RTCPeerConnection_updateIce_Callback(mthis, configuration, mediaConstrain ts) native "RTCPeerConnection_updateIce_Callback";
4340 5122
4341 Native_RTCPeerConnection_addEventListener_Callback(mthis, type, listener, useCap ture) native "RTCPeerConnection_addEventListener_Callback"; 5123 Native_RTCPeerConnection_addEventListener_Callback(mthis, type, listener, useCap ture) native "RTCPeerConnection_addEventListener_Callback";
4342 5124
4343 Native_RTCPeerConnection_dispatchEvent_Callback(mthis, event) native "RTCPeerCon nection_dispatchEvent_Callback"; 5125 Native_RTCPeerConnection_dispatchEvent_Callback(mthis, event) native "RTCPeerCon nection_dispatchEvent_Callback";
4344 5126
4345 Native_RTCPeerConnection_removeEventListener_Callback(mthis, type, listener, use Capture) native "RTCPeerConnection_removeEventListener_Callback"; 5127 Native_RTCPeerConnection_removeEventListener_Callback(mthis, type, listener, use Capture) native "RTCPeerConnection_removeEventListener_Callback";
4346 5128
5129 // Generated overload resolver
5130 Native_RTCSessionDescription_RtcSessionDescription(descriptionInitDict) {
5131 return Native_RTCSessionDescription__create_1constructorCallback(description InitDict);
5132 }
5133
4347 Native_RTCSessionDescription__create_1constructorCallback(descriptionInitDict) n ative "RTCSessionDescription__create_1constructorCallback"; 5134 Native_RTCSessionDescription__create_1constructorCallback(descriptionInitDict) n ative "RTCSessionDescription__create_1constructorCallback";
4348 5135
4349 Native_RTCSessionDescription_sdp_Getter(mthis) native "RTCSessionDescription_sdp _Getter"; 5136 Native_RTCSessionDescription_sdp_Getter(mthis) native "RTCSessionDescription_sdp _Getter";
4350 5137
4351 Native_RTCSessionDescription_sdp_Setter(mthis, value) native "RTCSessionDescript ion_sdp_Setter"; 5138 Native_RTCSessionDescription_sdp_Setter(mthis, value) native "RTCSessionDescript ion_sdp_Setter";
4352 5139
4353 Native_RTCSessionDescription_type_Getter(mthis) native "RTCSessionDescription_ty pe_Getter"; 5140 Native_RTCSessionDescription_type_Getter(mthis) native "RTCSessionDescription_ty pe_Getter";
4354 5141
4355 Native_RTCSessionDescription_type_Setter(mthis, value) native "RTCSessionDescrip tion_type_Setter"; 5142 Native_RTCSessionDescription_type_Setter(mthis, value) native "RTCSessionDescrip tion_type_Setter";
4356 5143
(...skipping 1544 matching lines...) Expand 10 before | Expand all | Expand 10 after
5901 Native_Screen_colorDepth_Getter(mthis) native "Screen_colorDepth_Getter"; 6688 Native_Screen_colorDepth_Getter(mthis) native "Screen_colorDepth_Getter";
5902 6689
5903 Native_Screen_height_Getter(mthis) native "Screen_height_Getter"; 6690 Native_Screen_height_Getter(mthis) native "Screen_height_Getter";
5904 6691
5905 Native_Screen_orientation_Getter(mthis) native "Screen_orientation_Getter"; 6692 Native_Screen_orientation_Getter(mthis) native "Screen_orientation_Getter";
5906 6693
5907 Native_Screen_pixelDepth_Getter(mthis) native "Screen_pixelDepth_Getter"; 6694 Native_Screen_pixelDepth_Getter(mthis) native "Screen_pixelDepth_Getter";
5908 6695
5909 Native_Screen_width_Getter(mthis) native "Screen_width_Getter"; 6696 Native_Screen_width_Getter(mthis) native "Screen_width_Getter";
5910 6697
6698 // Generated overload resolver
6699 Native_Screen_lockOrientation(mthis, orientation_OR_orientations) {
6700 if ((orientation_OR_orientations is String || orientation_OR_orientations == null)) {
6701 return Native_Screen__lockOrientation_1_Callback(mthis, orientation_OR_ori entations);
6702 }
6703 if ((orientation_OR_orientations is List<String> || orientation_OR_orientati ons == null)) {
6704 return Native_Screen__lockOrientation_2_Callback(mthis, orientation_OR_ori entations);
6705 }
6706 throw new ArgumentError("Incorrect number or type of arguments");
6707 }
6708
5911 Native_Screen__lockOrientation_1_Callback(mthis, orientation_OR_orientations) na tive "Screen__lockOrientation_1_Callback"; 6709 Native_Screen__lockOrientation_1_Callback(mthis, orientation_OR_orientations) na tive "Screen__lockOrientation_1_Callback";
5912 6710
5913 Native_Screen__lockOrientation_2_Callback(mthis, orientation_OR_orientations) na tive "Screen__lockOrientation_2_Callback"; 6711 Native_Screen__lockOrientation_2_Callback(mthis, orientation_OR_orientations) na tive "Screen__lockOrientation_2_Callback";
5914 6712
5915 Native_Screen_unlockOrientation_Callback(mthis) native "Screen_unlockOrientation _Callback"; 6713 Native_Screen_unlockOrientation_Callback(mthis) native "Screen_unlockOrientation _Callback";
5916 6714
5917 Native_Screen_addEventListener_Callback(mthis, type, listener, useCapture) nativ e "Screen_addEventListener_Callback"; 6715 Native_Screen_addEventListener_Callback(mthis, type, listener, useCapture) nativ e "Screen_addEventListener_Callback";
5918 6716
5919 Native_Screen_dispatchEvent_Callback(mthis, event) native "Screen_dispatchEvent_ Callback"; 6717 Native_Screen_dispatchEvent_Callback(mthis, event) native "Screen_dispatchEvent_ Callback";
5920 6718
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
6021 Native_ShadowRoot_elementFromPoint_Callback(mthis, x, y) native "ShadowRoot_elem entFromPoint_Callback"; 6819 Native_ShadowRoot_elementFromPoint_Callback(mthis, x, y) native "ShadowRoot_elem entFromPoint_Callback";
6022 6820
6023 Native_ShadowRoot_getElementById_Callback(mthis, elementId) native "ShadowRoot_g etElementById_Callback"; 6821 Native_ShadowRoot_getElementById_Callback(mthis, elementId) native "ShadowRoot_g etElementById_Callback";
6024 6822
6025 Native_ShadowRoot_getElementsByClassName_Callback(mthis, className) native "Shad owRoot_getElementsByClassName_Callback"; 6823 Native_ShadowRoot_getElementsByClassName_Callback(mthis, className) native "Shad owRoot_getElementsByClassName_Callback";
6026 6824
6027 Native_ShadowRoot_getElementsByTagName_Callback(mthis, tagName) native "ShadowRo ot_getElementsByTagName_Callback"; 6825 Native_ShadowRoot_getElementsByTagName_Callback(mthis, tagName) native "ShadowRo ot_getElementsByTagName_Callback";
6028 6826
6029 Native_ShadowRoot_getSelection_Callback(mthis) native "ShadowRoot_getSelection_C allback"; 6827 Native_ShadowRoot_getSelection_Callback(mthis) native "ShadowRoot_getSelection_C allback";
6030 6828
6829 // Generated overload resolver
6830 Native_SharedWorker_SharedWorker(scriptURL, name) {
6831 return Native_SharedWorker__create_1constructorCallback(scriptURL, name);
6832 }
6833
6031 Native_SharedWorker__create_1constructorCallback(scriptURL, name) native "Shared Worker__create_1constructorCallback"; 6834 Native_SharedWorker__create_1constructorCallback(scriptURL, name) native "Shared Worker__create_1constructorCallback";
6032 6835
6033 Native_SharedWorker_port_Getter(mthis) native "SharedWorker_port_Getter"; 6836 Native_SharedWorker_port_Getter(mthis) native "SharedWorker_port_Getter";
6034 6837
6035 Native_SharedWorker_workerStart_Getter(mthis) native "SharedWorker_workerStart_G etter"; 6838 Native_SharedWorker_workerStart_Getter(mthis) native "SharedWorker_workerStart_G etter";
6036 6839
6037 Native_SharedWorker_addEventListener_Callback(mthis, type, listener, useCapture) native "SharedWorker_addEventListener_Callback"; 6840 Native_SharedWorker_addEventListener_Callback(mthis, type, listener, useCapture) native "SharedWorker_addEventListener_Callback";
6038 6841
6039 Native_SharedWorker_dispatchEvent_Callback(mthis, event) native "SharedWorker_di spatchEvent_Callback"; 6842 Native_SharedWorker_dispatchEvent_Callback(mthis, event) native "SharedWorker_di spatchEvent_Callback";
6040 6843
(...skipping 18 matching lines...) Expand all
6059 Native_SourceBuffer_timestampOffset_Getter(mthis) native "SourceBuffer_timestamp Offset_Getter"; 6862 Native_SourceBuffer_timestampOffset_Getter(mthis) native "SourceBuffer_timestamp Offset_Getter";
6060 6863
6061 Native_SourceBuffer_timestampOffset_Setter(mthis, value) native "SourceBuffer_ti mestampOffset_Setter"; 6864 Native_SourceBuffer_timestampOffset_Setter(mthis, value) native "SourceBuffer_ti mestampOffset_Setter";
6062 6865
6063 Native_SourceBuffer_updating_Getter(mthis) native "SourceBuffer_updating_Getter" ; 6866 Native_SourceBuffer_updating_Getter(mthis) native "SourceBuffer_updating_Getter" ;
6064 6867
6065 Native_SourceBuffer_abort_Callback(mthis) native "SourceBuffer_abort_Callback"; 6868 Native_SourceBuffer_abort_Callback(mthis) native "SourceBuffer_abort_Callback";
6066 6869
6067 Native_SourceBuffer_appendBuffer_Callback(mthis, data) native "SourceBuffer_appe ndBuffer_Callback"; 6870 Native_SourceBuffer_appendBuffer_Callback(mthis, data) native "SourceBuffer_appe ndBuffer_Callback";
6068 6871
6872 // Generated overload resolver
6873 Native_SourceBuffer_appendStream(mthis, stream, maxSize) {
6874 if (maxSize != null) {
6875 Native_SourceBuffer__appendStream_1_Callback(mthis, stream, maxSize);
6876 return;
6877 }
6878 Native_SourceBuffer__appendStream_2_Callback(mthis, stream);
6879 return;
6880 }
6881
6069 Native_SourceBuffer__appendStream_1_Callback(mthis, stream, maxSize) native "Sou rceBuffer__appendStream_1_Callback"; 6882 Native_SourceBuffer__appendStream_1_Callback(mthis, stream, maxSize) native "Sou rceBuffer__appendStream_1_Callback";
6070 6883
6071 Native_SourceBuffer__appendStream_2_Callback(mthis, stream) native "SourceBuffer __appendStream_2_Callback"; 6884 Native_SourceBuffer__appendStream_2_Callback(mthis, stream) native "SourceBuffer __appendStream_2_Callback";
6072 6885
6073 Native_SourceBuffer_appendTypedData_Callback(mthis, data) native "SourceBuffer_a ppendTypedData_Callback"; 6886 Native_SourceBuffer_appendTypedData_Callback(mthis, data) native "SourceBuffer_a ppendTypedData_Callback";
6074 6887
6075 Native_SourceBuffer_remove_Callback(mthis, start, end) native "SourceBuffer_remo ve_Callback"; 6888 Native_SourceBuffer_remove_Callback(mthis, start, end) native "SourceBuffer_remo ve_Callback";
6076 6889
6077 Native_SourceBuffer_addEventListener_Callback(mthis, type, listener, useCapture) native "SourceBuffer_addEventListener_Callback"; 6890 Native_SourceBuffer_addEventListener_Callback(mthis, type, listener, useCapture) native "SourceBuffer_addEventListener_Callback";
6078 6891
(...skipping 14 matching lines...) Expand all
6093 Native_SourceBufferList_removeEventListener_Callback(mthis, type, listener, useC apture) native "SourceBufferList_removeEventListener_Callback"; 6906 Native_SourceBufferList_removeEventListener_Callback(mthis, type, listener, useC apture) native "SourceBufferList_removeEventListener_Callback";
6094 6907
6095 Native_SourceInfo_facing_Getter(mthis) native "SourceInfo_facing_Getter"; 6908 Native_SourceInfo_facing_Getter(mthis) native "SourceInfo_facing_Getter";
6096 6909
6097 Native_SourceInfo_id_Getter(mthis) native "SourceInfo_id_Getter"; 6910 Native_SourceInfo_id_Getter(mthis) native "SourceInfo_id_Getter";
6098 6911
6099 Native_SourceInfo_kind_Getter(mthis) native "SourceInfo_kind_Getter"; 6912 Native_SourceInfo_kind_Getter(mthis) native "SourceInfo_kind_Getter";
6100 6913
6101 Native_SourceInfo_label_Getter(mthis) native "SourceInfo_label_Getter"; 6914 Native_SourceInfo_label_Getter(mthis) native "SourceInfo_label_Getter";
6102 6915
6916 // Generated overload resolver
6917 Native_SpeechGrammar_SpeechGrammar() {
6918 return Native_SpeechGrammar__create_1constructorCallback();
6919 }
6920
6103 Native_SpeechGrammar__create_1constructorCallback() native "SpeechGrammar__creat e_1constructorCallback"; 6921 Native_SpeechGrammar__create_1constructorCallback() native "SpeechGrammar__creat e_1constructorCallback";
6104 6922
6105 Native_SpeechGrammar_src_Getter(mthis) native "SpeechGrammar_src_Getter"; 6923 Native_SpeechGrammar_src_Getter(mthis) native "SpeechGrammar_src_Getter";
6106 6924
6107 Native_SpeechGrammar_src_Setter(mthis, value) native "SpeechGrammar_src_Setter"; 6925 Native_SpeechGrammar_src_Setter(mthis, value) native "SpeechGrammar_src_Setter";
6108 6926
6109 Native_SpeechGrammar_weight_Getter(mthis) native "SpeechGrammar_weight_Getter"; 6927 Native_SpeechGrammar_weight_Getter(mthis) native "SpeechGrammar_weight_Getter";
6110 6928
6111 Native_SpeechGrammar_weight_Setter(mthis, value) native "SpeechGrammar_weight_Se tter"; 6929 Native_SpeechGrammar_weight_Setter(mthis, value) native "SpeechGrammar_weight_Se tter";
6112 6930
6931 // Generated overload resolver
6932 Native_SpeechGrammarList_SpeechGrammarList() {
6933 return Native_SpeechGrammarList__create_1constructorCallback();
6934 }
6935
6113 Native_SpeechGrammarList__create_1constructorCallback() native "SpeechGrammarLis t__create_1constructorCallback"; 6936 Native_SpeechGrammarList__create_1constructorCallback() native "SpeechGrammarLis t__create_1constructorCallback";
6114 6937
6115 Native_SpeechGrammarList_length_Getter(mthis) native "SpeechGrammarList_length_G etter"; 6938 Native_SpeechGrammarList_length_Getter(mthis) native "SpeechGrammarList_length_G etter";
6116 6939
6117 Native_SpeechGrammarList_NativeIndexed_Getter(mthis, index) native "SpeechGramma rList_item_Callback"; 6940 Native_SpeechGrammarList_NativeIndexed_Getter(mthis, index) native "SpeechGramma rList_item_Callback";
6118 6941
6942 // Generated overload resolver
6943 Native_SpeechGrammarList_addFromString(mthis, string, weight) {
6944 if (weight != null) {
6945 Native_SpeechGrammarList__addFromString_1_Callback(mthis, string, weight);
6946 return;
6947 }
6948 Native_SpeechGrammarList__addFromString_2_Callback(mthis, string);
6949 return;
6950 }
6951
6119 Native_SpeechGrammarList__addFromString_1_Callback(mthis, string, weight) native "SpeechGrammarList__addFromString_1_Callback"; 6952 Native_SpeechGrammarList__addFromString_1_Callback(mthis, string, weight) native "SpeechGrammarList__addFromString_1_Callback";
6120 6953
6121 Native_SpeechGrammarList__addFromString_2_Callback(mthis, string) native "Speech GrammarList__addFromString_2_Callback"; 6954 Native_SpeechGrammarList__addFromString_2_Callback(mthis, string) native "Speech GrammarList__addFromString_2_Callback";
6122 6955
6956 // Generated overload resolver
6957 Native_SpeechGrammarList_addFromUri(mthis, src, weight) {
6958 if (weight != null) {
6959 Native_SpeechGrammarList__addFromUri_1_Callback(mthis, src, weight);
6960 return;
6961 }
6962 Native_SpeechGrammarList__addFromUri_2_Callback(mthis, src);
6963 return;
6964 }
6965
6123 Native_SpeechGrammarList__addFromUri_1_Callback(mthis, src, weight) native "Spee chGrammarList__addFromUri_1_Callback"; 6966 Native_SpeechGrammarList__addFromUri_1_Callback(mthis, src, weight) native "Spee chGrammarList__addFromUri_1_Callback";
6124 6967
6125 Native_SpeechGrammarList__addFromUri_2_Callback(mthis, src) native "SpeechGramma rList__addFromUri_2_Callback"; 6968 Native_SpeechGrammarList__addFromUri_2_Callback(mthis, src) native "SpeechGramma rList__addFromUri_2_Callback";
6126 6969
6127 Native_SpeechGrammarList_item_Callback(mthis, index) native "SpeechGrammarList_i tem_Callback"; 6970 Native_SpeechGrammarList_item_Callback(mthis, index) native "SpeechGrammarList_i tem_Callback";
6128 6971
6129 Native_SpeechInputEvent_results_Getter(mthis) native "SpeechInputEvent_results_G etter"; 6972 Native_SpeechInputEvent_results_Getter(mthis) native "SpeechInputEvent_results_G etter";
6130 6973
6131 Native_SpeechInputResult_confidence_Getter(mthis) native "SpeechInputResult_conf idence_Getter"; 6974 Native_SpeechInputResult_confidence_Getter(mthis) native "SpeechInputResult_conf idence_Getter";
6132 6975
6133 Native_SpeechInputResult_utterance_Getter(mthis) native "SpeechInputResult_utter ance_Getter"; 6976 Native_SpeechInputResult_utterance_Getter(mthis) native "SpeechInputResult_utter ance_Getter";
6134 6977
6135 Native_SpeechInputResultList_length_Getter(mthis) native "SpeechInputResultList_ length_Getter"; 6978 Native_SpeechInputResultList_length_Getter(mthis) native "SpeechInputResultList_ length_Getter";
6136 6979
6137 Native_SpeechInputResultList_NativeIndexed_Getter(mthis, index) native "SpeechIn putResultList_item_Callback"; 6980 Native_SpeechInputResultList_NativeIndexed_Getter(mthis, index) native "SpeechIn putResultList_item_Callback";
6138 6981
6139 Native_SpeechInputResultList_item_Callback(mthis, index) native "SpeechInputResu ltList_item_Callback"; 6982 Native_SpeechInputResultList_item_Callback(mthis, index) native "SpeechInputResu ltList_item_Callback";
6140 6983
6984 // Generated overload resolver
6985 Native_SpeechRecognition_SpeechRecognition() {
6986 return Native_SpeechRecognition__create_1constructorCallback();
6987 }
6988
6141 Native_SpeechRecognition__create_1constructorCallback() native "SpeechRecognitio n__create_1constructorCallback"; 6989 Native_SpeechRecognition__create_1constructorCallback() native "SpeechRecognitio n__create_1constructorCallback";
6142 6990
6143 Native_SpeechRecognition_continuous_Getter(mthis) native "SpeechRecognition_cont inuous_Getter"; 6991 Native_SpeechRecognition_continuous_Getter(mthis) native "SpeechRecognition_cont inuous_Getter";
6144 6992
6145 Native_SpeechRecognition_continuous_Setter(mthis, value) native "SpeechRecogniti on_continuous_Setter"; 6993 Native_SpeechRecognition_continuous_Setter(mthis, value) native "SpeechRecogniti on_continuous_Setter";
6146 6994
6147 Native_SpeechRecognition_grammars_Getter(mthis) native "SpeechRecognition_gramma rs_Getter"; 6995 Native_SpeechRecognition_grammars_Getter(mthis) native "SpeechRecognition_gramma rs_Getter";
6148 6996
6149 Native_SpeechRecognition_grammars_Setter(mthis, value) native "SpeechRecognition _grammars_Setter"; 6997 Native_SpeechRecognition_grammars_Setter(mthis, value) native "SpeechRecognition _grammars_Setter";
6150 6998
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
6221 Native_SpeechSynthesis_dispatchEvent_Callback(mthis, event) native "SpeechSynthe sis_dispatchEvent_Callback"; 7069 Native_SpeechSynthesis_dispatchEvent_Callback(mthis, event) native "SpeechSynthe sis_dispatchEvent_Callback";
6222 7070
6223 Native_SpeechSynthesis_removeEventListener_Callback(mthis, type, listener, useCa pture) native "SpeechSynthesis_removeEventListener_Callback"; 7071 Native_SpeechSynthesis_removeEventListener_Callback(mthis, type, listener, useCa pture) native "SpeechSynthesis_removeEventListener_Callback";
6224 7072
6225 Native_SpeechSynthesisEvent_charIndex_Getter(mthis) native "SpeechSynthesisEvent _charIndex_Getter"; 7073 Native_SpeechSynthesisEvent_charIndex_Getter(mthis) native "SpeechSynthesisEvent _charIndex_Getter";
6226 7074
6227 Native_SpeechSynthesisEvent_elapsedTime_Getter(mthis) native "SpeechSynthesisEve nt_elapsedTime_Getter"; 7075 Native_SpeechSynthesisEvent_elapsedTime_Getter(mthis) native "SpeechSynthesisEve nt_elapsedTime_Getter";
6228 7076
6229 Native_SpeechSynthesisEvent_name_Getter(mthis) native "SpeechSynthesisEvent_name _Getter"; 7077 Native_SpeechSynthesisEvent_name_Getter(mthis) native "SpeechSynthesisEvent_name _Getter";
6230 7078
7079 // Generated overload resolver
7080 Native_SpeechSynthesisUtterance_SpeechSynthesisUtterance(text) {
7081 return Native_SpeechSynthesisUtterance__create_1constructorCallback(text);
7082 }
7083
6231 Native_SpeechSynthesisUtterance__create_1constructorCallback(text) native "Speec hSynthesisUtterance__create_1constructorCallback"; 7084 Native_SpeechSynthesisUtterance__create_1constructorCallback(text) native "Speec hSynthesisUtterance__create_1constructorCallback";
6232 7085
6233 Native_SpeechSynthesisUtterance_lang_Getter(mthis) native "SpeechSynthesisUttera nce_lang_Getter"; 7086 Native_SpeechSynthesisUtterance_lang_Getter(mthis) native "SpeechSynthesisUttera nce_lang_Getter";
6234 7087
6235 Native_SpeechSynthesisUtterance_lang_Setter(mthis, value) native "SpeechSynthesi sUtterance_lang_Setter"; 7088 Native_SpeechSynthesisUtterance_lang_Setter(mthis, value) native "SpeechSynthesi sUtterance_lang_Setter";
6236 7089
6237 Native_SpeechSynthesisUtterance_pitch_Getter(mthis) native "SpeechSynthesisUtter ance_pitch_Getter"; 7090 Native_SpeechSynthesisUtterance_pitch_Getter(mthis) native "SpeechSynthesisUtter ance_pitch_Getter";
6238 7091
6239 Native_SpeechSynthesisUtterance_pitch_Setter(mthis, value) native "SpeechSynthes isUtterance_pitch_Setter"; 7092 Native_SpeechSynthesisUtterance_pitch_Setter(mthis, value) native "SpeechSynthes isUtterance_pitch_Setter";
6240 7093
(...skipping 24 matching lines...) Expand all
6265 Native_SpeechSynthesisVoice_lang_Getter(mthis) native "SpeechSynthesisVoice_lang _Getter"; 7118 Native_SpeechSynthesisVoice_lang_Getter(mthis) native "SpeechSynthesisVoice_lang _Getter";
6266 7119
6267 Native_SpeechSynthesisVoice_localService_Getter(mthis) native "SpeechSynthesisVo ice_localService_Getter"; 7120 Native_SpeechSynthesisVoice_localService_Getter(mthis) native "SpeechSynthesisVo ice_localService_Getter";
6268 7121
6269 Native_SpeechSynthesisVoice_name_Getter(mthis) native "SpeechSynthesisVoice_name _Getter"; 7122 Native_SpeechSynthesisVoice_name_Getter(mthis) native "SpeechSynthesisVoice_name _Getter";
6270 7123
6271 Native_SpeechSynthesisVoice_voiceURI_Getter(mthis) native "SpeechSynthesisVoice_ voiceURI_Getter"; 7124 Native_SpeechSynthesisVoice_voiceURI_Getter(mthis) native "SpeechSynthesisVoice_ voiceURI_Getter";
6272 7125
6273 Native_Storage_length_Getter(mthis) native "Storage_length_Getter"; 7126 Native_Storage_length_Getter(mthis) native "Storage_length_Getter";
6274 7127
7128 // Generated overload resolver
7129 Native_Storage___delete__(mthis, index_OR_name) {
7130 if ((index_OR_name is int || index_OR_name == null)) {
7131 return Native_Storage____delete___1_Callback(mthis, index_OR_name);
7132 }
7133 if ((index_OR_name is String || index_OR_name == null)) {
7134 return Native_Storage____delete___2_Callback(mthis, index_OR_name);
7135 }
7136 throw new ArgumentError("Incorrect number or type of arguments");
7137 }
7138
6275 Native_Storage____delete___1_Callback(mthis, index_OR_name) native "Storage____d elete___1_Callback"; 7139 Native_Storage____delete___1_Callback(mthis, index_OR_name) native "Storage____d elete___1_Callback";
6276 7140
6277 Native_Storage____delete___2_Callback(mthis, index_OR_name) native "Storage____d elete___2_Callback"; 7141 Native_Storage____delete___2_Callback(mthis, index_OR_name) native "Storage____d elete___2_Callback";
6278 7142
7143 // Generated overload resolver
7144 Native_Storage___getter__(mthis, index_OR_name) {
7145 if ((index_OR_name is int || index_OR_name == null)) {
7146 return Native_Storage____getter___1_Callback(mthis, index_OR_name);
7147 }
7148 if ((index_OR_name is String || index_OR_name == null)) {
7149 return Native_Storage____getter___2_Callback(mthis, index_OR_name);
7150 }
7151 throw new ArgumentError("Incorrect number or type of arguments");
7152 }
7153
6279 Native_Storage____getter___1_Callback(mthis, index_OR_name) native "Storage____g etter___1_Callback"; 7154 Native_Storage____getter___1_Callback(mthis, index_OR_name) native "Storage____g etter___1_Callback";
6280 7155
6281 Native_Storage____getter___2_Callback(mthis, index_OR_name) native "Storage____g etter___2_Callback"; 7156 Native_Storage____getter___2_Callback(mthis, index_OR_name) native "Storage____g etter___2_Callback";
6282 7157
7158 // Generated overload resolver
7159 Native_Storage___setter__(mthis, index_OR_name, value) {
7160 if ((value is String || value == null) && (index_OR_name is int || index_OR_ name == null)) {
7161 Native_Storage____setter___1_Callback(mthis, index_OR_name, value);
7162 return;
7163 }
7164 if ((value is String || value == null) && (index_OR_name is String || index_ OR_name == null)) {
7165 Native_Storage____setter___2_Callback(mthis, index_OR_name, value);
7166 return;
7167 }
7168 throw new ArgumentError("Incorrect number or type of arguments");
7169 }
7170
6283 Native_Storage____setter___1_Callback(mthis, index_OR_name, value) native "Stora ge____setter___1_Callback"; 7171 Native_Storage____setter___1_Callback(mthis, index_OR_name, value) native "Stora ge____setter___1_Callback";
6284 7172
6285 Native_Storage____setter___2_Callback(mthis, index_OR_name, value) native "Stora ge____setter___2_Callback"; 7173 Native_Storage____setter___2_Callback(mthis, index_OR_name, value) native "Stora ge____setter___2_Callback";
6286 7174
6287 Native_Storage_clear_Callback(mthis) native "Storage_clear_Callback"; 7175 Native_Storage_clear_Callback(mthis) native "Storage_clear_Callback";
6288 7176
6289 Native_Storage_getItem_Callback(mthis, key) native "Storage_getItem_Callback"; 7177 Native_Storage_getItem_Callback(mthis, key) native "Storage_getItem_Callback";
6290 7178
6291 Native_Storage_key_Callback(mthis, index) native "Storage_key_Callback"; 7179 Native_Storage_key_Callback(mthis, index) native "Storage_key_Callback";
6292 7180
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
6523 Native_TreeWalker_nextNode_Callback(mthis) native "TreeWalker_nextNode_Callback" ; 7411 Native_TreeWalker_nextNode_Callback(mthis) native "TreeWalker_nextNode_Callback" ;
6524 7412
6525 Native_TreeWalker_nextSibling_Callback(mthis) native "TreeWalker_nextSibling_Cal lback"; 7413 Native_TreeWalker_nextSibling_Callback(mthis) native "TreeWalker_nextSibling_Cal lback";
6526 7414
6527 Native_TreeWalker_parentNode_Callback(mthis) native "TreeWalker_parentNode_Callb ack"; 7415 Native_TreeWalker_parentNode_Callback(mthis) native "TreeWalker_parentNode_Callb ack";
6528 7416
6529 Native_TreeWalker_previousNode_Callback(mthis) native "TreeWalker_previousNode_C allback"; 7417 Native_TreeWalker_previousNode_Callback(mthis) native "TreeWalker_previousNode_C allback";
6530 7418
6531 Native_TreeWalker_previousSibling_Callback(mthis) native "TreeWalker_previousSib ling_Callback"; 7419 Native_TreeWalker_previousSibling_Callback(mthis) native "TreeWalker_previousSib ling_Callback";
6532 7420
6533 Native_URL__createObjectUrlFromWebKitSource_Callback(source) native "URL__create ObjectUrlFromWebKitSource_Callback"; 7421 // Generated overload resolver
7422 Native_URL_createObjectUrl(blob_OR_source_OR_stream) {
7423 if ((blob_OR_source_OR_stream is Blob || blob_OR_source_OR_stream == null)) {
7424 return Native_URL__createObjectURL_1_Callback(blob_OR_source_OR_stream);
7425 }
7426 if ((blob_OR_source_OR_stream is MediaStream || blob_OR_source_OR_stream == null)) {
7427 return Native_URL__createObjectURL_2_Callback(blob_OR_source_OR_stream);
7428 }
7429 if ((blob_OR_source_OR_stream is MediaSource || blob_OR_source_OR_stream == null)) {
7430 return Native_URL__createObjectURL_3_Callback(blob_OR_source_OR_stream);
7431 }
7432 throw new ArgumentError("Incorrect number or type of arguments");
7433 }
6534 7434
6535 Native_URL__createObjectURL_1_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_1_Callback"; 7435 Native_URL__createObjectURL_1_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_1_Callback";
6536 7436
6537 Native_URL__createObjectURL_2_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_2_Callback"; 7437 Native_URL__createObjectURL_2_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_2_Callback";
6538 7438
6539 Native_URL__createObjectURL_3_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_3_Callback"; 7439 Native_URL__createObjectURL_3_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_3_Callback";
6540 7440
6541 Native_URL__createObjectURL_4_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_4_Callback";
6542
6543 Native_URL_createObjectUrlFromBlob_Callback(blob) native "URL_createObjectUrlFro mBlob_Callback"; 7441 Native_URL_createObjectUrlFromBlob_Callback(blob) native "URL_createObjectUrlFro mBlob_Callback";
6544 7442
6545 Native_URL_createObjectUrlFromSource_Callback(source) native "URL_createObjectUr lFromSource_Callback"; 7443 Native_URL_createObjectUrlFromSource_Callback(source) native "URL_createObjectUr lFromSource_Callback";
6546 7444
6547 Native_URL_createObjectUrlFromStream_Callback(stream) native "URL_createObjectUr lFromStream_Callback"; 7445 Native_URL_createObjectUrlFromStream_Callback(stream) native "URL_createObjectUr lFromStream_Callback";
6548 7446
6549 Native_URL_revokeObjectURL_Callback(url) native "URL_revokeObjectURL_Callback"; 7447 Native_URL_revokeObjectURL_Callback(url) native "URL_revokeObjectURL_Callback";
6550 7448
6551 Native_URL_hash_Getter(mthis) native "URL_hash_Getter"; 7449 Native_URL_hash_Getter(mthis) native "URL_hash_Getter";
6552 7450
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
6603 Native_URLUtilsReadOnly_pathname_Getter(mthis) native "URLUtilsReadOnly_pathname _Getter"; 7501 Native_URLUtilsReadOnly_pathname_Getter(mthis) native "URLUtilsReadOnly_pathname _Getter";
6604 7502
6605 Native_URLUtilsReadOnly_port_Getter(mthis) native "URLUtilsReadOnly_port_Getter" ; 7503 Native_URLUtilsReadOnly_port_Getter(mthis) native "URLUtilsReadOnly_port_Getter" ;
6606 7504
6607 Native_URLUtilsReadOnly_protocol_Getter(mthis) native "URLUtilsReadOnly_protocol _Getter"; 7505 Native_URLUtilsReadOnly_protocol_Getter(mthis) native "URLUtilsReadOnly_protocol _Getter";
6608 7506
6609 Native_URLUtilsReadOnly_search_Getter(mthis) native "URLUtilsReadOnly_search_Get ter"; 7507 Native_URLUtilsReadOnly_search_Getter(mthis) native "URLUtilsReadOnly_search_Get ter";
6610 7508
6611 Native_URLUtilsReadOnly_toString_Callback(mthis) native "URLUtilsReadOnly_toStri ng_Callback"; 7509 Native_URLUtilsReadOnly_toString_Callback(mthis) native "URLUtilsReadOnly_toStri ng_Callback";
6612 7510
7511 // Generated overload resolver
7512 Native_VTTCue_VttCue(startTime, endTime, text) {
7513 return Native_VTTCue__create_1constructorCallback(startTime, endTime, text);
7514 }
7515
6613 Native_VTTCue__create_1constructorCallback(startTime, endTime, text) native "VTT Cue__create_1constructorCallback"; 7516 Native_VTTCue__create_1constructorCallback(startTime, endTime, text) native "VTT Cue__create_1constructorCallback";
6614 7517
6615 Native_VTTCue_align_Getter(mthis) native "VTTCue_align_Getter"; 7518 Native_VTTCue_align_Getter(mthis) native "VTTCue_align_Getter";
6616 7519
6617 Native_VTTCue_align_Setter(mthis, value) native "VTTCue_align_Setter"; 7520 Native_VTTCue_align_Setter(mthis, value) native "VTTCue_align_Setter";
6618 7521
6619 Native_VTTCue_line_Getter(mthis) native "VTTCue_line_Getter"; 7522 Native_VTTCue_line_Getter(mthis) native "VTTCue_line_Getter";
6620 7523
6621 Native_VTTCue_line_Setter(mthis, value) native "VTTCue_line_Setter"; 7524 Native_VTTCue_line_Setter(mthis, value) native "VTTCue_line_Setter";
6622 7525
(...skipping 16 matching lines...) Expand all
6639 Native_VTTCue_text_Getter(mthis) native "VTTCue_text_Getter"; 7542 Native_VTTCue_text_Getter(mthis) native "VTTCue_text_Getter";
6640 7543
6641 Native_VTTCue_text_Setter(mthis, value) native "VTTCue_text_Setter"; 7544 Native_VTTCue_text_Setter(mthis, value) native "VTTCue_text_Setter";
6642 7545
6643 Native_VTTCue_vertical_Getter(mthis) native "VTTCue_vertical_Getter"; 7546 Native_VTTCue_vertical_Getter(mthis) native "VTTCue_vertical_Getter";
6644 7547
6645 Native_VTTCue_vertical_Setter(mthis, value) native "VTTCue_vertical_Setter"; 7548 Native_VTTCue_vertical_Setter(mthis, value) native "VTTCue_vertical_Setter";
6646 7549
6647 Native_VTTCue_getCueAsHTML_Callback(mthis) native "VTTCue_getCueAsHTML_Callback" ; 7550 Native_VTTCue_getCueAsHTML_Callback(mthis) native "VTTCue_getCueAsHTML_Callback" ;
6648 7551
7552 // Generated overload resolver
7553 Native_VTTRegion_VttRegion() {
7554 return Native_VTTRegion__create_1constructorCallback();
7555 }
7556
6649 Native_VTTRegion__create_1constructorCallback() native "VTTRegion__create_1const ructorCallback"; 7557 Native_VTTRegion__create_1constructorCallback() native "VTTRegion__create_1const ructorCallback";
6650 7558
6651 Native_VTTRegion_height_Getter(mthis) native "VTTRegion_height_Getter"; 7559 Native_VTTRegion_height_Getter(mthis) native "VTTRegion_height_Getter";
6652 7560
6653 Native_VTTRegion_height_Setter(mthis, value) native "VTTRegion_height_Setter"; 7561 Native_VTTRegion_height_Setter(mthis, value) native "VTTRegion_height_Setter";
6654 7562
6655 Native_VTTRegion_id_Getter(mthis) native "VTTRegion_id_Getter"; 7563 Native_VTTRegion_id_Getter(mthis) native "VTTRegion_id_Getter";
6656 7564
6657 Native_VTTRegion_id_Setter(mthis, value) native "VTTRegion_id_Setter"; 7565 Native_VTTRegion_id_Setter(mthis, value) native "VTTRegion_id_Setter";
6658 7566
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
6791 Native_WebGLRenderingContext_blendEquation_Callback(mthis, mode) native "WebGLRe nderingContext_blendEquation_Callback"; 7699 Native_WebGLRenderingContext_blendEquation_Callback(mthis, mode) native "WebGLRe nderingContext_blendEquation_Callback";
6792 7700
6793 Native_WebGLRenderingContext_blendEquationSeparate_Callback(mthis, modeRGB, mode Alpha) native "WebGLRenderingContext_blendEquationSeparate_Callback"; 7701 Native_WebGLRenderingContext_blendEquationSeparate_Callback(mthis, modeRGB, mode Alpha) native "WebGLRenderingContext_blendEquationSeparate_Callback";
6794 7702
6795 Native_WebGLRenderingContext_blendFunc_Callback(mthis, sfactor, dfactor) native "WebGLRenderingContext_blendFunc_Callback"; 7703 Native_WebGLRenderingContext_blendFunc_Callback(mthis, sfactor, dfactor) native "WebGLRenderingContext_blendFunc_Callback";
6796 7704
6797 Native_WebGLRenderingContext_blendFuncSeparate_Callback(mthis, srcRGB, dstRGB, s rcAlpha, dstAlpha) native "WebGLRenderingContext_blendFuncSeparate_Callback"; 7705 Native_WebGLRenderingContext_blendFuncSeparate_Callback(mthis, srcRGB, dstRGB, s rcAlpha, dstAlpha) native "WebGLRenderingContext_blendFuncSeparate_Callback";
6798 7706
6799 Native_WebGLRenderingContext_bufferByteData_Callback(mthis, target, data, usage) native "WebGLRenderingContext_bufferByteData_Callback"; 7707 Native_WebGLRenderingContext_bufferByteData_Callback(mthis, target, data, usage) native "WebGLRenderingContext_bufferByteData_Callback";
6800 7708
7709 // Generated overload resolver
7710 Native_WebGLRenderingContext_bufferData(mthis, target, data_OR_size, usage) {
7711 if ((usage is int || usage == null) && (data_OR_size is TypedData || data_OR _size == null) && (target is int || target == null)) {
7712 Native_WebGLRenderingContext__bufferData_1_Callback(mthis, target, data_OR _size, usage);
7713 return;
7714 }
7715 if ((usage is int || usage == null) && (data_OR_size is ByteBuffer || data_O R_size == null) && (target is int || target == null)) {
7716 Native_WebGLRenderingContext__bufferData_2_Callback(mthis, target, data_OR _size, usage);
7717 return;
7718 }
7719 if ((usage is int || usage == null) && (data_OR_size is int || data_OR_size == null) && (target is int || target == null)) {
7720 Native_WebGLRenderingContext__bufferData_3_Callback(mthis, target, data_OR _size, usage);
7721 return;
7722 }
7723 throw new ArgumentError("Incorrect number or type of arguments");
7724 }
7725
6801 Native_WebGLRenderingContext__bufferData_1_Callback(mthis, target, data_OR_size, usage) native "WebGLRenderingContext__bufferData_1_Callback"; 7726 Native_WebGLRenderingContext__bufferData_1_Callback(mthis, target, data_OR_size, usage) native "WebGLRenderingContext__bufferData_1_Callback";
6802 7727
6803 Native_WebGLRenderingContext__bufferData_2_Callback(mthis, target, data_OR_size, usage) native "WebGLRenderingContext__bufferData_2_Callback"; 7728 Native_WebGLRenderingContext__bufferData_2_Callback(mthis, target, data_OR_size, usage) native "WebGLRenderingContext__bufferData_2_Callback";
6804 7729
6805 Native_WebGLRenderingContext__bufferData_3_Callback(mthis, target, data_OR_size, usage) native "WebGLRenderingContext__bufferData_3_Callback"; 7730 Native_WebGLRenderingContext__bufferData_3_Callback(mthis, target, data_OR_size, usage) native "WebGLRenderingContext__bufferData_3_Callback";
6806 7731
6807 Native_WebGLRenderingContext_bufferDataTyped_Callback(mthis, target, data, usage ) native "WebGLRenderingContext_bufferDataTyped_Callback"; 7732 Native_WebGLRenderingContext_bufferDataTyped_Callback(mthis, target, data, usage ) native "WebGLRenderingContext_bufferDataTyped_Callback";
6808 7733
6809 Native_WebGLRenderingContext_bufferSubByteData_Callback(mthis, target, offset, d ata) native "WebGLRenderingContext_bufferSubByteData_Callback"; 7734 Native_WebGLRenderingContext_bufferSubByteData_Callback(mthis, target, offset, d ata) native "WebGLRenderingContext_bufferSubByteData_Callback";
6810 7735
7736 // Generated overload resolver
7737 Native_WebGLRenderingContext_bufferSubData(mthis, target, offset, data) {
7738 if ((data is TypedData || data == null) && (offset is int || offset == null) && (target is int || target == null)) {
7739 Native_WebGLRenderingContext__bufferSubData_1_Callback(mthis, target, offs et, data);
7740 return;
7741 }
7742 if ((data is ByteBuffer || data == null) && (offset is int || offset == null ) && (target is int || target == null)) {
7743 Native_WebGLRenderingContext__bufferSubData_2_Callback(mthis, target, offs et, data);
7744 return;
7745 }
7746 throw new ArgumentError("Incorrect number or type of arguments");
7747 }
7748
6811 Native_WebGLRenderingContext__bufferSubData_1_Callback(mthis, target, offset, da ta) native "WebGLRenderingContext__bufferSubData_1_Callback"; 7749 Native_WebGLRenderingContext__bufferSubData_1_Callback(mthis, target, offset, da ta) native "WebGLRenderingContext__bufferSubData_1_Callback";
6812 7750
6813 Native_WebGLRenderingContext__bufferSubData_2_Callback(mthis, target, offset, da ta) native "WebGLRenderingContext__bufferSubData_2_Callback"; 7751 Native_WebGLRenderingContext__bufferSubData_2_Callback(mthis, target, offset, da ta) native "WebGLRenderingContext__bufferSubData_2_Callback";
6814 7752
6815 Native_WebGLRenderingContext_bufferSubDataTyped_Callback(mthis, target, offset, data) native "WebGLRenderingContext_bufferSubDataTyped_Callback"; 7753 Native_WebGLRenderingContext_bufferSubDataTyped_Callback(mthis, target, offset, data) native "WebGLRenderingContext_bufferSubDataTyped_Callback";
6816 7754
6817 Native_WebGLRenderingContext_checkFramebufferStatus_Callback(mthis, target) nati ve "WebGLRenderingContext_checkFramebufferStatus_Callback"; 7755 Native_WebGLRenderingContext_checkFramebufferStatus_Callback(mthis, target) nati ve "WebGLRenderingContext_checkFramebufferStatus_Callback";
6818 7756
6819 Native_WebGLRenderingContext_clear_Callback(mthis, mask) native "WebGLRenderingC ontext_clear_Callback"; 7757 Native_WebGLRenderingContext_clear_Callback(mthis, mask) native "WebGLRenderingC ontext_clear_Callback";
6820 7758
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
6981 Native_WebGLRenderingContext_stencilFuncSeparate_Callback(mthis, face, func, ref , mask) native "WebGLRenderingContext_stencilFuncSeparate_Callback"; 7919 Native_WebGLRenderingContext_stencilFuncSeparate_Callback(mthis, face, func, ref , mask) native "WebGLRenderingContext_stencilFuncSeparate_Callback";
6982 7920
6983 Native_WebGLRenderingContext_stencilMask_Callback(mthis, mask) native "WebGLRend eringContext_stencilMask_Callback"; 7921 Native_WebGLRenderingContext_stencilMask_Callback(mthis, mask) native "WebGLRend eringContext_stencilMask_Callback";
6984 7922
6985 Native_WebGLRenderingContext_stencilMaskSeparate_Callback(mthis, face, mask) nat ive "WebGLRenderingContext_stencilMaskSeparate_Callback"; 7923 Native_WebGLRenderingContext_stencilMaskSeparate_Callback(mthis, face, mask) nat ive "WebGLRenderingContext_stencilMaskSeparate_Callback";
6986 7924
6987 Native_WebGLRenderingContext_stencilOp_Callback(mthis, fail, zfail, zpass) nativ e "WebGLRenderingContext_stencilOp_Callback"; 7925 Native_WebGLRenderingContext_stencilOp_Callback(mthis, fail, zfail, zpass) nativ e "WebGLRenderingContext_stencilOp_Callback";
6988 7926
6989 Native_WebGLRenderingContext_stencilOpSeparate_Callback(mthis, face, fail, zfail , zpass) native "WebGLRenderingContext_stencilOpSeparate_Callback"; 7927 Native_WebGLRenderingContext_stencilOpSeparate_Callback(mthis, face, fail, zfail , zpass) native "WebGLRenderingContext_stencilOpSeparate_Callback";
6990 7928
7929 // Generated overload resolver
7930 Native_WebGLRenderingContext_texImage2D(mthis, target, level, internalformat, fo rmat_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_OR_video, for mat, type, pixels) {
7931 if ((pixels is TypedData || pixels == null) && (type is int || type == null) && (format is int || format == null) && (border_OR_canvas_OR_image_OR_pixels_OR _video is int || border_OR_canvas_OR_image_OR_pixels_OR_video == null) && (heigh t_OR_type is int || height_OR_type == null) && (format_OR_width is int || format _OR_width == null) && (internalformat is int || internalformat == null) && (leve l is int || level == null) && (target is int || target == null)) {
7932 Native_WebGLRenderingContext__texImage2D_1_Callback(mthis, target, level, internalformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pi xels_OR_video, format, type, pixels);
7933 return;
7934 }
7935 if ((border_OR_canvas_OR_image_OR_pixels_OR_video is ImageData || border_OR_ canvas_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || height_ OR_type == null) && (format_OR_width is int || format_OR_width == null) && (inte rnalformat is int || internalformat == null) && (level is int || level == null) && (target is int || target == null) && format == null && type == null && pixels == null) {
7936 Native_WebGLRenderingContext__texImage2D_2_Callback(mthis, target, level, internalformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pi xels_OR_video);
7937 return;
7938 }
7939 if ((border_OR_canvas_OR_image_OR_pixels_OR_video is ImageElement || border_ OR_canvas_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || heig ht_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (i nternalformat is int || internalformat == null) && (level is int || level == nul l) && (target is int || target == null) && format == null && type == null && pix els == null) {
7940 Native_WebGLRenderingContext__texImage2D_3_Callback(mthis, target, level, internalformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pi xels_OR_video);
7941 return;
7942 }
7943 if ((border_OR_canvas_OR_image_OR_pixels_OR_video is CanvasElement || border _OR_canvas_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || hei ght_OR_type == null) && (format_OR_width is int || format_OR_width == null) && ( internalformat is int || internalformat == null) && (level is int || level == nu ll) && (target is int || target == null) && format == null && type == null && pi xels == null) {
7944 Native_WebGLRenderingContext__texImage2D_4_Callback(mthis, target, level, internalformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pi xels_OR_video);
7945 return;
7946 }
7947 if ((border_OR_canvas_OR_image_OR_pixels_OR_video is VideoElement || border_ OR_canvas_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || heig ht_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (i nternalformat is int || internalformat == null) && (level is int || level == nul l) && (target is int || target == null) && format == null && type == null && pix els == null) {
7948 Native_WebGLRenderingContext__texImage2D_5_Callback(mthis, target, level, internalformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pi xels_OR_video);
7949 return;
7950 }
7951 throw new ArgumentError("Incorrect number or type of arguments");
7952 }
7953
6991 Native_WebGLRenderingContext__texImage2D_1_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video, format, type, pixels) native "WebGLRenderingContext__texImage2D_1_Callb ack"; 7954 Native_WebGLRenderingContext__texImage2D_1_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video, format, type, pixels) native "WebGLRenderingContext__texImage2D_1_Callb ack";
6992 7955
6993 Native_WebGLRenderingContext__texImage2D_2_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video) native "WebGLRenderingContext__texImage2D_2_Callback"; 7956 Native_WebGLRenderingContext__texImage2D_2_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video) native "WebGLRenderingContext__texImage2D_2_Callback";
6994 7957
6995 Native_WebGLRenderingContext__texImage2D_3_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video) native "WebGLRenderingContext__texImage2D_3_Callback"; 7958 Native_WebGLRenderingContext__texImage2D_3_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video) native "WebGLRenderingContext__texImage2D_3_Callback";
6996 7959
6997 Native_WebGLRenderingContext__texImage2D_4_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video) native "WebGLRenderingContext__texImage2D_4_Callback"; 7960 Native_WebGLRenderingContext__texImage2D_4_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video) native "WebGLRenderingContext__texImage2D_4_Callback";
6998 7961
6999 Native_WebGLRenderingContext__texImage2D_5_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video) native "WebGLRenderingContext__texImage2D_5_Callback"; 7962 Native_WebGLRenderingContext__texImage2D_5_Callback(mthis, target, level, intern alformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_O R_video) native "WebGLRenderingContext__texImage2D_5_Callback";
7000 7963
7001 Native_WebGLRenderingContext_texImage2DCanvas_Callback(mthis, target, level, int ernalformat, format, type, canvas) native "WebGLRenderingContext_texImage2DCanva s_Callback"; 7964 Native_WebGLRenderingContext_texImage2DCanvas_Callback(mthis, target, level, int ernalformat, format, type, canvas) native "WebGLRenderingContext_texImage2DCanva s_Callback";
7002 7965
7003 Native_WebGLRenderingContext_texImage2DImage_Callback(mthis, target, level, inte rnalformat, format, type, image) native "WebGLRenderingContext_texImage2DImage_C allback"; 7966 Native_WebGLRenderingContext_texImage2DImage_Callback(mthis, target, level, inte rnalformat, format, type, image) native "WebGLRenderingContext_texImage2DImage_C allback";
7004 7967
7005 Native_WebGLRenderingContext_texImage2DImageData_Callback(mthis, target, level, internalformat, format, type, pixels) native "WebGLRenderingContext_texImage2DIm ageData_Callback"; 7968 Native_WebGLRenderingContext_texImage2DImageData_Callback(mthis, target, level, internalformat, format, type, pixels) native "WebGLRenderingContext_texImage2DIm ageData_Callback";
7006 7969
7007 Native_WebGLRenderingContext_texImage2DVideo_Callback(mthis, target, level, inte rnalformat, format, type, video) native "WebGLRenderingContext_texImage2DVideo_C allback"; 7970 Native_WebGLRenderingContext_texImage2DVideo_Callback(mthis, target, level, inte rnalformat, format, type, video) native "WebGLRenderingContext_texImage2DVideo_C allback";
7008 7971
7009 Native_WebGLRenderingContext_texParameterf_Callback(mthis, target, pname, param) native "WebGLRenderingContext_texParameterf_Callback"; 7972 Native_WebGLRenderingContext_texParameterf_Callback(mthis, target, pname, param) native "WebGLRenderingContext_texParameterf_Callback";
7010 7973
7011 Native_WebGLRenderingContext_texParameteri_Callback(mthis, target, pname, param) native "WebGLRenderingContext_texParameteri_Callback"; 7974 Native_WebGLRenderingContext_texParameteri_Callback(mthis, target, pname, param) native "WebGLRenderingContext_texParameteri_Callback";
7012 7975
7976 // Generated overload resolver
7977 Native_WebGLRenderingContext_texSubImage2D(mthis, target, level, xoffset, yoffse t, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video , type, pixels) {
7978 if ((pixels is TypedData || pixels == null) && (type is int || type == null) && (canvas_OR_format_OR_image_OR_pixels_OR_video is int || canvas_OR_format_OR_ image_OR_pixels_OR_video == null) && (height_OR_type is int || height_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (yoffset is int || yoffset == null) && (xoffset is int || xoffset == null) && (level is int || level == null) && (target is int || target == null)) {
7979 Native_WebGLRenderingContext__texSubImage2D_1_Callback(mthis, target, leve l, xoffset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_ OR_pixels_OR_video, type, pixels);
7980 return;
7981 }
7982 if ((canvas_OR_format_OR_image_OR_pixels_OR_video is ImageData || canvas_OR_ format_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || height_ OR_type == null) && (format_OR_width is int || format_OR_width == null) && (yoff set is int || yoffset == null) && (xoffset is int || xoffset == null) && (level is int || level == null) && (target is int || target == null) && type == null && pixels == null) {
7983 Native_WebGLRenderingContext__texSubImage2D_2_Callback(mthis, target, leve l, xoffset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_ OR_pixels_OR_video);
7984 return;
7985 }
7986 if ((canvas_OR_format_OR_image_OR_pixels_OR_video is ImageElement || canvas_ OR_format_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || heig ht_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (y offset is int || yoffset == null) && (xoffset is int || xoffset == null) && (lev el is int || level == null) && (target is int || target == null) && type == null && pixels == null) {
7987 Native_WebGLRenderingContext__texSubImage2D_3_Callback(mthis, target, leve l, xoffset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_ OR_pixels_OR_video);
7988 return;
7989 }
7990 if ((canvas_OR_format_OR_image_OR_pixels_OR_video is CanvasElement || canvas _OR_format_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || hei ght_OR_type == null) && (format_OR_width is int || format_OR_width == null) && ( yoffset is int || yoffset == null) && (xoffset is int || xoffset == null) && (le vel is int || level == null) && (target is int || target == null) && type == nul l && pixels == null) {
7991 Native_WebGLRenderingContext__texSubImage2D_4_Callback(mthis, target, leve l, xoffset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_ OR_pixels_OR_video);
7992 return;
7993 }
7994 if ((canvas_OR_format_OR_image_OR_pixels_OR_video is VideoElement || canvas_ OR_format_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || heig ht_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (y offset is int || yoffset == null) && (xoffset is int || xoffset == null) && (lev el is int || level == null) && (target is int || target == null) && type == null && pixels == null) {
7995 Native_WebGLRenderingContext__texSubImage2D_5_Callback(mthis, target, leve l, xoffset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_ OR_pixels_OR_video);
7996 return;
7997 }
7998 throw new ArgumentError("Incorrect number or type of arguments");
7999 }
8000
7013 Native_WebGLRenderingContext__texSubImage2D_1_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video, type, pixels) native "WebGLRenderingContext__texSubImage2D_1_Callb ack"; 8001 Native_WebGLRenderingContext__texSubImage2D_1_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video, type, pixels) native "WebGLRenderingContext__texSubImage2D_1_Callb ack";
7014 8002
7015 Native_WebGLRenderingContext__texSubImage2D_2_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video) native "WebGLRenderingContext__texSubImage2D_2_Callback"; 8003 Native_WebGLRenderingContext__texSubImage2D_2_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video) native "WebGLRenderingContext__texSubImage2D_2_Callback";
7016 8004
7017 Native_WebGLRenderingContext__texSubImage2D_3_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video) native "WebGLRenderingContext__texSubImage2D_3_Callback"; 8005 Native_WebGLRenderingContext__texSubImage2D_3_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video) native "WebGLRenderingContext__texSubImage2D_3_Callback";
7018 8006
7019 Native_WebGLRenderingContext__texSubImage2D_4_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video) native "WebGLRenderingContext__texSubImage2D_4_Callback"; 8007 Native_WebGLRenderingContext__texSubImage2D_4_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video) native "WebGLRenderingContext__texSubImage2D_4_Callback";
7020 8008
7021 Native_WebGLRenderingContext__texSubImage2D_5_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video) native "WebGLRenderingContext__texSubImage2D_5_Callback"; 8009 Native_WebGLRenderingContext__texSubImage2D_5_Callback(mthis, target, level, xof fset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pix els_OR_video) native "WebGLRenderingContext__texSubImage2D_5_Callback";
7022 8010
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
7095 Native_WebGLShaderPrecisionFormat_rangeMax_Getter(mthis) native "WebGLShaderPrec isionFormat_rangeMax_Getter"; 8083 Native_WebGLShaderPrecisionFormat_rangeMax_Getter(mthis) native "WebGLShaderPrec isionFormat_rangeMax_Getter";
7096 8084
7097 Native_WebGLShaderPrecisionFormat_rangeMin_Getter(mthis) native "WebGLShaderPrec isionFormat_rangeMin_Getter"; 8085 Native_WebGLShaderPrecisionFormat_rangeMin_Getter(mthis) native "WebGLShaderPrec isionFormat_rangeMin_Getter";
7098 8086
7099 Native_WebKitAnimationEvent_animationName_Getter(mthis) native "WebKitAnimationE vent_animationName_Getter"; 8087 Native_WebKitAnimationEvent_animationName_Getter(mthis) native "WebKitAnimationE vent_animationName_Getter";
7100 8088
7101 Native_WebKitAnimationEvent_elapsedTime_Getter(mthis) native "WebKitAnimationEve nt_elapsedTime_Getter"; 8089 Native_WebKitAnimationEvent_elapsedTime_Getter(mthis) native "WebKitAnimationEve nt_elapsedTime_Getter";
7102 8090
7103 Native_WebKitCSSFilterRule_style_Getter(mthis) native "WebKitCSSFilterRule_style _Getter"; 8091 Native_WebKitCSSFilterRule_style_Getter(mthis) native "WebKitCSSFilterRule_style _Getter";
7104 8092
8093 // Generated overload resolver
8094 Native_WebKitCSSMatrix__WebKitCSSMatrix(cssValue) {
8095 return Native_WebKitCSSMatrix__create_1constructorCallback(cssValue);
8096 }
8097
7105 Native_WebKitCSSMatrix__create_1constructorCallback(cssValue) native "WebKitCSSM atrix__create_1constructorCallback"; 8098 Native_WebKitCSSMatrix__create_1constructorCallback(cssValue) native "WebKitCSSM atrix__create_1constructorCallback";
7106 8099
8100 // Generated overload resolver
8101 Native_WebKitMediaSource__WebKitMediaSource() {
8102 return Native_WebKitMediaSource__create_1constructorCallback();
8103 }
8104
7107 Native_WebKitMediaSource__create_1constructorCallback() native "WebKitMediaSourc e__create_1constructorCallback"; 8105 Native_WebKitMediaSource__create_1constructorCallback() native "WebKitMediaSourc e__create_1constructorCallback";
7108 8106
7109 Native_WebKitPoint_constructorCallback(x, y) native "WebKitPoint_constructorCall back"; 8107 Native_WebKitPoint_constructorCallback(x, y) native "WebKitPoint_constructorCall back";
7110 8108
7111 Native_WebKitPoint_x_Getter(mthis) native "WebKitPoint_x_Getter"; 8109 Native_WebKitPoint_x_Getter(mthis) native "WebKitPoint_x_Getter";
7112 8110
7113 Native_WebKitPoint_x_Setter(mthis, value) native "WebKitPoint_x_Setter"; 8111 Native_WebKitPoint_x_Setter(mthis, value) native "WebKitPoint_x_Setter";
7114 8112
7115 Native_WebKitPoint_y_Getter(mthis) native "WebKitPoint_y_Getter"; 8113 Native_WebKitPoint_y_Getter(mthis) native "WebKitPoint_y_Getter";
7116 8114
7117 Native_WebKitPoint_y_Setter(mthis, value) native "WebKitPoint_y_Setter"; 8115 Native_WebKitPoint_y_Setter(mthis, value) native "WebKitPoint_y_Setter";
7118 8116
7119 Native_WebKitSourceBufferList_item_Callback(mthis, index) native "WebKitSourceBu fferList_item_Callback"; 8117 Native_WebKitSourceBufferList_item_Callback(mthis, index) native "WebKitSourceBu fferList_item_Callback";
7120 8118
8119 // Generated overload resolver
8120 Native_WebSocket_WebSocket(url, protocol_OR_protocols) {
8121 if ((url is String || url == null) && protocol_OR_protocols == null) {
8122 return Native_WebSocket__create_1constructorCallback(url);
8123 }
8124 if ((protocol_OR_protocols is List<String> || protocol_OR_protocols == null) && (url is String || url == null)) {
8125 return Native_WebSocket__create_2constructorCallback(url, protocol_OR_prot ocols);
8126 }
8127 if ((protocol_OR_protocols is String || protocol_OR_protocols == null) && (u rl is String || url == null)) {
8128 return Native_WebSocket__create_3constructorCallback(url, protocol_OR_prot ocols);
8129 }
8130 throw new ArgumentError("Incorrect number or type of arguments");
8131 }
8132
7121 Native_WebSocket__create_1constructorCallback(url) native "WebSocket__create_1co nstructorCallback"; 8133 Native_WebSocket__create_1constructorCallback(url) native "WebSocket__create_1co nstructorCallback";
7122 8134
7123 Native_WebSocket__create_2constructorCallback(url, protocol_OR_protocols) native "WebSocket__create_2constructorCallback"; 8135 Native_WebSocket__create_2constructorCallback(url, protocol_OR_protocols) native "WebSocket__create_2constructorCallback";
7124 8136
7125 Native_WebSocket__create_3constructorCallback(url, protocol_OR_protocols) native "WebSocket__create_3constructorCallback"; 8137 Native_WebSocket__create_3constructorCallback(url, protocol_OR_protocols) native "WebSocket__create_3constructorCallback";
7126 8138
7127 Native_WebSocket_binaryType_Getter(mthis) native "WebSocket_binaryType_Getter"; 8139 Native_WebSocket_binaryType_Getter(mthis) native "WebSocket_binaryType_Getter";
7128 8140
7129 Native_WebSocket_binaryType_Setter(mthis, value) native "WebSocket_binaryType_Se tter"; 8141 Native_WebSocket_binaryType_Setter(mthis, value) native "WebSocket_binaryType_Se tter";
7130 8142
7131 Native_WebSocket_bufferedAmount_Getter(mthis) native "WebSocket_bufferedAmount_G etter"; 8143 Native_WebSocket_bufferedAmount_Getter(mthis) native "WebSocket_bufferedAmount_G etter";
7132 8144
7133 Native_WebSocket_extensions_Getter(mthis) native "WebSocket_extensions_Getter"; 8145 Native_WebSocket_extensions_Getter(mthis) native "WebSocket_extensions_Getter";
7134 8146
7135 Native_WebSocket_protocol_Getter(mthis) native "WebSocket_protocol_Getter"; 8147 Native_WebSocket_protocol_Getter(mthis) native "WebSocket_protocol_Getter";
7136 8148
7137 Native_WebSocket_readyState_Getter(mthis) native "WebSocket_readyState_Getter"; 8149 Native_WebSocket_readyState_Getter(mthis) native "WebSocket_readyState_Getter";
7138 8150
7139 Native_WebSocket_url_Getter(mthis) native "WebSocket_url_Getter"; 8151 Native_WebSocket_url_Getter(mthis) native "WebSocket_url_Getter";
7140 8152
8153 // Generated overload resolver
8154 Native_WebSocket_close(mthis, code, reason) {
8155 if (reason != null) {
8156 Native_WebSocket__close_1_Callback(mthis, code, reason);
8157 return;
8158 }
8159 if (code != null) {
8160 Native_WebSocket__close_2_Callback(mthis, code);
8161 return;
8162 }
8163 Native_WebSocket__close_3_Callback(mthis);
8164 return;
8165 }
8166
7141 Native_WebSocket__close_1_Callback(mthis, code, reason) native "WebSocket__close _1_Callback"; 8167 Native_WebSocket__close_1_Callback(mthis, code, reason) native "WebSocket__close _1_Callback";
7142 8168
7143 Native_WebSocket__close_2_Callback(mthis, code) native "WebSocket__close_2_Callb ack"; 8169 Native_WebSocket__close_2_Callback(mthis, code) native "WebSocket__close_2_Callb ack";
7144 8170
7145 Native_WebSocket__close_3_Callback(mthis) native "WebSocket__close_3_Callback"; 8171 Native_WebSocket__close_3_Callback(mthis) native "WebSocket__close_3_Callback";
7146 8172
7147 Native_WebSocket_send_Callback(mthis, data) native "WebSocket_send_Callback"; 8173 Native_WebSocket_send_Callback(mthis, data) native "WebSocket_send_Callback";
7148 8174
7149 Native_WebSocket_sendBlob_Callback(mthis, data) native "WebSocket_sendBlob_Callb ack"; 8175 Native_WebSocket_sendBlob_Callback(mthis, data) native "WebSocket_sendBlob_Callb ack";
7150 8176
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
7269 Native_Window_statusbar_Getter(mthis) native "Window_statusbar_Getter"; 8295 Native_Window_statusbar_Getter(mthis) native "Window_statusbar_Getter";
7270 8296
7271 Native_Window_styleMedia_Getter(mthis) native "Window_styleMedia_Getter"; 8297 Native_Window_styleMedia_Getter(mthis) native "Window_styleMedia_Getter";
7272 8298
7273 Native_Window_toolbar_Getter(mthis) native "Window_toolbar_Getter"; 8299 Native_Window_toolbar_Getter(mthis) native "Window_toolbar_Getter";
7274 8300
7275 Native_Window_top_Getter(mthis) native "Window_top_Getter"; 8301 Native_Window_top_Getter(mthis) native "Window_top_Getter";
7276 8302
7277 Native_Window_window_Getter(mthis) native "Window_window_Getter"; 8303 Native_Window_window_Getter(mthis) native "Window_window_Getter";
7278 8304
8305 // Generated overload resolver
8306 Native_Window___getter__(mthis, index_OR_name) {
8307 if ((index_OR_name is int || index_OR_name == null)) {
8308 return Native_Window____getter___1_Callback(mthis, index_OR_name);
8309 }
8310 if ((index_OR_name is String || index_OR_name == null)) {
8311 return Native_Window____getter___2_Callback(mthis, index_OR_name);
8312 }
8313 throw new ArgumentError("Incorrect number or type of arguments");
8314 }
8315
7279 Native_Window____getter___1_Callback(mthis, index_OR_name) native "Window____get ter___1_Callback"; 8316 Native_Window____getter___1_Callback(mthis, index_OR_name) native "Window____get ter___1_Callback";
7280 8317
7281 Native_Window____getter___2_Callback(mthis, index_OR_name) native "Window____get ter___2_Callback"; 8318 Native_Window____getter___2_Callback(mthis, index_OR_name) native "Window____get ter___2_Callback";
7282 8319
7283 Native_Window_alert_Callback(mthis, message) native "Window_alert_Callback"; 8320 Native_Window_alert_Callback(mthis, message) native "Window_alert_Callback";
7284 8321
7285 Native_Window_cancelAnimationFrame_Callback(mthis, id) native "Window_cancelAnim ationFrame_Callback"; 8322 Native_Window_cancelAnimationFrame_Callback(mthis, id) native "Window_cancelAnim ationFrame_Callback";
7286 8323
7287 Native_Window_close_Callback(mthis) native "Window_close_Callback"; 8324 Native_Window_close_Callback(mthis) native "Window_close_Callback";
7288 8325
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
7347 Native_Window_btoa_Callback(mthis, string) native "Window_btoa_Callback"; 8384 Native_Window_btoa_Callback(mthis, string) native "Window_btoa_Callback";
7348 8385
7349 Native_Window_clearInterval_Callback(mthis, handle) native "Window_clearInterval _Callback"; 8386 Native_Window_clearInterval_Callback(mthis, handle) native "Window_clearInterval _Callback";
7350 8387
7351 Native_Window_clearTimeout_Callback(mthis, handle) native "Window_clearTimeout_C allback"; 8388 Native_Window_clearTimeout_Callback(mthis, handle) native "Window_clearTimeout_C allback";
7352 8389
7353 Native_Window_setInterval_Callback(mthis, handler, timeout) native "Window_setIn terval_Callback"; 8390 Native_Window_setInterval_Callback(mthis, handler, timeout) native "Window_setIn terval_Callback";
7354 8391
7355 Native_Window_setTimeout_Callback(mthis, handler, timeout) native "Window_setTim eout_Callback"; 8392 Native_Window_setTimeout_Callback(mthis, handler, timeout) native "Window_setTim eout_Callback";
7356 8393
8394 // Generated overload resolver
8395 Native_Worker_Worker(scriptUrl) {
8396 return Native_Worker__create_1constructorCallback(scriptUrl);
8397 }
8398
7357 Native_Worker__create_1constructorCallback(scriptUrl) native "Worker__create_1co nstructorCallback"; 8399 Native_Worker__create_1constructorCallback(scriptUrl) native "Worker__create_1co nstructorCallback";
7358 8400
7359 Native_Worker_postMessage_Callback(mthis, message, messagePorts) native "Worker_ postMessage_Callback"; 8401 Native_Worker_postMessage_Callback(mthis, message, messagePorts) native "Worker_ postMessage_Callback";
7360 8402
7361 Native_Worker_terminate_Callback(mthis) native "Worker_terminate_Callback"; 8403 Native_Worker_terminate_Callback(mthis) native "Worker_terminate_Callback";
7362 8404
7363 Native_Worker_addEventListener_Callback(mthis, type, listener, useCapture) nativ e "Worker_addEventListener_Callback"; 8405 Native_Worker_addEventListener_Callback(mthis, type, listener, useCapture) nativ e "Worker_addEventListener_Callback";
7364 8406
7365 Native_Worker_dispatchEvent_Callback(mthis, event) native "Worker_dispatchEvent_ Callback"; 8407 Native_Worker_dispatchEvent_Callback(mthis, event) native "Worker_dispatchEvent_ Callback";
7366 8408
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
7411 Native_XMLHttpRequest_getResponseHeader_Callback(mthis, header) native "XMLHttpR equest_getResponseHeader_Callback"; 8453 Native_XMLHttpRequest_getResponseHeader_Callback(mthis, header) native "XMLHttpR equest_getResponseHeader_Callback";
7412 8454
7413 Native_XMLHttpRequest_open_Callback(mthis, method, url, async, user, password) n ative "XMLHttpRequest_open_Callback"; 8455 Native_XMLHttpRequest_open_Callback(mthis, method, url, async, user, password) n ative "XMLHttpRequest_open_Callback";
7414 8456
7415 Native_XMLHttpRequest_overrideMimeType_Callback(mthis, override) native "XMLHttp Request_overrideMimeType_Callback"; 8457 Native_XMLHttpRequest_overrideMimeType_Callback(mthis, override) native "XMLHttp Request_overrideMimeType_Callback";
7416 8458
7417 Native_XMLHttpRequest_send_Callback(mthis, data) native "XMLHttpRequest_send_Cal lback"; 8459 Native_XMLHttpRequest_send_Callback(mthis, data) native "XMLHttpRequest_send_Cal lback";
7418 8460
7419 Native_XMLHttpRequest_setRequestHeader_Callback(mthis, header, value) native "XM LHttpRequest_setRequestHeader_Callback"; 8461 Native_XMLHttpRequest_setRequestHeader_Callback(mthis, header, value) native "XM LHttpRequest_setRequestHeader_Callback";
7420 8462
8463 // Generated overload resolver
8464 Native_XMLSerializer_XmlSerializer() {
8465 return Native_XMLSerializer__create_1constructorCallback();
8466 }
8467
7421 Native_XMLSerializer__create_1constructorCallback() native "XMLSerializer__creat e_1constructorCallback"; 8468 Native_XMLSerializer__create_1constructorCallback() native "XMLSerializer__creat e_1constructorCallback";
7422 8469
7423 Native_XMLSerializer_serializeToString_Callback(mthis, node) native "XMLSerializ er_serializeToString_Callback"; 8470 Native_XMLSerializer_serializeToString_Callback(mthis, node) native "XMLSerializ er_serializeToString_Callback";
7424 8471
8472 // Generated overload resolver
8473 Native_XPathEvaluator_XPathEvaluator() {
8474 return Native_XPathEvaluator__create_1constructorCallback();
8475 }
8476
7425 Native_XPathEvaluator__create_1constructorCallback() native "XPathEvaluator__cre ate_1constructorCallback"; 8477 Native_XPathEvaluator__create_1constructorCallback() native "XPathEvaluator__cre ate_1constructorCallback";
7426 8478
7427 Native_XPathEvaluator_createExpression_Callback(mthis, expression, resolver) nat ive "XPathEvaluator_createExpression_Callback"; 8479 Native_XPathEvaluator_createExpression_Callback(mthis, expression, resolver) nat ive "XPathEvaluator_createExpression_Callback";
7428 8480
7429 Native_XPathEvaluator_createNSResolver_Callback(mthis, nodeResolver) native "XPa thEvaluator_createNSResolver_Callback"; 8481 Native_XPathEvaluator_createNSResolver_Callback(mthis, nodeResolver) native "XPa thEvaluator_createNSResolver_Callback";
7430 8482
7431 Native_XPathEvaluator_evaluate_Callback(mthis, expression, contextNode, resolver , type, inResult) native "XPathEvaluator_evaluate_Callback"; 8483 Native_XPathEvaluator_evaluate_Callback(mthis, expression, contextNode, resolver , type, inResult) native "XPathEvaluator_evaluate_Callback";
7432 8484
7433 Native_XPathExpression_evaluate_Callback(mthis, contextNode, type, inResult) nat ive "XPathExpression_evaluate_Callback"; 8485 Native_XPathExpression_evaluate_Callback(mthis, contextNode, type, inResult) nat ive "XPathExpression_evaluate_Callback";
7434 8486
(...skipping 10 matching lines...) Expand all
7445 Native_XPathResult_singleNodeValue_Getter(mthis) native "XPathResult_singleNodeV alue_Getter"; 8497 Native_XPathResult_singleNodeValue_Getter(mthis) native "XPathResult_singleNodeV alue_Getter";
7446 8498
7447 Native_XPathResult_snapshotLength_Getter(mthis) native "XPathResult_snapshotLeng th_Getter"; 8499 Native_XPathResult_snapshotLength_Getter(mthis) native "XPathResult_snapshotLeng th_Getter";
7448 8500
7449 Native_XPathResult_stringValue_Getter(mthis) native "XPathResult_stringValue_Get ter"; 8501 Native_XPathResult_stringValue_Getter(mthis) native "XPathResult_stringValue_Get ter";
7450 8502
7451 Native_XPathResult_iterateNext_Callback(mthis) native "XPathResult_iterateNext_C allback"; 8503 Native_XPathResult_iterateNext_Callback(mthis) native "XPathResult_iterateNext_C allback";
7452 8504
7453 Native_XPathResult_snapshotItem_Callback(mthis, index) native "XPathResult_snaps hotItem_Callback"; 8505 Native_XPathResult_snapshotItem_Callback(mthis, index) native "XPathResult_snaps hotItem_Callback";
7454 8506
8507 // Generated overload resolver
8508 Native_XSLTProcessor_XsltProcessor() {
8509 return Native_XSLTProcessor__create_1constructorCallback();
8510 }
8511
7455 Native_XSLTProcessor__create_1constructorCallback() native "XSLTProcessor__creat e_1constructorCallback"; 8512 Native_XSLTProcessor__create_1constructorCallback() native "XSLTProcessor__creat e_1constructorCallback";
7456 8513
7457 Native_XSLTProcessor_clearParameters_Callback(mthis) native "XSLTProcessor_clear Parameters_Callback"; 8514 Native_XSLTProcessor_clearParameters_Callback(mthis) native "XSLTProcessor_clear Parameters_Callback";
7458 8515
7459 Native_XSLTProcessor_getParameter_Callback(mthis, namespaceURI, localName) nativ e "XSLTProcessor_getParameter_Callback"; 8516 Native_XSLTProcessor_getParameter_Callback(mthis, namespaceURI, localName) nativ e "XSLTProcessor_getParameter_Callback";
7460 8517
7461 Native_XSLTProcessor_importStylesheet_Callback(mthis, stylesheet) native "XSLTPr ocessor_importStylesheet_Callback"; 8518 Native_XSLTProcessor_importStylesheet_Callback(mthis, stylesheet) native "XSLTPr ocessor_importStylesheet_Callback";
7462 8519
7463 Native_XSLTProcessor_removeParameter_Callback(mthis, namespaceURI, localName) na tive "XSLTProcessor_removeParameter_Callback"; 8520 Native_XSLTProcessor_removeParameter_Callback(mthis, namespaceURI, localName) na tive "XSLTProcessor_removeParameter_Callback";
7464 8521
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
7520 // _DOMStringMap native entry points 8577 // _DOMStringMap native entry points
7521 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain sKey_Callback"; 8578 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain sKey_Callback";
7522 8579
7523 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback" ; 8580 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback" ;
7524 8581
7525 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI tem_Callback"; 8582 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI tem_Callback";
7526 8583
7527 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb ack"; 8584 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb ack";
7528 8585
7529 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac k"; 8586 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac k";
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698