/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/ |
DraggingInRecentsEvent.java | 3 import com.android.systemui.recents.events.EventBus.Event; 6 * This event is sent when the user changed how far they are dragging in recents. 8 public class DraggingInRecentsEvent extends Event {
|
/packages/apps/Camera2/src/com/android/camera/captureintent/event/ |
EventZoomRatioChanged.java | 17 package com.android.camera.captureintent.event; 19 import com.android.camera.captureintent.stateful.Event; 21 public class EventZoomRatioChanged implements Event {
|
EventFastPictureBitmapAvailable.java | 17 package com.android.camera.captureintent.event; 19 import com.android.camera.captureintent.stateful.Event; 23 public class EventFastPictureBitmapAvailable implements Event {
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ |
EventListener.java | 19 /** Low level interface for receiving events. Typically there is a listener class for each specific event class.
24 /** Try to handle the given event, if it is applicable.
25 * @return true if the event should be considered {@link Event#handle() handled} by scene2d. */
26 public boolean handle (Event event);
|
/external/webrtc/webrtc/base/ |
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
|
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...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/ |
Combiner.java | 17 package com.android.inputmethod.event; 29 * Process an event, possibly combining it with the existing state and return the new event. 31 * If this event does not result in any new event getting passed down the chain, this method 32 * returns null. It may also modify the previous event list if appropriate. 35 * @param event the event to combine with the existing state. 36 * @return the resulting event. 39 Event processEvent(ArrayList<Event> previousEvents, Event event) [all...] |
HardwareKeyboardEventDecoder.java | 17 package com.android.inputmethod.event; 25 * A hardware event decoder for a hardware qwerty-ish keyboard. 40 public Event decodeHardwareKey(final KeyEvent keyEvent) { 51 return Event.createHardwareKeypressEvent(Event.NOT_A_CODE_POINT, Constants.CODE_DELETE, 58 return Event.createDeadEvent( 68 return Event.createHardwareKeypressEvent(Event.NOT_A_CODE_POINT, 71 return Event.createHardwareKeypressEvent(Constants.CODE_ENTER, keyCode, 74 // If not Enter, then this is just a regular keypress event for a normal characte [all...] |
HardwareEventDecoder.java | 17 package com.android.inputmethod.event; 22 * An event decoder for hardware events. 25 public Event decodeHardwareKey(final KeyEvent keyEvent);
|
/external/ltrace/ |
ltrace.h | 44 typedef struct Event Event; 45 struct Event { 46 struct Event * next; 58 typedef void (*callback_func) (Event *);
|
/external/v8/src/base/platform/ |
condition-variable.h | 65 struct Event; 71 Event* Pre() WARN_UNUSED_RESULT; 72 void Post(Event* event, bool result); 75 Event* waitlist() { return waitlist_; } 78 Event* waitlist_; 79 Event* freelist_;
|
/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/avahi/avahi-autoipd/ |
iface.h | 36 int iface_process(Event *event);
|
main.h | 23 typedef enum Event { 30 } Event;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/events/ |
StartedDragingEvent.java | 24 public class StartedDragingEvent extends EventBus.Event {
|
StoppedDragingEvent.java | 24 public class StoppedDragingEvent extends EventBus.Event {
|
/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;
|
/frameworks/base/services/tests/servicestests/src/com/android/server/job/ |
MockPriorityJobService.java | 40 new TestEnvironment.Event(TestEnvironment.EVENT_START_JOB, params.getJobId())); 48 int event = TestEnvironment.EVENT_STOP_JOB; local 51 event = TestEnvironment.EVENT_PREEMPT_JOB; 55 .add(new TestEnvironment.Event(event, params.getJobId())); 67 private ArrayList<Event> executedEvents = new ArrayList<Event>(); 76 public static class Event { 77 public int event; field in class:MockPriorityJobService.TestEnvironment.Event 80 public Event() { [all...] |
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/iphone/ |
iPhoneHelpers.h | 6 This software is provided 'as-is', without any express or implied warranty. In no event will 29 // This is needed for keeping an event stack for keyboard and mouse 48 iPhoneMultiTouchStackEvent( MultiTouchEvent event, iPhoneEventType type) : Event(event), Type(type) {} 51 MultiTouchEvent Event;
|
/external/opencv3/modules/core/include/opencv2/core/ |
cuda_stream_accessor.hpp | 33 // In no event shall the Intel Corporation or contributors be liable for any direct, 66 class Event; 75 /** @brief Class that enables getting cudaEvent_t from cuda::Event 79 CV_EXPORTS static cudaEvent_t getEvent(const Event& event);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/trigger/ |
Trigger.java | 21 import com.googlecode.android_scripting.event.Event; 26 * Interface implemented by objects listening to events on the event queue inside of the 33 * Handles an event from the event queue. 35 * @param event 36 * Event to handle 40 void handleEvent(Event event, Context context); 43 * Returns the event name that this {@link Trigger} is interested in [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/ |
DocumentEndEvent.java | 23 * This event follows the document's content. 26 public final class DocumentEndEvent extends Event { 39 public boolean is(Event.ID id) {
|
StreamEndEvent.java | 23 * This event is the last event that a parser emits. Together with 24 * {@link StreamStartEvent} (which is the first event a parser emits) they mark 28 * See {@link Event} for an exemplary output. 31 public final class StreamEndEvent extends Event { 37 public boolean is(Event.ID id) {
|
StreamStartEvent.java | 23 * This event is the first event that a parser emits. Together with 24 * {@link StreamEndEvent} (which is the last event a parser emits) they mark the 28 * See {@link Event} for an exemplary output. 31 public final class StreamStartEvent extends Event { 38 public boolean is(Event.ID id) {
|
/frameworks/base/tools/aapt2/unflatten/ |
ResChunkPullParser.cpp | 27 ResChunkPullParser::Event ResChunkPullParser::next() { 32 if (mEvent == Event::StartDocument) { 45 return (mEvent = Event::EndDocument); 49 return (mEvent = Event::BadDocument); 55 return (mEvent = Event::BadDocument); 60 return (mEvent = Event::BadDocument); 64 return (mEvent = Event::BadDocument); 66 return (mEvent = Event::Chunk);
|