HomeSort by relevance Sort by last modified time
    Searched refs:Event (Results 276 - 300 of 835) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/video/
video_capture_input.h 17 #include "webrtc/base/event.h"
80 rtc::Event capture_event_;
  /frameworks/base/libs/hwui/tests/common/
TestContext.cpp 86 DisplayEventReceiver::Event buf[100];
  /frameworks/native/services/surfaceflinger/tests/vsync/
vsync.cpp 28 DisplayEventReceiver::Event buffer[1];
35 printf("event vsync: count=%d\t", buffer[i].vsync.count);
  /packages/apps/Calendar/src/com/android/calendar/
EventLoader.java 58 * Code for handling requests to get whether days have an event or not
90 // Clear the event days
103 //we want the entire range the event occurs, but only within the month
129 public ArrayList<Event> events;
133 public LoadEventsRequest(int id, int startDay, int numDays, ArrayList<Event> events,
144 Event.loadEvents(eventLoader.mContext, events, startDay,
239 public void loadEventsInBackground(final int numDays, final ArrayList<Event> events,
268 * @param eventDay Whether or not an event exists on that day
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fork1.py 32 import_started = threading.Event()
test_threadedtempfile.py 27 startEvent = threading.Event()
test_threading_local.py 81 e1 = threading.Event()
82 e2 = threading.Event()
131 e1 = threading.Event()
132 e2 = threading.Event()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_fork1.py 32 import_started = threading.Event()
test_threadedtempfile.py 27 startEvent = threading.Event()
test_threading_local.py 81 e1 = threading.Event()
82 e2 = threading.Event()
131 e1 = threading.Event()
132 e2 = threading.Event()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fork1.py 32 import_started = threading.Event()
test_threadedtempfile.py 27 startEvent = threading.Event()
test_threading_local.py 81 e1 = threading.Event()
82 e2 = threading.Event()
131 e1 = threading.Event()
132 e2 = threading.Event()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fork1.py 32 import_started = threading.Event()
test_threadedtempfile.py 27 startEvent = threading.Event()
test_threading_local.py 81 e1 = threading.Event()
82 e2 = threading.Event()
131 e1 = threading.Event()
132 e2 = threading.Event()
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintTooltipManager.java 28 import org.eclipse.swt.widgets.Event;
69 public void handleEvent(Event event) {
70 switch(event.type) {
75 List<UiViewElementNode> nodes = computeNodes(event);
98 show(event);
111 private void show(Event event) {
112 List<UiViewElementNode> nodes = computeNodes(event);
143 * @param event the mouse cursor even
    [all...]
  /device/asus/fugu/kernel-headers/linux/
kct.h 80 struct ct_event event; member in struct:kct_packet
90 #define foreach_attchmt(Event, Attchmt) if ((Event)->attchmt_size) for ((Attchmt) = (Event)->attachments; (Attchmt) < (typeof(Attchmt))(((char *) (Event)->attachments) + (Event)->attchmt_size); (Attchmt) = (typeof(Attchmt))KCT_ALIGN(((size_t)(Attchmt)) + sizeof(*(Attchmt)) + (Attchmt)->size, ATTCHMT_ALIGNMENT))
  /device/asus/fugu/original-kernel-headers/linux/
kct.h 71 struct ct_event event; member in struct:kct_packet
82 # define foreach_attchmt(Event, Attchmt) \
83 if ((Event)->attchmt_size) \
84 for ((Attchmt) = (Event)->attachments; \
86 (Event)->attachments) + \
87 (Event)->attchmt_size); \
  /external/ltrace/sysdeps/linux-gnu/
trace.c 155 event_for_pid(Event *event, void *data)
157 if (event->proc != NULL && event->proc->pid == (pid_t)(uintptr_t)data)
253 static Event *process_vfork_on_event(struct event_handler *super, Event *event);
306 * vforked process. We set up event handler specially to hint
379 * edge of an instruction. So for tasks that have a breakpoint event
383 undo_breakpoint(Event *event, void *data
446 Event *event = *eventp; local
    [all...]
  /frameworks/base/services/usage/java/com/android/server/usage/
UsageStatsService.java 27 import android.app.usage.UsageEvents.Event;
590 * Assuming the event's timestamp is measured in milliseconds since boot,
593 private void convertToSystemTimeLocked(UsageEvents.Event event) {
594 event.mTimeStamp = Math.max(0, event.mTimeStamp - mRealTimeSnapshot) + mSystemTimeSnapshot;
610 void reportEvent(UsageEvents.Event event, int userId) {
614 convertToSystemTimeLocked(event);
621 event.mPackage, userId, elapsedRealtime)
1382 UsageEvents.Event event = new UsageEvents.Event(); local
1400 UsageEvents.Event event = new UsageEvents.Event(); local
1417 UsageEvents.Event event = new UsageEvents.Event(); local
1435 UsageEvents.Event event = new UsageEvents.Event(); local
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactModifierTests.java 25 import android.provider.ContactsContract.CommonDataKinds.Event;
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
CountModifierTest.java 22 import org.apache.harmony.jpda.tests.framework.jdwp.Event;
29 * JDWP Unit test for Count event modifier.
41 // The name of the test method where we set our event requests.
44 // The name of the test method where we set our event requests.
62 * This testcase is for BREAKPOINT event with Count modifier.
66 * BREAKPOINT event occurs once after having called the method (count - 1)
87 * This testcase is for METHOD_ENTRY event with Count modifier.
91 * method multiple times and verifies that requested METHOD_ENTRY event
107 * This testcase is for METHOD_EXIT event with Count modifier.
111 * method multiple times and verifies that requested METHOD_EXIT event
225 Event event = builder.build(); local
    [all...]
ThreadOnlyModifierTest.java 22 import org.apache.harmony.jpda.tests.framework.jdwp.Event;
30 * JDWP Unit test for ThreadOnly event modifier.
41 // The name of the test method where we set our event requests.
44 // The name of the test method where we set our event requests.
55 * This testcase is for BREAKPOINT event with ThreadOnly modifier.
59 * BREAKPOINT event occurs only in the
78 * This testcase is for METHOD_ENTRY event with ThreadOnly modifier.
83 * multiple times and verifies that requested METHOD_ENTRY event occurs
97 * This testcase is for METHOD_EXIT event with ThreadOnly modifier.
102 * multiple times and verifies that requested METHOD_EXIT event occurs onl
252 Event event = builder.setThreadOnly(threadID).build(); local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
EventLocationEventTestCase.java 21 import org.apache.harmony.jpda.tests.framework.jdwp.Event;
34 * Base class to test event with LocationOnly modifier.
43 protected abstract void checkEvent(ParsedEvent event);
48 // Request event for all possible locations in the expected
54 // Wait for the event.
55 EventPacket event = debuggeeWrapper.vmMirror.receiveEvent(); local
56 ParsedEvent[] parsedEvents = ParsedEvent.parseEventPacket(event);
58 // We expect only one event.
63 // Check this is the event we expect.
64 assertEquals("Invalid event kind,"
123 Event event = builder.build(); local
    [all...]

Completed in 522 milliseconds

<<11121314151617181920>>