HomeSort by relevance Sort by last modified time
    Searched refs:Queue (Results 26 - 50 of 343) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
ondemand_supply_task_test.cc 68 void Queue(const std::string& key) { task_->Queue(key); }
107 Queue("data/XA");
118 Queue("data/XA");
145 Queue("data/XA");
146 Queue("data/XA/aa");
147 Queue("data/XA/aa/bb");
148 Queue("data/XA/aa/bb/cc");
180 Queue("data/XA");
192 Queue("data/XA")
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingQueueTest.java 31 import java.util.Queue;
43 private final Queue<T> backingQueue;
45 StandardImplForwardingQueue(Queue<T> backingQueue) {
49 @Override protected Queue<T> delegate() {
106 private Queue<String> forward;
107 private Queue<String> queue; field in class:ForwardingQueueTest
116 @Override protected Queue<String> create(String[] elements) {
137 queue = createProxyInstance(Queue.class)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
msgutil.py 41 import Queue
127 self._queue = Queue.Queue()
160 except Queue.Empty:
193 self._queue = Queue.Queue()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
msgutil.py 41 import Queue
127 self._queue = Queue.Queue()
160 except Queue.Empty:
193 self._queue = Queue.Queue()
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
BaseKeyPool.java 7 import java.util.Queue;
11 private final Queue<T> keyPool;
  /external/glide/library/src/main/java/com/bumptech/glide/util/
ByteArrayPool.java 6 import java.util.Queue;
16 private final Queue<byte[]> tempQueue = new LinkedList<byte[]>();
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
FrameSourceFilter.java 19 import java.util.Queue;
30 private final Queue<Frame> mFrames = new LinkedList<Frame>();
  /external/chromium_org/testing/gtest/samples/
sample5_unittest.cc 164 Queue<int> q0_;
165 Queue<int> q1_;
166 Queue<int> q2_;
  /external/protobuf/gtest/samples/
sample5_unittest.cc 164 Queue<int> q0_;
165 Queue<int> q1_;
166 Queue<int> q2_;
  /ndk/sources/third_party/googletest/googletest/samples/
sample5_unittest.cc 164 Queue<int> q0_;
165 Queue<int> q1_;
166 Queue<int> q2_;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-distance.h 27 #include "fst/lib/queue.h"
33 template <class Arc, class Queue, class ArcFilter>
37 Queue *state_queue; // Queue discipline used; owned by caller
42 ShortestDistanceOptions(Queue *q, ArcFilter filt, StateId src = kNoStateId,
54 template<class Arc, class Queue, class ArcFilter>
63 const ShortestDistanceOptions<Arc, Queue, ArcFilter> &opts,
80 Queue *state_queue_;
93 template <class Arc, class Queue, class ArcFilter>
94 void ShortestDistanceState<Arc, Queue, ArcFilter>::ShortestDistance
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForQueuesInJavaUtil.java 30 import java.util.Queue;
37 * Generates a test suite covering the {@link Queue} implementations in the
81 @Override public Queue<String> create(String[] elements) {
99 @Override public Queue<String> create(String[] elements) {
116 @Override public Queue<String> create(String[] elements) {
133 @Override public Queue<String> create(String[] elements) {
155 @Override public Queue<String> create(String[] elements) {
171 @Override public Queue<String> create(String[] elements) {
  /external/openfst/src/include/fst/extensions/pdt/
shortest-path.h 40 template <class Arc, class Queue>
364 // algorithm that removes a state s from a queue (defined by a
365 // user-provided queue type) and relaxes the destination states of
379 template<class Arc, class Queue>
394 const PdtShortestPathOptions<Arc, Queue> &opts)
471 Queue *state_queue_; // current state queue
485 template<class Arc, class Queue>
486 void PdtShortestPath<Arc, Queue>::Init(MutableFst<Arc> *ofst) {
526 template<class Arc, class Queue>
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_queue.py 1 # Some simple queue module tests, plus some failure conditions
2 # to ensure the Queue locks remain stable.
3 import Queue
11 # A thread to run a function that unclogs a blocked Queue.
36 # trigger_func must guarantee to change queue state so that block_func can make
92 raise RuntimeError, "Call this function with an empty queue"
93 # I guess we better check things actually queue correctly a little :)
97 target_order = dict(Queue = [111, 333, 222],
102 "Didn't seem to queue the correct data!")
105 self.assertTrue(not q.empty(), "Queue should not be empty"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_queue.py 1 # Some simple queue module tests, plus some failure conditions
2 # to ensure the Queue locks remain stable.
3 import Queue
11 # A thread to run a function that unclogs a blocked Queue.
36 # trigger_func must guarantee to change queue state so that block_func can make
92 raise RuntimeError, "Call this function with an empty queue"
93 # I guess we better check things actually queue correctly a little :)
97 target_order = dict(Queue = [111, 333, 222],
102 "Didn't seem to queue the correct data!")
105 self.assertTrue(not q.empty(), "Queue should not be empty"
    [all...]
  /libcore/luni/src/main/java/java/util/
AbstractQueue.java 14 * This class provides skeletal implementations of some {@link Queue}
23 * <p>A <tt>Queue</tt> implementation that extends this class must
24 * minimally define a method {@link Queue#offer} which does not permit
26 * Queue#peek}, {@link Queue#poll}, {@link Collection#size}, and
37 implements Queue<E> {
46 * Inserts the specified element into this queue if it is possible to do so
59 * prevents it from being added to this queue
61 * this queue does not permit null elements
63 * prevents it from being added to this queue
    [all...]
  /external/openfst/src/include/fst/
shortest-distance.h 31 #include <fst/queue.h>
38 template <class Arc, class Queue, class ArcFilter>
42 Queue *state_queue; // Queue discipline used; owned by caller
52 // queue discipline is shortest-first and all the
56 ShortestDistanceOptions(Queue *q, ArcFilter filt, StateId src = kNoStateId,
71 template<class Arc, class Queue, class ArcFilter>
80 const ShortestDistanceOptions<Arc, Queue, ArcFilter> &opts,
98 Queue *state_queue_;
115 template <class Arc, class Queue, class ArcFilter
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
handler.py 40 queue = taskqueue.Queue()
41 queue.purge()
43 queue.add(taskqueue.Task(url='/_cron'))
46 queue = taskqueue.Queue()
47 queue.add(taskqueue.Task(url='/%s'%servlet_path))
  /external/guava/guava/src/com/google/common/io/
LineReader.java 26 import java.util.Queue;
43 private final Queue<String> lines = new LinkedList<String>();
  /external/guava/guava/src/com/google/common/util/concurrent/
ExecutionList.java 22 import java.util.Queue;
52 private final Queue<RunnableExecutorPair> runnables = Lists.newLinkedList();
  /external/llvm/include/llvm/CodeGen/
LatencyPriorityQueue.h 1 //===---- LatencyPriorityQueue.h - A latency-oriented priority queue ------===//
24 /// Sorting functions for the Available queue.
37 /// Queue, the number of nodes that the node is the sole unscheduled
42 /// Queue - The queue.
43 std::vector<SUnit*> Queue;
78 bool empty() const override { return Queue.empty(); }
  /external/mockito/src/org/mockito/internal/stubbing/
StubbedInvocationMatcher.java 8 import java.util.Queue;
20 private final Queue<Answer> answers = new ConcurrentLinkedQueue<Answer>();
  /frameworks/volley/src/com/android/volley/
RequestQueue.java 26 import java.util.Queue;
32 * A request dispatch queue with a thread pool of dispatchers.
53 private final Map<String, Queue<Request<?>>> mWaitingRequests =
54 new HashMap<String, Queue<Request<?>>>();
58 * will be in this set if it is waiting in any queue or currently being processed by
63 /** The cache triage queue. */
67 /** The queue of requests that are actually going out to the network. */
128 * Starts the dispatchers in this queue.
182 * Cancels all requests in this queue for which the given filter applies.
196 * Cancels all requests in this queue with the given tag. Tag must be non-nul
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
PerfMeasurement.java 28 import java.util.Queue;
73 private Queue<Long> mTimestampQueue = new LinkedList<>();
74 private Queue<Long> mCpuDurationsQueue = new LinkedList<>();
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
ondemand_supply_task.h 46 // Adds lookup key string |key| to the queue of data to be retrieved.
47 void Queue(const std::string& key);

Completed in 744 milliseconds

12 3 4 5 6 7 8 91011>>