HomeSort by relevance Sort by last modified time
    Searched full:eventsource (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/ui/events/
event_source.h 15 // EventSource receives events from the native platform (e.g. X11, win32 etc.)
17 class EVENTS_EXPORT EventSource {
19 virtual ~EventSource() {}
event_source.cc 11 void EventSource::SendEventToProcessor(Event* event) {
event_processor.h 13 // EventProcessor receives an event from an EventSource and dispatches it to a
22 // Dispatches an event received from the EventSource to the tree of
32 // an EventSource in high-DPI).
  /external/jmdns/src/javax/jmdns/
NetworkTopologyEvent.java 22 * @param eventSource
27 protected NetworkTopologyEvent(final Object eventSource) {
28 super(eventSource);
ServiceEvent.java 22 * @param eventSource
27 public ServiceEvent(final Object eventSource) {
28 super(eventSource);
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 34 #include "core/page/EventSource.h"
58 const unsigned long long EventSource::defaultReconnectDelay = 3000;
60 inline EventSource::EventSource(ExecutionContext* context, const KURL& url, const Dictionary& eventSourceInit)
66 , m_connectTimer(this, &EventSource::connectTimerFired)
75 PassRefPtr<EventSource> EventSource::create(ExecutionContext* context, const String& url, const Dictionary& eventSourceInit, ExceptionState& exceptionState)
78 exceptionState.throwDOMException(SyntaxError, "Cannot open an EventSource to an empty URL.");
84 exceptionState.throwDOMException(SyntaxError, "Cannot open an EventSource to '" + url + "'. The URL is invalid.");
100 RefPtr<EventSource> source = adoptRef(new EventSource(context, fullURL, eventSourceInit))
    [all...]
EventSource.h 53 class EventSource : public RefCounted<EventSource>, public ScriptWrappable, public EventTargetWithInlineData, private ThreadableLoaderClient, public ActiveDOMObject {
55 REFCOUNTED_EVENT_TARGET(EventSource);
57 static PassRefPtr<EventSource> create(ExecutionContext*, const String& url, const Dictionary&, ExceptionState&);
58 virtual ~EventSource();
90 EventSource(ExecutionContext*, const KURL&, const Dictionary&);
103 void connectTimerFired(Timer<EventSource>*);
115 Timer<EventSource> m_connectTimer;
EventSource.idl 38 ] interface EventSource : EventTarget {
  /external/chromium_org/third_party/WebKit/ManualTests/eventsource/
eventsource-loader-buffering.html 4 <title>EventSource Loader Buffering</title>
14 var es = new EventSource("eventsource-loader-buffering.php");
50 <p>Manual test to verify that the EventSource loader does not buffer data (may result in memory growth with long lived connections). Monitor memory usage; it should be stable. This file has to be served from the same web server as the php script with the same name.</p>
  /external/mdnsresponder/mDNSShared/
dnsextd.h 108 typedef struct EventSource
115 struct EventSource * next;
116 } EventSource;
151 GenLinkedList eventSources; // linked list of EventSource's
dnsextd.c 240 EventSource * newSource;
245 InitLinkedList( &self->eventSources, offsetof( EventSource, next));
248 newSource = ( EventSource*) malloc( sizeof *newSource );
272 EventSource * source;
275 for ( source = ( EventSource* ) self->eventSources.Head; source; source = source->next )
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventTargetFactory.in 14 core/page/EventSource
EventTarget.h 47 class EventSource;
  /external/chromium_org/ui/aura/
root_window_host_x11.h 38 public ui::EventSource,
74 // ui::EventSource overrides.
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceLoaderOptions.h 79 // APIs like XMLHttpRequest and EventSource let the user decide
  /external/chromium_org/v8/test/cctest/
test-func-name-inference.cc 478 " var EventSource = function () { };\n"
479 " EventSource.prototype.addListener = function () {\n"
482 " this.PublicEventSource = EventSource;\n"
484 CheckFunctionName(script, "return 2012", "EventSource.addListener");
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
IncrementalSAXSource_Filter.java 142 public void setXMLReader(XMLReader eventsource)
144 fXMLReader=eventsource;
145 eventsource.setContentHandler(this);
146 eventsource.setDTDHandler(this);
147 eventsource.setErrorHandler(this); // to report fatal errors in filtering mode
152 eventsource.
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller.h 78 enum EventSource {
106 EventSource event_source);
125 EventSource event_source() const { return event_source_; }
507 EventSource event_source_;
  /development/samples/ControllerSample/src/com/example/controllersample/
GameView.java 162 int eventSource = event.getSource();
163 if ((((eventSource & InputDevice.SOURCE_GAMEPAD) == InputDevice.SOURCE_GAMEPAD) ||
164 ((eventSource & InputDevice.SOURCE_JOYSTICK) == InputDevice.SOURCE_JOYSTICK))
    [all...]
  /external/libnfc-nxp/src/
phHciNfc_DevMgmt.c     [all...]
phHciNfc_NfcIPMgmt.c 809 event_info.eventSource = phHal_eNfcIP1_Initiator;
815 event_info.eventSource = phHal_eNfcIP1_Target;
    [all...]
phHciNfc_CE_A.c 646 event_info.eventSource = phHal_eISO14443_A_PICC;
phHciNfc_CE_B.c 644 event_info.eventSource = phHal_eISO14443_B_PICC;
phHciNfc_SWP.c 622 EventInfo.eventSource = phHal_ePICC_DevType;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java 295 public void setEventSource(View eventSource) {
296 mEventSource = eventSource;

Completed in 764 milliseconds

1 2 3