/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
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...] |
DelegatingAction.java | 25 import org.eclipse.swt.widgets.Event; 135 public void runWithEvent(Event event) { 136 mAction.runWithEvent(event);
|
/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...] |
/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...] |
/external/autotest/frontend/client/src/autotest/common/table/ |
FragmentedTable.java | 6 import com.google.gwt.event.dom.client.ClickEvent; 9 import com.google.gwt.user.client.Event; 79 public HTMLTable.Cell getCellForEvent(ClickEvent event) { 80 return getCellForDomEvent(event); 98 protected Element getEventTargetCell(Event event) { 99 Element td = DOM.eventGetTarget(event);
|
/external/autotest/site_utils/ |
metadata_reporter.py | 41 _abort = threading.Event() 42 _queue_full = threading.Event()
|
/external/chromium-trace/catapult/devil/devil/android/perf/ |
surface_stats_collector.py | 37 self._get_data_event = threading.Event() 38 self._stop_event = threading.Event()
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/ |
play.js | 28 var willPlayEvent = document.createEvent('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/deqp/execserver/ |
xsWin32TestProcess.cpp | 75 // Event 77 Event::Event (bool manualReset, bool initialState) 85 Event::~Event (void) 90 void Event::setSignaled (void) 96 void Event::reset (void) 131 Event ioEvent (true, false); // Manual reset, non-signaled state. 158 // \note GetOverlappedResult() will fail with ERROR_IO_INCOMPLETE if IO event is not complete (should be). 226 Event ioEvent (true, false); // Manual reset, not signaled state [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
AbstractComboPropertyEditor.java | 26 import org.eclipse.swt.widgets.Event; 71 public void handleEvent(Event event) { 72 switch (event.keyCode) { 79 event.doit = false;
|
/external/ltrace/ |
proc.h | 47 /* Event handler that overrides the default one. Should 48 * return NULL if the event was handled, otherwise the 49 * returned event is passed to the default handler. */ 50 Event *(*on_event)(struct event_handler *self, Event *event); 52 /* Called when the event handler removal is requested. */ 199 * in the event queue, destroy it and free memory. */
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
TriggerService.java | 33 import com.googlecode.android_scripting.event.Event; 34 import com.googlecode.android_scripting.event.EventObserver; 129 public void onEventReceived(Event event) { 130 mTrigger.handleEvent(event, TriggerService.this);
|
/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
|
/external/valgrind/lackey/ |
lk_main.c | 79 // Every instruction executed has an "instr" event representing it. 87 // Instruction Memory accesses Event sequence 365 Ity_I1 is the guarding condition for the event. If NULL it is 418 Event; 430 notified event where possible (Dw immediately following Dr and 441 when there is no space to add a new event, and before entering a 450 instrumentation IR for each event, in the order in which they 453 static Event events[N_EVENTS]; 485 Event* ev; 529 Event* evt [all...] |