/external/chromium_org/ui/message_center/ |
notification_types.h | 40 MIN_PRIORITY = -2,
|
notification.cc | 110 return is_read_ || optional_fields_.priority == MIN_PRIORITY;
|
notification_list_unittest.cc | 354 AddPriorityNotification(MIN_PRIORITY); 381 AddPriorityNotification(MIN_PRIORITY);
|
/packages/apps/Browser/src/com/android/browser/ |
BackgroundHandler.java | 30 sLooperThread = new HandlerThread("BackgroundHandler", HandlerThread.MIN_PRIORITY);
|
DataController.java | 143 setPriority(Thread.MIN_PRIORITY);
|
/external/chromium_org/chrome/browser/extensions/api/declarative/ |
declarative_rule_unittest.cc | 217 SummingAction(int increment, int min_priority) 218 : increment_(increment), min_priority_(min_priority) {} 225 int min_priority = 0; local 238 dict->GetInteger("priority", &min_priority); 240 new SummingAction(increment, min_priority));
|
/art/runtime/ |
thread_android.cc | 37 ANDROID_PRIORITY_LOWEST, // 1 (MIN_PRIORITY)
|
thread.h | 76 // Thread priorities. These must match the Thread.MIN_PRIORITY,
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
ThreadFactoryBuilder.java | 95 checkArgument(priority >= Thread.MIN_PRIORITY, 96 "Thread priority (%s) must be >= %s", priority, Thread.MIN_PRIORITY);
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
ThreadFactoryBuilderTest.java | 118 for (int i = Thread.MIN_PRIORITY; i <= Thread.MAX_PRIORITY; i++) { 127 builder.setPriority(Thread.MIN_PRIORITY - 1);
|
/packages/apps/Mms/src/com/android/mms/util/ |
BackgroundLoaderManager.java | 158 if (t.getPriority() != Thread.MIN_PRIORITY) 159 t.setPriority(Thread.MIN_PRIORITY);
|
DraftCache.java | 84 thread.setPriority(Thread.MIN_PRIORITY);
|
/dalvik/tests/083-jit-regressions/src/ |
Main.java | 59 SpinThread slow = new SpinThread(Thread.MIN_PRIORITY);
|
/dalvik/vm/os/ |
android.cpp | 36 ANDROID_PRIORITY_LOWEST, /* 1 (MIN_PRIORITY) */
|
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
ThreadingManager.java | 64 t.setPriority(Thread.MIN_PRIORITY);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ThreadGroupTest.java | 319 testRoot.setMaxPriority(Thread.MIN_PRIORITY); 326 .getMaxPriority() == Thread.MIN_PRIORITY); 528 testRoot.setMaxPriority(Thread.MIN_PRIORITY - 1); 529 passed = testRoot.getMaxPriority() == Thread.MIN_PRIORITY; 531 "setMaxPriority: Any value smaller than MIN_PRIORITY is adjusted to MIN_PRIORITY. Before: " 542 // with priority < Thread.MIN_PRIORITY 543 final int TOTAL_DEPTH = testRoot.getMaxPriority() - Thread.MIN_PRIORITY
|
/art/runtime/native/ |
java_lang_Thread.cc | 140 * from Thread.MIN_PRIORITY to Thread.MAX_PRIORITY (1-10), with "normal"
|
/dalvik/vm/native/ |
java_lang_VMThread.cpp | 192 * from Thread.MIN_PRIORITY to Thread.MAX_PRIORITY (1-10), with "normal"
|
/libcore/libart/src/main/java/java/lang/ |
ThreadGroup.java | 576 * Thread.MAX_PRIORITY or less than Thread.MIN_PRIORITY 582 if (newMax < Thread.MIN_PRIORITY) { 583 newMax = Thread.MIN_PRIORITY;
|
Thread.java | 117 public static final int MIN_PRIORITY = 1; 928 * or less than {@link #MIN_PRIORITY} 931 if (priority < Thread.MIN_PRIORITY || priority > Thread.MAX_PRIORITY) { [all...] |
/libcore/libdvm/src/main/java/java/lang/ |
ThreadGroup.java | 576 * Thread.MAX_PRIORITY or less than Thread.MIN_PRIORITY 582 if (newMax < Thread.MIN_PRIORITY) { 583 newMax = Thread.MIN_PRIORITY;
|
Thread.java | 117 public static final int MIN_PRIORITY = 1; 950 * or less than {@link #MIN_PRIORITY} 953 if (priority < Thread.MIN_PRIORITY || priority > Thread.MAX_PRIORITY) { [all...] |
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
ImageProcessingActivity.java | 64 setPriority(MIN_PRIORITY);
|
/packages/apps/Mms/src/com/android/mms/data/ |
Conversation.java | [all...] |
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
BatteryStatsHelper.java | 356 mRequestThread.setPriority(Thread.MIN_PRIORITY); [all...] |