Home
last modified time | relevance | path

Searched refs:Events (Results 1 - 14 of 14) sorted by relevance

/third_party/typescript/tests/baselines/reference/
H A DfatArrowSelf.js2 module Events {
14 constructor (private emitter: Events.EventEmitter) { }
28 var Events; variable
29 (function (Events) {
37 Events.EventEmitter = EventEmitter;
38 })(Events || (Events = {}));
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DRefBaseTests.cpp57 using Events = std::vector<Event>;
65 RefTracker(Id id, Events* events) : mId(id), mEvents(events) { in RefTracker()
78 Events* events = mEvents ? mEvents : other.mEvents; in operator =()
95 Events* mEvents;
116 Events events; in TEST()
129 Events events; in TEST()
145 Events events; in TEST()
160 Events events; in TEST()
176 Events events; in TEST()
210 Events event in TEST()
[all...]
/third_party/libuv/src/win/
H A Dpoll.c111 afd_poll_info->Handles[0].Events = 0; in uv__fast_poll_submit_poll_req()
114 afd_poll_info->Handles[0].Events |= AFD_POLL_RECEIVE | in uv__fast_poll_submit_poll_req()
118 afd_poll_info->Handles[0].Events |= AFD_POLL_DISCONNECT; in uv__fast_poll_submit_poll_req()
122 afd_poll_info->Handles[0].Events |= AFD_POLL_SEND | AFD_POLL_CONNECT_FAIL; in uv__fast_poll_submit_poll_req()
168 if ((afd_poll_info->Handles[0].Events & (AFD_POLL_RECEIVE | in uv__fast_poll_process_poll_req()
171 if ((afd_poll_info->Handles[0].Events & AFD_POLL_DISCONNECT) != 0) { in uv__fast_poll_process_poll_req()
175 if ((afd_poll_info->Handles[0].Events & (AFD_POLL_SEND | in uv__fast_poll_process_poll_req()
182 if (afd_poll_info->Handles[0].Events & AFD_POLL_LOCAL_CLOSE) { in uv__fast_poll_process_poll_req()
561 afd_poll_info.Handles[0].Events = AFD_POLL_ALL; in uv__poll_close()
/third_party/node/deps/uv/src/win/
H A Dpoll.c109 afd_poll_info->Handles[0].Events = 0; in uv__fast_poll_submit_poll_req()
112 afd_poll_info->Handles[0].Events |= AFD_POLL_RECEIVE | in uv__fast_poll_submit_poll_req()
116 afd_poll_info->Handles[0].Events |= AFD_POLL_DISCONNECT; in uv__fast_poll_submit_poll_req()
120 afd_poll_info->Handles[0].Events |= AFD_POLL_SEND | AFD_POLL_CONNECT_FAIL; in uv__fast_poll_submit_poll_req()
166 if ((afd_poll_info->Handles[0].Events & (AFD_POLL_RECEIVE | in uv__fast_poll_process_poll_req()
169 if ((afd_poll_info->Handles[0].Events & AFD_POLL_DISCONNECT) != 0) { in uv__fast_poll_process_poll_req()
173 if ((afd_poll_info->Handles[0].Events & (AFD_POLL_SEND | in uv__fast_poll_process_poll_req()
180 if (afd_poll_info->Handles[0].Events & AFD_POLL_LOCAL_CLOSE) { in uv__fast_poll_process_poll_req()
560 afd_poll_info.Handles[0].Events = AFD_POLL_ALL; in uv__poll_close()
/third_party/node/deps/cares/src/lib/
H A Dares_event_win32.c118 * Handles[0].Events (NOTE: check NumberOfHandles first, make sure it is
129 * Handles[0].Events = ... set as appropriate AFD_POLL_RECEIVE, etc;
344 ed->afd_poll_info.Handles[0].Events = 0; in ares_evsys_win32_afd_enqueue()
347 ed->afd_poll_info.Handles[0].Events |= in ares_evsys_win32_afd_enqueue()
352 ed->afd_poll_info.Handles[0].Events |= in ares_evsys_win32_afd_enqueue()
356 ed->afd_poll_info.Handles[0].Events |= AFD_POLL_DISCONNECT; in ares_evsys_win32_afd_enqueue()
561 if (ed->afd_poll_info.Handles[0].Events & in ares_evsys_win32_wait()
566 if (ed->afd_poll_info.Handles[0].Events & in ares_evsys_win32_wait()
571 /* XXX: Handle ed->afd_poll_info.Handles[0].Events & in ares_evsys_win32_wait()
H A Dares_event_win32.h84 ULONG Events; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DWasmObjectWriter.cpp322 void writeEventSection(ArrayRef<wasm::WasmEventType> Events);
757 void WasmObjectWriter::writeEventSection(ArrayRef<wasm::WasmEventType> Events) { in writeEventSection() argument
758 if (Events.empty()) in writeEventSection()
764 encodeULEB128(Events.size(), W.OS); in writeEventSection()
765 for (const wasm::WasmEventType &Event : Events) { in writeEventSection()
1116 SmallVector<wasm::WasmEventType, 1> Events; in writeObject() local
1387 Index = NumEventImports + Events.size(); in writeObject()
1393 Events.push_back(Event); in writeObject()
1584 writeEventSection(Events); in writeObject()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
H A DWasm.h142 ArrayRef<wasm::WasmEvent> events() const { return Events; } in events()
271 std::vector<wasm::WasmEvent> Events; member in llvm::object::WasmObjectFile
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DWasmObjectFile.cpp592 wasm::WasmEvent &Event = Events[EventIndex]; in parseLinkingSectionSymtab()
1008 Events.reserve(Count); in parseEventSection()
1011 Event.Index = NumImportedEvents + Events.size(); in parseEventSection()
1014 Events.push_back(Event); in parseEventSection()
1081 return Index < NumImportedEvents + Events.size(); in isValidEventIndex()
1126 return Events[Index - NumImportedEvents]; in getDefinedEvent()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp435 encodeULEB128(Section.Events.size(), OS); in writeSectionContent()
437 for (auto &Event : Section.Events) { in writeSectionContent()
H A DWasmYAML.cpp128 IO.mapOptional("Events", Section.Events); in sectionMapping()
/third_party/libuv/include/uv/
H A Dwin.h216 ULONG Events; member
/third_party/node/deps/uv/include/uv/
H A Dwin.h215 ULONG Events; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h329 std::vector<Event> Events; member

Completed in 15 milliseconds