HomeSort by relevance Sort by last modified time
    Searched refs:eventSource (Results 1 - 20 of 20) sorted by null

  /external/webkit/WebCore/bindings/v8/custom/
V8EventSourceConstructor.cpp 33 #if ENABLE(EVENTSOURCE)
36 #include "EventSource.h"
48 INC_STATS("DOM.EventSource.Constructor");
54 // Allocate an EventSource object as its internal field.
57 return throwError("EventSource constructor's associated context is not available", V8Proxy::ReferenceError);
59 return throwError("EventSource constructor wrong number of parameters", V8Proxy::TypeError);
64 RefPtr<EventSource> eventSource = EventSource::create(url, context, ec);
69 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::EVENTSOURCE), eventSource.get())
    [all...]
V8EventSourceCustom.cpp 28 #if ENABLE(EVENTSOURCE)
31 #include "EventSource.h"
40 INC_STATS("DOM.EventSource.addEventListener()");
41 EventSource* eventSource = V8EventSource::toNative(args.Holder());
43 RefPtr<EventListener> listener = V8DOMWrapper::getEventListener(eventSource, args[1], false, ListenerFindOrCreate);
47 eventSource->addEventListener(type, listener, useCapture);
56 INC_STATS("DOM.EventSource.removeEventListener()");
57 EventSource* eventSource = V8EventSource::toNative(args.Holder())
    [all...]
  /external/webkit/WebCore/bindings/js/
JSEventSourceConstructor.cpp 34 #if ENABLE(EVENTSOURCE)
38 #include "EventSource.h"
71 return throwError(exec, ReferenceError, "EventSource constructor associated document is unavailable");
74 RefPtr<EventSource> eventSource = EventSource::create(url, context, ec);
80 return asObject(toJS(exec, jsConstructor->globalObject(), eventSource.release()));
91 #endif // ENABLE(EVENTSOURCE)
JSEventTarget.cpp 54 #if ENABLE(EVENTSOURCE)
55 #include "EventSource.h"
95 #if ENABLE(EVENTSOURCE)
96 if (EventSource* eventSource = target->toEventSource())
97 return toJS(exec, globalObject, eventSource);
170 #if ENABLE(EVENTSOURCE)
171 CONVERT_TO_EVENT_TARGET(EventSource)
JSWorkerContextCustom.cpp 82 #if ENABLE(EVENTSOURCE)
83 JSValue JSWorkerContext::eventSource(ExecState* exec) const
JSDOMWindowCustom.cpp 533 #if ENABLE(EVENTSOURCE)
534 JSValue JSDOMWindow::eventSource(ExecState* exec) const
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplaySync.java 170 * @param eventSource server, poll, etc.
173 private String getTextFromDetails(int auth, String details, int eventSource) {
250 if (eventSource == 0) {
252 } else if (eventSource == 1) {
254 } else if (eventSource == 2) {
256 } else if (eventSource == 3) {
  /external/webkit/WebCore/bindings/v8/
V8DOMWrapper.cpp 460 #if ENABLE(EVENTSOURCE)
461 if (EventSource* eventSource = target->toEventSource())
462 return toV8(eventSource);
527 #if ENABLE(EVENTSOURCE)
528 PassRefPtr<EventListener> V8DOMWrapper::getEventListener(EventSource* eventSource, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup)
530 if (V8Proxy::retrieve(eventSource->scriptExecutionContext()))
  /external/libnfc-nxp/inc/
phNfcHalTypes.h 890 phHal_eRFDevType_t eventSource;
    [all...]
  /external/libnfc-nxp/src/
phHciNfc_CE_A.c 646 event_info.eventSource = phHal_eISO14443_A_PICC;
phHciNfc_CE_B.c 644 event_info.eventSource = phHal_eISO14443_B_PICC;
phLibNfc_SE.c 152 if((pEvtInfo->eventSource == phHal_ePICC_DevType )
phHal4Nfc.c     [all...]
phHciNfc_DevMgmt.c     [all...]
phHciNfc_NfcIPMgmt.c 809 event_info.eventSource = phHal_eNfcIP1_Initiator;
815 event_info.eventSource = phHal_eNfcIP1_Target;
    [all...]
phHciNfc_SWP.c 622 EventInfo.eventSource = phHal_ePICC_DevType;
phHciNfc_WI.c 687 EventInfo.eventSource = phHal_ePICC_DevType;
phHciNfc_Emulation.c     [all...]
  /frameworks/base/include/ui/
InputDispatcher.h 772 static bool shouldCancelEvent(int32_t eventSource, CancelationOptions options);
    [all...]
  /frameworks/base/libs/ui/
InputDispatcher.cpp     [all...]

Completed in 4531 milliseconds