HomeSort by relevance Sort by last modified time
    Searched refs:workQueue (Results 1 - 6 of 6) sorted by null

  /external/webkit/JavaScriptCore/runtime/
JSString.cpp 36 Vector<Rope*, 32> workQueue;
48 workQueue.append(nextRope);
56 if (workQueue.isEmpty())
59 rope = workQueue.last();
60 workQueue.removeLast();
101 Vector<Rope::Fiber, 32> workQueue;
104 workQueue.append(m_fibers[i]);
109 // Copy the contents of the current rope into the workQueue, with the last item in 'currentFiber'
113 workQueue.append(rope->fibers(i));
122 if (workQueue.isEmpty())
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 398 * threads. We do not require that workQueue.poll() returning
399 * null necessarily means that workQueue.isEmpty(), so rely
407 private final BlockingQueue<Runnable> workQueue;
628 (runStateOf(c) == SHUTDOWN && ! workQueue.isEmpty()))
803 BlockingQueue<Runnable> q = workQueue;
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDevice.java 144 private static LinkedList<BluetoothJob> workQueue = new LinkedList<BluetoothJob>();
147 synchronized (workQueue) {
149 Log.d(TAG, workQueue.toString());
157 workQueue.add(job);
161 if (workQueue.size() == 1 || processNow) {
172 Iterator<BluetoothJob> it = workQueue.iterator();
238 synchronized (workQueue) {
240 Log.d(TAG, "onProfileStateChanged:" + workQueue.toString());
255 BluetoothJob job = workQueue.peek();
273 workQueue.poll()
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 255 milliseconds