HomeSort by relevance Sort by last modified time
    Searched defs:Event (Results 1 - 25 of 240) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webrtc/webrtc/base/
event.cc 11 #include "webrtc/base/event.h"
29 Event::Event(bool manual_reset, bool initially_signaled) {
37 Event::~Event() {
41 void Event::Set() {
45 void Event::Reset() {
49 bool Event::Wait(int milliseconds) {
56 Event::Event(bool manual_reset, bool initially_signaled
    [all...]
event.h 26 class Event {
30 Event(bool manual_reset, bool initially_signaled);
31 ~Event();
36 // Wait for the event to become signaled, for the specified number of
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds/
event.py 16 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
22 class Event(object):
  /packages/apps/Camera2/src/com/android/camera/captureintent/stateful/
Event.java 20 * Defines an event interface that any implementation of this interface can be
23 public interface Event {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
instancestatus.py 18 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
44 class Event(object):
46 A status event for an instance.
48 :ivar code: A string indicating the event type.
49 :ivar description: A string describing the reason for the event.
51 the event.
53 the event.
64 return 'Event:%s' % self.code
116 event = Event()
    [all...]
volumestatus.py 18 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
27 class Event(object):
29 A status event for an instance.
31 :ivar type: The type of the event.
32 :ivar id: The ID of the event.
33 :ivar description: A string describing the reason for the event.
35 the event.
37 the event.
49 return 'Event:%s' % self.type
73 event = Event(
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Event.java 29 * This class provides description of event request.
31 public class Event {
36 /** List of event modifiers. */
43 public Event() {
53 public Event(byte eventKind, byte suspendPolicy, EventMod[] mods) {
  /external/autotest/frontend/client/src/autotest/common/ui/
ToggleLink.java 3 import com.google.gwt.event.dom.client.ClickEvent;
4 import com.google.gwt.event.dom.client.ClickHandler;
5 import com.google.gwt.event.dom.client.DomEvent;
6 import com.google.gwt.event.shared.HandlerRegistration;
7 import com.google.gwt.user.client.Event;
39 public void onClick(ClickEvent event) {
41 // re-fire the event with this as the source
42 DomEvent.fireNativeEvent(Event.getCurrentEvent(), this);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
notification.py 16 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
23 Provides NotificationMessage and Event classes, with utility methods, for
43 EVENT_PATTERN = r"Event\.(?P<n>\d+)\.(?P<param>\w+)"
58 if 'Event' in d:
59 # TurboGears surprised me by 'doing the right thing' and making { 'Event': { '1': { 'EventType': ... } } } etc.
60 events_dict = d['Event']
64 if k.startswith('Event.'):
72 self.events.append(Event(events_dict[n]))
91 class Event(object):
97 if 'AssignmentId' in d: # Not present in all event type
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Event.java 35 * Event SIP Header.
45 public class Event extends ParametersHeader implements EventHeader {
55 * Creates a new instance of Event
57 public Event() {
58 super(EVENT);
126 * Return true if the given event header matches the supplied one.
128 * @param matchTarget -- event header to match against.
130 public boolean match(Event matchTarget) {
  /external/sl4a/Common/src/com/googlecode/android_scripting/event/
Event.java 17 package com.googlecode.android_scripting.event;
21 public class Event {
27 public Event(String name, Object data) {
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
DisplayAnalyzer.h 43 struct Event {
51 inline void postEvent(Event& e);
52 inline bool getEvent(Event& e);
63 Vector<Event> mPendingEvents;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sched.py 1 """A generally useful event scheduler class.
19 event means calling the action function, passing it the argument
36 Event = namedtuple('Event', 'time, priority, action, argument')
47 """Enter a new event in the queue at an absolute time.
49 Returns an ID for the event which can be used to remove it,
53 event = Event(time, priority, action, argument)
54 heapq.heappush(self._queue, event)
55 return event # The I
    [all...]
  /system/core/fastboot/
socket_mock.h 18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
86 struct Event {
87 Event(EventType _type, std::string _message, ssize_t _status,
96 std::queue<Event> events_;
socket_mock.cpp 18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
37 ADD_FAILURE() << events_.size() << " event(s) were not handled";
79 const Event& event = events_.front(); local
80 if (event.type != EventType::kReceive) {
85 const std::string& message = event.message;
91 receive_timed_out_ = event.status;
126 events_.push(Event(EventType::kSend, std::move(message), true, nullptr));
130 events_.push(Event(EventType::kSend, std::move(message), false, nullptr));
134 events_.push(Event(EventType::kReceive, std::move(message), false, nullptr))
    [all...]
  /external/deqp/framework/common/
tcuThreadUtil.cpp 37 Event::Event (void)
44 Event::~Event (void)
48 void Event::setResult (Result result)
59 Event::Result Event::waitReady (void)
78 Object::Object (const char* type, SharedPtr<Event> e)
88 void Object::read (SharedPtr<Event> event, std::vector<SharedPtr<Event> >& deps
    [all...]
  /external/skia/include/private/
GrAuditTrail.h 103 struct Event {
104 virtual ~Event() {}
111 typedef SkTArray<SkAutoTDelete<Event>, true> FrameArray;
112 struct Frame : public Event {
117 struct Batch : public Event {
  /external/avahi/avahi-autoipd/
main.h 23 typedef enum Event {
30 } Event;
  /external/v8/tools/testrunner/local/
pool.py 7 from multiprocessing import Event, Process, Queue
48 reached or 2. when the event "done" is set."""
91 self.done = Event()
171 # For exceptional tear down set the "done" event to stop the workers before
  /frameworks/av/include/media/stagefright/foundation/
ALooper.h 67 struct Event {
77 List<Event> mEventQueue;
  /frameworks/base/tools/aapt2/unflatten/
ResChunkPullParser.h 41 enum class Event {
50 * Returns false if the event is EndDocument or BadDocument.
52 static bool isGoodEvent(Event event);
62 Event getEvent() const;
69 Event next();
72 Event mEvent;
99 inline bool ResChunkPullParser::isGoodEvent(ResChunkPullParser::Event event) {
100 return event != Event::EndDocument && event != Event::BadDocument
    [all...]
  /frameworks/native/include/gui/
DisplayEventReceiver.h 47 struct Event {
72 * DisplayEventReceiver creates and registers an event connection with
104 ssize_t getEvents(Event* events, size_t count);
106 Event* events, size_t count);
113 Event const* events, size_t count);
116 * setVsyncRate() sets the Event::VSync delivery rate. A value of
117 * 1 returns every Event::VSync. A value of 2 returns every other event,
118 * etc... a value of 0 returns no event unless requestNextVsync() has
124 * requestNextVsync() schedules the next Event::VSync. It has no effec
    [all...]

Completed in 676 milliseconds

1 2 3 4 5 6 7 8 910