/third_party/jsframework/runtime/main/model/ |
D | pageLife.ts | 133 let eventType; 135 eventType = 'viewappear'; 137 eventType = 'viewdisappear'; 139 eventType = 'clickbackitem'; 141 eventType = 'viewsuspended'; 143 eventType = 'onConfigurationUpdated'; 145 eventType = 'layoutReady'; 147 eventType = 'viewactive'; 149 eventType = 'viewinactive'; 151 eventType = type; [all …]
|
D | directive.ts | 825 function bindEvents(vm: Vm, el: Element, events: object, eventType?: string): void { 841 const eventName: string = eventType ? eventType + key : key; constant
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/emscripten/ |
D | SDL_emscriptenevents.c | 301 Emscripten_HandleMouseMove(int eventType, const EmscriptenMouseEvent *mouseEvent, void *userData) in Emscripten_HandleMouseMove() argument 336 Emscripten_HandleMouseButton(int eventType, const EmscriptenMouseEvent *mouseEvent, void *userData) in Emscripten_HandleMouseButton() argument 354 …SDL_EventType sdl_event_type = (eventType == EMSCRIPTEN_EVENT_MOUSEDOWN ? SDL_PRESSED : SDL_RELEAS… in Emscripten_HandleMouseButton() 360 Emscripten_HandleMouseFocus(int eventType, const EmscriptenMouseEvent *mouseEvent, void *userData) in Emscripten_HandleMouseFocus() argument 381 SDL_SetMouseFocus(eventType == EMSCRIPTEN_EVENT_MOUSEENTER ? window_data->window : NULL); in Emscripten_HandleMouseFocus() 386 Emscripten_HandleWheel(int eventType, const EmscriptenWheelEvent *wheelEvent, void *userData) in Emscripten_HandleWheel() argument 394 Emscripten_HandleFocus(int eventType, const EmscriptenFocusEvent *wheelEvent, void *userData) in Emscripten_HandleFocus() argument 399 if (eventType == EMSCRIPTEN_EVENT_BLUR) { in Emscripten_HandleFocus() 404 …SDL_SendWindowEvent(window_data->window, eventType == EMSCRIPTEN_EVENT_FOCUS ? SDL_WINDOWEVENT_FOC… in Emscripten_HandleFocus() 409 Emscripten_HandleTouch(int eventType, const EmscriptenTouchEvent *touchEvent, void *userData) in Emscripten_HandleTouch() argument [all …]
|
D | SDL_emscriptenevents.h | 35 Emscripten_HandleCanvasResize(int eventType, const void *reserved, void *userData);
|
/third_party/jsframework/runtime/vdom/ |
D | Document.ts | 180 …public fireEvent(element: Element, eventType: string, eventObj: any, isDomChanges: boolean, option… 181 …Log.debug(`Document#fireEvent, element = ${element}, eventType = ${eventType}, eventObj = ${eventO… 186 eventObj.type = eventObj.type || eventType; 198 return element.fireEvent(eventType, eventObj, isBubble, options);
|
/third_party/node/test/parallel/ |
D | test-fs-watch.js | 64 watcher.on('change', common.mustCall(function(eventType, argFilename) { argument 70 assert.strictEqual(['rename', 'change'].includes(eventType), true); 72 assert.strictEqual(eventType, 'change');
|
D | test-fs-promises-watch.js | 53 for await (const { eventType, filename } of watcher) { property 54 assert.strictEqual(['rename', 'change'].includes(eventType), true);
|
D | test-fs-watchfile.js | 93 fs.watch(dir, common.mustCall(function(eventType, filename) { argument
|
/third_party/vk-gl-cts/framework/platform/lnx/X11/ |
D | tcuLnxX11.cpp | 222 int eventType = None; in setVisibility() local 231 eventType = MapNotify; in setVisibility() 236 eventType = UnmapNotify; in setVisibility() 245 } while (event.type != eventType); in setVisibility()
|
/third_party/node/lib/internal/fs/ |
D | watchers.js | 192 this._handle.onchange = (status, eventType, filename) => { argument 211 this.emit('change', eventType, filename); 336 handle.onchange = (status, eventType, filename) => { argument 349 res({ eventType, filename }); property
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkDeviceMemory.cpp | 146 …VkDeviceMemoryReportEventTypeEXT eventType = isImport() ? VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_UNIMP… in destroy() local 147 …device->emitDeviceMemoryReport(eventType, getMemoryObjectId(), 0 /* size */, VK_OBJECT_TYPE_DEVICE… in destroy() 267 …VkDeviceMemoryReportEventTypeEXT eventType = isImport() ? VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_IMPOR… in allocate() local 268 …device->emitDeviceMemoryReport(eventType, getMemoryObjectId(), allocationSize, VK_OBJECT_TYPE_DEVI… in allocate()
|
/third_party/flutter/skia/third_party/externals/sdl/src/events/ |
D | SDL_events_c.h | 39 extern int SDL_SendAppEvent(SDL_EventType eventType);
|
D | SDL_events.c | 623 SDL_SendAppEvent(SDL_EventType eventType) in SDL_SendAppEvent() argument 628 if (SDL_GetEventState(eventType) == SDL_ENABLE) { in SDL_SendAppEvent() 630 event.type = eventType; in SDL_SendAppEvent()
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_application_AccessibilityExtensionAbility.js | 20 eventType: '[PC Preview] unknown eventType', property
|
D | ohos_hiSysEvent.js | 33 eventType: EventType, property
|
D | ohos_screenLock.js | 100 eventType: '[PC Preview] unknow eventType', property
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/java/com/google/oboe/samples/rhythmgame/ |
D | GameSurfaceView.java | 27 …public static native void native_onTouchInput(int eventType, long timeSinceBootMs, int pixel_x, in… in native_onTouchInput() argument
|
/third_party/flutter/skia/third_party/externals/sdl/src/joystick/emscripten/ |
D | SDL_sysjoystick.c | 46 Emscripten_JoyStickConnected(int eventType, const EmscriptenGamepadEvent *gamepadEvent, void *userD… in Emscripten_JoyStickConnected() argument 115 Emscripten_JoyStickDisconnected(int eventType, const EmscriptenGamepadEvent *gamepadEvent, void *us… in Emscripten_JoyStickDisconnected() argument
|
/third_party/vk-gl-cts/android/cts/runner/src/com/drawelements/deqp/runner/ |
D | DeqpTestRunner.java | 562 String eventType = values.get("dEQP-EventType"); in handleStatus() local 564 if (eventType == null) { in handleStatus() 568 if (eventType.compareTo("BeginSession") == 0) { in handleStatus() 570 } else if (eventType.compareTo("EndSession") == 0) { in handleStatus() 572 } else if (eventType.compareTo("BeginTestCase") == 0) { in handleStatus() 574 } else if (eventType.compareTo("EndTestCase") == 0) { in handleStatus() 576 } else if (eventType.compareTo("TestCaseResult") == 0) { in handleStatus() 578 } else if (eventType.compareTo("TerminateTestCase") == 0) { in handleStatus() 580 } else if (eventType.compareTo("TestLogData") == 0) { in handleStatus()
|
/third_party/typescript/src/compiler/ |
D | tracing.ts | 156 …function writeEvent(eventType: string, phase: Phase, name: string, args: Args | undefined, extras?… 163 …fs.writeSync(traceFd, `,\n{"pid":1,"tid":1,"ph":"${eventType}","cat":"${phase}","ts":${time},"name…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/ |
D | RecordPrinter.cpp | 54 R.delta(), R.eventType(), R.size(), R.data()) in visit()
|
D | FDRTraceExpander.cpp | 76 CurrentRecord.RecordType = R.eventType(); in visit()
|
D | FDRTraceWriter.cpp | 116 if (auto E = writeMetadata<8u>(OS, R.size(), R.delta(), R.eventType())) in visit()
|
/third_party/flutter/flutter/packages/fuchsia_remote_debug_protocol/lib/src/ |
D | fuchsia_remote_connection.dart | 86 DartVmEvent._({this.eventType, this.servicePort, this.uri}); 92 final DartVmEventType eventType; 258 if (event.eventType == DartVmEventType.started) { 386 eventType: DartVmEventType.stopped, 461 eventType: DartVmEventType.started,
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/view/ |
D | AccessibilityBridge.java | 1440 private void sendAccessibilityEvent(int viewId, int eventType) { in sendAccessibilityEvent() argument 1445 rootAccessibilityView.sendAccessibilityEvent(eventType); in sendAccessibilityEvent() 1447 sendAccessibilityEvent(obtainAccessibilityEvent(viewId, eventType)); in sendAccessibilityEvent() 1491 private AccessibilityEvent obtainAccessibilityEvent(int virtualViewId, int eventType) { in obtainAccessibilityEvent() argument 1495 AccessibilityEvent event = AccessibilityEvent.obtain(eventType); in obtainAccessibilityEvent()
|