Home
last modified time | relevance | path

Searched refs:eventType (Results 1 – 25 of 34) sorted by relevance

12

/third_party/jsframework/runtime/main/model/
DpageLife.ts133 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 …]
Ddirective.ts825 function bindEvents(vm: Vm, el: Element, events: object, eventType?: string): void {
841 const eventName: string = eventType ? eventType + key : key; constant
/third_party/jsframework/runtime/vdom/
DDocument.ts180 …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/
Dtest-fs-watch.js64 watcher.on('change', common.mustCall(function(eventType, argFilename) { argument
70 assert.strictEqual(['rename', 'change'].includes(eventType), true);
72 assert.strictEqual(eventType, 'change');
Dtest-fs-promises-watch.js53 for await (const { eventType, filename } of watcher) { property
55 assert.strictEqual(['rename', 'change'].includes(eventType), true);
Dtest-fs-watchfile.js93 fs.watch(dir, common.mustCall(function(eventType, filename) { argument
/third_party/node/lib/internal/fs/
Drecursive_watch.js263 this.once('change', (eventType, filename) => {
264 resolve({ __proto__: null, value: { eventType, filename } }); property
271 this.once('change', (eventType, filename) => {
273 resolve({ __proto__: null, value: { eventType, filename } }); property
Dwatchers.js196 this._handle.onchange = (status, eventType, filename) => { argument
215 this.emit('change', eventType, filename);
339 handle.onchange = (status, eventType, filename) => { argument
352 resolve({ eventType, filename }); property
/third_party/vk-gl-cts/framework/platform/lnx/X11/
DtcuLnxX11.cpp222 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/skia/third_party/externals/swiftshader/src/Vulkan/
DVkDeviceMemory.cpp146 …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/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_application_AccessibilityExtensionAbility.js20 eventType: '[PC Preview] unknown eventType', property
Dohos_hiSysEvent.js33 eventType: EventType, property
Dohos_screenLock.js100 eventType: '[PC Preview] unknow eventType', property
Dohos_multimedia_audio.js76 eventType: audio.InterruptType, property
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/java/com/google/oboe/samples/rhythmgame/
DGameSurfaceView.java27 …public static native void native_onTouchInput(int eventType, long timeSinceBootMs, int pixel_x, in… in native_onTouchInput() argument
/third_party/node/lib/internal/
Devent_target.js396 …({ eventTarget, listener, eventType }) => eventTarget.deref()?.[kRemoveWeakListenerHelper](eventTy… field
418 constructor(eventTarget, eventType, previous, listener, once, capture, passive, argument
450 eventType, property
/third_party/vk-gl-cts/android/cts/runner/src/com/drawelements/deqp/runner/
DDeqpTestRunner.java562 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/
Dtracing.ts160 …function writeEvent(eventType: string, phase: Phase, name: string, args: Args | undefined, extras?…
167 …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/
DRecordPrinter.cpp54 R.delta(), R.eventType(), R.size(), R.data()) in visit()
DFDRTraceExpander.cpp76 CurrentRecord.RecordType = R.eventType(); in visit()
DFDRTraceWriter.cpp116 if (auto E = writeMetadata<8u>(OS, R.size(), R.delta(), R.eventType())) in visit()
/third_party/node/lib/internal/watch_mode/
Dfiles_watcher.js100 watcher.on('change', (eventType, fileName) => this
/third_party/skia/third_party/externals/angle2/util/osx/
DOSXWindow.mm476 type:(Event::EventType)eventType
480 event.Type = eventType;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
DFDRRecords.h281 uint16_t eventType() const { return EventType; } in eventType() function
/third_party/node/typings/internalBinding/
Dfs.d.ts54 onchange: (status: number, eventType: string, filename: string | Buffer) => void;

12