/third_party/typescript/tests/baselines/reference/ |
D | fatArrowSelf.types | 2 module Events { 3 >Events : typeof Events 26 constructor (private emitter: Events.EventEmitter) { } 27 >emitter : Events.EventEmitter 28 >Events : any 35 >this.emitter.addListener : (type: string, listener: Events.ListenerCallback) => void 36 >this.emitter : Events.EventEmitter 38 >emitter : Events.EventEmitter 39 >addListener : (type: string, listener: Events.ListenerCallback) => void
|
D | fatArrowSelf.js | 2 module Events { 14 constructor (private emitter: Events.EventEmitter) { } 28 var Events; variable 29 (function (Events) { argument 37 Events.EventEmitter = EventEmitter; 38 })(Events || (Events = {}));
|
D | fatArrowSelf.symbols | 2 module Events { 3 >Events : Symbol(Events, Decl(fatArrowSelf.ts, 0, 0)) 29 constructor (private emitter: Events.EventEmitter) { } 31 >Events : Symbol(Events, Decl(fatArrowSelf.ts, 0, 0)) 32 >EventEmitter : Symbol(Events.EventEmitter, Decl(fatArrowSelf.ts, 3, 5)) 38 >this.emitter.addListener : Symbol(Events.EventEmitter.addListener, Decl(fatArrowSelf.ts, 4, 31)) 42 >addListener : Symbol(Events.EventEmitter.addListener, Decl(fatArrowSelf.ts, 4, 31))
|
D | jsEnumFunctionLocalNoCrash.types | 7 apiPrivate.Events = { 8 >apiPrivate.Events = { ButtonClicked: 'button-clicked-', PanelObjectSelected: 'panel-obje… 9 >apiPrivate.Events : any 11 >Events : any
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
D | RefBaseTests.cpp | 57 using Events = std::vector<Event>; typedef 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 events; in TEST() [all …]
|
/third_party/boost/boost/msm/back/ |
D | history_policies.hpp | 116 template <class Events,int NumberOfRegions> 139 if ( ::boost::mpl::contains<Events,Event>::value) in history_entry() 146 …ShallowHistoryImpl<Events,NumberOfRegions>& operator=(ShallowHistoryImpl<Events,NumberOfRegions> c… in operator =() argument 159 return ::boost::mpl::contains<Events,Event>::value; in process_deferred_events() 190 template <class Events> 197 typedef ShallowHistoryImpl<Events,NumberOfRegions> type;
|
/third_party/boost/libs/hana/example/map/ |
D | map.cpp | 17 template <typename ...Events> 20 hana::map<hana::pair<Events, std::vector<Callback>>...> map_; 42 template <typename ...Events> 43 event_system<Events...> make_event_system(Events ...events) { in make_event_system()
|
/third_party/boost/boost/compute/async/ |
D | wait.hpp | 44 template<class... Events> 45 inline void wait_for_all(Events&&... events) in wait_for_all() 48 detail::insert_events_variadic(l, std::forward<Events>(events)...); in wait_for_all()
|
/third_party/boost/libs/compute/include/boost/compute/async/ |
D | wait.hpp | 44 template<class... Events> 45 inline void wait_for_all(Events&&... events) in wait_for_all() 48 detail::insert_events_variadic(l, std::forward<Events>(events)...); in wait_for_all()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-sse/ |
D | README.md | 1 # lws minimal http Server Side Events 4 content over Server Side Events. 18 [2018/04/20 06:09:56:9974] USER: LWS minimal http Server-Side Events | visit http://localhost:7681
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-sse-ring/ |
D | README.md | 1 # lws minimal http Server Side Events + ringbuffer 4 content over Server Side Events, where all clients 20 [2018/04/20 06:09:56:9974] USER: LWS minimal http Server-Side Events + ring | visit http://localhos…
|
/third_party/libuv/src/win/ |
D | poll.c | 111 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() 562 afd_poll_info.Handles[0].Events = AFD_POLL_ALL; in uv__poll_close()
|
/third_party/typescript/tests/cases/compiler/ |
D | fatArrowSelf.ts | 1 module Events { 13 constructor (private emitter: Events.EventEmitter) { }
|
D | jsEnumFunctionLocalNoCrash.ts | 7 apiPrivate.Events = {
|
/third_party/flutter/flutter/dev/benchmarks/complex_layout/lib/ |
D | main.dart | 139 value: 'Events', 140 child: MenuItemWithIcon(Icons.event, 'Events', '12 upcoming'), 143 value: 'Events', 147 value: 'Events', 151 value: 'Events', 159 value: 'Events', 160 child: MenuItemWithIcon(Icons.event, 'Events', '12'), 163 value: 'Events', 167 value: 'Events', 171 value: 'Events',
|
/third_party/node/tools/doc/ |
D | README.md | 103 * Classes have (description, Properties, Methods, Events). 104 * Events have (list of listener arguments, description).
|
/third_party/python/Doc/library/ |
D | tkinter.dnd.rst | 19 function that you write (see :ref:`Bindings-and-Events`). The function should 64 :ref:`Bindings-and-Events`
|
/third_party/libwebsockets/minimal-examples/http-server/ |
D | README.md | 18 minimal-http-server-sse-ring|Server Side Events with ringbuffer and threaded event sources 19 minimal-http-server-sse|Simple Server Side Events
|
/third_party/parse5/packages/parse5-parser-stream/docs/ |
D | index.md | 35 ### Events subsection in Class: ParserStream 72 ## Events section in Class: ParserStream
|
/third_party/ffmpeg/tests/ref/fate/ |
D | sub-vplayer | 12 [Events]
|
D | sub-movtext | 12 [Events]
|
D | sub-mpsub-frames | 12 [Events]
|
D | sub-subviewer | 12 [Events]
|
D | sub-cc | 12 [Events]
|
/third_party/jsframework/runtime/main/extend/systemplugin/ |
D | calendar.js | 46 const EventsClass = class Events extends CalendarEntityClass { class 361 Events: EventsClass, property
|