OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:eventsource
(Results
1 - 25
of
142
) sorted by null
1
2
3
4
5
6
/external/chromium_org/ui/events/
event_source.h
19
//
EventSource
receives events from the native platform (e.g. X11, win32 etc.)
21
class EVENTS_EXPORT
EventSource
{
23
EventSource
();
24
virtual ~
EventSource
();
30
//
EventSource
before the rewriter is destroyed. The
EventSource
44
DISALLOW_COPY_AND_ASSIGN(
EventSource
);
event_source.cc
14
EventSource
::
EventSource
() {}
16
EventSource
::~
EventSource
() {}
18
void
EventSource
::AddEventRewriter(EventRewriter* rewriter) {
25
void
EventSource
::RemoveEventRewriter(EventRewriter* rewriter) {
32
EventDispatchDetails
EventSource
::SendEventToProcessor(Event* event) {
70
EventDispatchDetails
EventSource
::DeliverEventToProcessor(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
34
// 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
PassRefPtrWillBeRawPtr<
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
RefPtrWillBeRawPtr<
EventSource
> source = adoptRefWillBeRefCountedGarbageCollected(new EventSource(context, fullURL, eventSourceIn (…)
[
all
...]
EventSource.h
54
class
EventSource
FINAL : public RefCountedWillBeRefCountedGarbageCollected<
EventSource
>, public ScriptWrappable, public EventTargetWithInlineData, private ThreadableLoaderClient, public ActiveDOMObject {
56
REFCOUNTED_EVENT_TARGET(
EventSource
);
57
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(
EventSource
);
59
static PassRefPtrWillBeRawPtr<
EventSource
> create(ExecutionContext*, const String& url, const Dictionary&, ExceptionState&);
60
virtual ~
EventSource
();
92
EventSource
(ExecutionContext*, const KURL&, const Dictionary&);
105
void connectTimerFired(Timer<
EventSource
>*);
117
Timer<
EventSource
> m_connectTimer;
/external/chromium_org/chrome/browser/chromeos/events/
event_rewriter_controller.h
17
class
EventSource
;
23
// windows |
EventSource
|s, current and future, in the order that they are
42
typedef std::list<ui::
EventSource
*> EventSourceList;
45
void AddToEventSource(ui::
EventSource
* source);
event_rewriter_controller.cc
21
// Remove the rewriters from every root window
EventSource
and destroy them.
45
// Add the rewriters to each existing root window
EventSource
.
59
void EventRewriterController::AddToEventSource(ui::
EventSource
* source) {
/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/chromium_org/third_party/WebKit/Source/core/events/
EventTargetFactory.in
16
core/page/
EventSource
/external/chromium_org/ui/events/test/
events_test_utils.h
14
class
EventSource
;
68
explicit EventSourceTestApi(
EventSource
* event_source);
75
EventSource
* event_source_;
events_test_utils.cc
22
EventSourceTestApi::EventSourceTestApi(
EventSource
* event_source)
/external/chromium_org/remoting/webapp/
base.js
136
* base.extend(SmokeDetector, base.
EventSource
);
151
* Helper interface for the
EventSource
.
164
base.
EventSource
= function() {
170
* @param {base.
EventSource
} obj
173
base.
EventSource
.isDefined = function(obj, type) {
180
base.
EventSource
.prototype = {
191
* @this {base.
EventSource
}
207
base.
EventSource
.isDefined(this, type);
220
base.
EventSource
.isDefined(this, type);
242
base.
EventSource
.isDefined(this, type)
[
all
...]
fullscreen_v1.js
27
* @type {base.
EventSource
}
30
this.eventSource_ = new base.
EventSource
();
fullscreen_v2.js
42
* @type {base.
EventSource
}
45
this.eventSource_ = new base.
EventSource
();
/external/chromium_org/mojo/services/view_manager/
window_tree_host_impl.h
25
public ui::
EventSource
,
37
virtual ui::
EventSource
* GetEventSource() OVERRIDE;
52
// ui::
EventSource
:
window_tree_host_impl.cc
62
ui::
EventSource
* WindowTreeHostImpl::GetEventSource() {
123
// WindowTreeHostImpl, ui::
EventSource
implementation:
/external/chromium_org/ui/aura/
window_tree_host_ozone.h
20
public ui::
EventSource
,
32
virtual ui::
EventSource
* GetEventSource() OVERRIDE;
47
// ui::
EventSource
overrides.
window_tree_host_win.h
17
public ui::
EventSource
,
23
virtual ui::
EventSource
* GetEventSource() OVERRIDE;
38
// ui::
EventSource
:
window_tree_host_x11.h
33
public ui::
EventSource
,
45
virtual ui::
EventSource
* GetEventSource() OVERRIDE;
60
// ui::
EventSource
overrides.
window_tree_host_mac.h
33
virtual ui::
EventSource
* GetEventSource() OVERRIDE;
/external/chromium_org/mojo/aura/
window_tree_host_mojo.h
24
public ui::
EventSource
,
41
return ui::
EventSource
::SendEventToProcessor(event);
46
virtual ui::
EventSource
* GetEventSource() OVERRIDE;
61
// ui::
EventSource
:
window_tree_host_mojo.cc
100
ui::
EventSource
* WindowTreeHostMojo::GetEventSource() {
158
// WindowTreeHostMojo, ui::
EventSource
implementation:
/external/mdnsresponder/mDNSShared/
dnsextd.h
108
typedef struct
EventSource
115
struct
EventSource
* next;
116
}
EventSource
;
151
GenLinkedList eventSources; // linked list of
EventSource
's
Completed in 1825 milliseconds
1
2
3
4
5
6