/external/webrtc/webrtc/base/ |
nullsocketserver.h | 14 #include "webrtc/base/event.h" 56 rtc::Event event_;
|
/frameworks/av/include/media/nbaio/ |
NBLog.h | 17 // Non-blocking event logger intended for safe communication between processes via shared memory 39 enum Event { 49 Entry(Event event, const void *data, size_t length) 50 : mEvent(event), mLength(length), mData(data) { } 57 Event mEvent; // event type 59 const void *mData; // event type-specific data 141 void log(Event event, const void *data, size_t length) [all...] |
/frameworks/base/core/java/android/app/usage/ |
UsageEvents.java | 27 * from which to read {@link android.app.usage.UsageEvents.Event} objects. 32 * An event representing a state change for a component. 34 public static final class Event { 37 * No event type. 42 * An event type denoting that a component moved to the foreground. 47 * An event type denoting that a component moved to the background. 52 * An event type denoting that a component was in the foreground when the stats 59 * An event type denoting that a component was in the foreground the previous day. 66 * An event type denoting that the device configuration has changed. 71 * An event type denoting that a package was interacted with in some way by the system 330 final Event event = mEventsToWrite.get(i); local [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/activity/ |
LaunchTvTaskEvent.java | 24 public class LaunchTvTaskEvent extends EventBus.Event {
|
PackagesChangedEvent.java | 24 * This event is sent by {@link RecentsPackageMonitor} when a package on the the system changes. 25 * {@link TaskStackView}s listen for this event, and remove the tasks associated with the removed 28 public class PackagesChangedEvent extends EventBus.Event {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/ |
TaskViewDismissedEvent.java | 25 * This event is sent when a {@link TaskView} has been dismissed and is no longer visible. 27 public class TaskViewDismissedEvent extends EventBus.Event {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/dragndrop/ |
DragStartEvent.java | 26 * This event is sent whenever a drag starts. 28 public class DragStartEvent extends EventBus.Event {
|
DragStartInitializeDropTargetsEvent.java | 25 * This event is sent by the drag manager when it requires drop targets to register themselves for 28 public class DragStartInitializeDropTargetsEvent extends EventBus.Event {
|
/external/mesa3d/include/CL/ |
cl.hpp | 18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 112 * cl::Event event; 120 * &event); 122 * event.wait(); 3398 Event event; local 3416 Event event; local 3437 Event event; local 3460 Event event; local 3485 Event event; local 3512 Event event; local 3542 Event event; local 3574 Event event; local 3608 Event event; local 3644 Event event; local 3682 Event event; local 3723 Event event; local 3766 Event event; local 3811 Event event; local 3858 Event event; local 3907 Event event; local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
WordComposer.java | 20 import com.android.inputmethod.event.CombinerChain; 21 import com.android.inputmethod.event.Event; 55 private final ArrayList<Event> mEvents; 156 * Process an event and return an event, and return a processed event to apply. 157 * @param event the unprocessed event. 158 * @return the processed event. Never null, but may be marked as consumed [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ |
EventBus.java | 46 * Represents a subscriber, which implements various event bus handler methods. 70 * Represents an event handler with a priority. 90 * Represents the low level method handling a particular event. 94 Class<? extends EventBus.Event> eventType; 96 EventHandlerMethod(Method method, Class<? extends EventBus.Event> eventType) { 102 public void invoke(Object target, EventBus.Event event) 104 mMethod.invoke(target, event); 114 * A simple in-process event bus. It is simple because we can make assumptions about the state of 118 * Currently, there is a single EventBus that handles {@link EventBus.Event}s for each subscribe [all...] |
/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/snakeyaml/src/test/java/org/pyyaml/ |
PyCanonicalTest.java | 25 import org.yaml.snakeyaml.events.Event; 64 List<Event> tokens = canonicalParse(input);
|
/frameworks/av/include/media/stagefright/foundation/ |
ALooper.h | 67 struct Event { 77 List<Event> mEventQueue;
|
/frameworks/base/cmds/hid/src/com/android/commands/hid/ |
Event.java | 28 public class Event { 77 return "Event{id=" + mId 89 private Event mEvent; 92 mEvent = new Event(); 127 public Event build() { 129 throw new IllegalStateException("No event id"); 131 throw new IllegalStateException("Event does not contain a command"); 158 public Event getNextEvent() throws IOException { 159 Event e = null; 161 Event.Builder eb = new Event.Builder() [all...] |
/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/connectivity/apmanager/ |
hostapd_monitor.h | 42 enum Event { 49 typedef base::Callback<void(Event event, const std::string& data)> 75 // Attach to hostapd control interface to receive unsolicited event
|
/external/opencv3/modules/core/src/ |
cuda_stream.cpp | 33 // In no event shall the Intel Corporation or contributors be liable for any direct, 440 void cv::cuda::Stream::waitEvent(const Event& event) 443 (void) event; 446 cudaSafeCall( cudaStreamWaitEvent(impl_->stream, EventAccessor::getEvent(event), 0) ); 677 // Event 681 class cv::cuda::Event::Impl 692 class cv::cuda::Event::Impl 695 cudaEvent_t event; member in class:cv::cuda::Event::Impl 701 cv::cuda::Event::Impl::Impl(unsigned int flags) : event(0 [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/ |
Yaml.java | 36 import org.yaml.snakeyaml.events.Event; 333 * @return Event list 335 public List<Event> serialize(Node data) { 349 private List<Event> events = new ArrayList<Event>(100); 351 public List<Event> getEvents() { 355 public void emit(Event event) throws IOException { 356 events.add(event); 626 public Iterable<Event> parse(Reader yaml) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
CFlatButton.java | 25 import org.eclipse.swt.widgets.Event; 108 public void handleEvent(Event e) { 114 public void handleEvent(Event e) { 131 Event event = new Event(); local 132 event.time = time; 133 event.stateMask = stateMask; 134 notifyListeners(SWT.Selection, event);
|
/system/connectivity/shill/ |
connection_diagnostics.h | 159 struct Event { 160 Event(Type type_in, Phase phase_in, Result result_in, 176 base::Callback<void(const std::string&, const std::vector<Event>&)>; 219 // Returns a string representation of |event|. 220 static std::string EventToString(const Event& event); 233 // Create a new Event with |type|, |phase|, |result|, and an empty message, 237 // Same as ConnectionDiagnostics::AddEvent, except that the added event 325 // Utility function that returns true iff the event in |diagnostic_events_| 326 // that is |num_events_ago| before the last event has a matching |type| [all...] |
/external/v8/src/heap/ |
gc-tracer.h | 156 // Default constructor leaves the event uninitialized. 185 // Default constructor leaves the event uninitialized. 190 // Time when context disposal event happened. 197 // Default constructor leaves the event uninitialized. 206 class Event { 215 // Default constructor leaves the event uninitialized. 216 Event() {} 218 Event(Type type, const char* gc_reason, const char* collector_reason); 220 // Returns a string describing the event type. 223 // Type of event [all...] |