HomeSort by relevance Sort by last modified time
    Searched defs:Queue (Results 1 - 22 of 22) sorted by null

  /development/tools/axl/
chewie.py 16 class Queue:
18 self.queue = []
21 self.queue.append([url, time])
24 for x in range(len(self.queue)):
25 rec = self.queue[x]
27 del self.queue[x]
30 ## pull out request lag -- queue to start to done
56 queued = Queue()
  /dalvik/libcore/luni/src/main/java/java/util/
Queue.java 23 * Generally, a queue orders its elements by means of first-in-first-out.
24 * However, a priority queue orders its elements according to a comparator
28 * A typical queue does not allow {@code null} to be inserted as its element,
32 * in the queue.
34 * {@code Queue} does not provide blocking queue methods, which would block
37 * blocking queue methods.
39 public interface Queue<E> extends Collection<E> {
42 * Inserts the specified element into the queue provided that the condition
48 * the specified element to insert into the queue
    [all...]
  /external/dropbear/
queue.h 35 struct Queue {
43 void initqueue(struct Queue* queue);
44 int isempty(struct Queue* queue);
45 void* dequeue(struct Queue* queue);
46 void *examine(struct Queue* queue);
47 void enqueue(struct Queue* queue, void* item)
    [all...]
  /external/opencore/codecs_v2/omx/omx_queue/src/
pv_omx_queue.cpp 107 OSCL_EXPORT_REF OMX_ERRORTYPE Queue(QueueType* aQueue, void* aData)
  /external/gtest/samples/
sample3-inl.h 40 // Queue is a simple queue implemented as a singled-linked list.
44 class Queue;
46 // QueueNode is a node in a Queue, which consists of an element of
50 friend class Queue<E>;
56 // Gets the next node in the queue.
74 class Queue {
77 // Creates an empty queue.
78 Queue() : head_(NULL), last_(NULL), size_(0) {}
80 // D'tor. Clears the queue
    [all...]
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
msgutil.py 40 import Queue
162 self._queue = Queue.Queue()
192 except Queue.Empty:
224 self._queue = Queue.Queue()
  /external/webkit/WebKitTools/pywebsocket/test/
test_mock.py 36 import Queue
75 def __init__(self, conn, queue):
77 self._queue = queue
86 queue = Queue.Queue()
87 reader = LineReader(conn, queue)
88 self.failUnless(queue.empty())
90 read = queue.get()
mock.py 35 import Queue
112 self._queue = Queue.Queue()
test_msgutil.py 36 import Queue
115 onmessage_queue = Queue.Queue()
135 # Use a queue to check the bytes written by MessageSender.
138 send_queue = Queue.Queue()
  /external/opencore/baselibs/threadsafe_callback_ao/src/
threadsafe_callback_ao.cpp 105 queue_deinit_status = QueueDeInit(); // Destroy the queue
200 status = Queue(EventData);
213 //// QUEUE OPERATIONS
217 /////CREATE QUEUE AND INIT ///////////////////
255 ///////////// DESTROY QUEUE ///////////////////////
274 /////////////QUEUE ONE ELEMENT //////////////////////
275 OSCL_EXPORT_REF OsclReturnCode ThreadSafeCallbackAO::Queue(OsclAny *pData)
279 // Wait on the remote thread control semaphore. If the queue is full, must block and wait
280 // for the AO to dequeue some previous event. If the queue is not full, proceed
286 // protect queue acces
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
test_shell_thread.py 31 shared queue.
34 the output. When there are no more URLs to process in the shared queue, the
41 import Queue
174 filename_list_queue: A thread safe Queue class that contains lists
176 result_queue: A thread safe Queue class that will contain tuples of
268 filename queue and run the tests until we run out of urls.
302 except Queue.Empty:
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 99 def Queue (jet, queueSeg):
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
queue.h 0 // queue.h
35 // class Queue {
40 // Queue(...);
41 // // Returns the head of the queue
45 // // Removes the head of the queue
49 // // Does the queue contain no elements?
51 // // Remove all states from queue
55 // State queue types.
57 TRIVIAL_QUEUE = 0, // Single state queue
58 FIFO_QUEUE = 1, // First-in, first-out queue
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
run_chromium_webkit_tests.py 53 import Queue
192 self._result_queue = Queue.Queue()
416 """Create the thread safe queue of lists of (test filenames, test URIs)
417 tuples. Each TestShellThread pulls a list from this queue and runs
425 The Queue of lists of TestInfo objects.
430 filename_queue = Queue.Queue()
469 filename_queue = Queue.Queue()
    [all...]
  /external/v8/tools/
test.py 44 from Queue import Queue, Empty
59 self.queue = Queue(len(cases))
61 self.queue.put_nowait(case)
109 test = self.queue.get_nowait()
    [all...]
  /prebuilt/common/netbeans-visual/
org-openide-util.jar 
  /prebuilt/common/jython/
jython.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 413 milliseconds