/external/chromium_org/cc/resources/ |
priority_calculator.h | 32 static inline int max_priority(int a, int b) { function in class:cc::PriorityCalculator
|
/external/chromium_org/ui/message_center/ |
notification_types.h | 44 MAX_PRIORITY = 2,
|
notification_list_unittest.cc | 303 AddPriorityNotification(MAX_PRIORITY); 314 AddPriorityNotification(MAX_PRIORITY); 427 priority.priority = MAX_PRIORITY; 606 AddPriorityNotification(MAX_PRIORITY);
|
/cts/tests/tests/os/src/android/os/cts/ |
HandlerThreadTest.java | 32 new HandlerThread("test", Thread.MAX_PRIORITY);
|
/art/runtime/ |
thread_android.cc | 46 ANDROID_PRIORITY_URGENT_DISPLAY // 10 (MAX_PRIORITY)
|
thread.h | 77 // Thread.NORM_PRIORITY, and Thread.MAX_PRIORITY constants.
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
ThreadFactoryBuilder.java | 97 checkArgument(priority <= Thread.MAX_PRIORITY, 98 "Thread priority (%s) must be <= %s", priority, Thread.MAX_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++) { 135 builder.setPriority(Thread.MAX_PRIORITY + 1);
|
/dalvik/tests/083-jit-regressions/src/ |
Main.java | 61 SpinThread fast2 = new SpinThread(Thread.MAX_PRIORITY);
|
/dalvik/vm/os/ |
android.cpp | 45 ANDROID_PRIORITY_URGENT_DISPLAY /* 10 (MAX_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"
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ThreadTest.java | 406 st.setPriority(Thread.MAX_PRIORITY); 408 st.getPriority() == Thread.MAX_PRIORITY); 809 st.setPriority(Thread.MAX_PRIORITY); 811 st.getPriority() == Thread.MAX_PRIORITY);
|
ThreadGroupTest.java | 518 testRoot.setMaxPriority(Thread.MAX_PRIORITY + 1); 592 testRoot.setMaxPriority(Thread.MAX_PRIORITY); 597 "Max Priority = Thread.MAX_PRIORITY should be possible if the test is run with default system ThreadGroup as root",
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
TCPMessageProcessor.java | 93 thread.setPriority(Thread.MAX_PRIORITY);
|
TLSMessageProcessor.java | 103 thread.setPriority(Thread.MAX_PRIORITY);
|
UDPMessageProcessor.java | 157 thread.setPriority(Thread.MAX_PRIORITY);
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
FileCleaningTracker.java | 191 setPriority(Thread.MAX_PRIORITY);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
GraphRunner.java | 485 private final int MAX_PRIORITY = Integer.MAX_VALUE; 507 : (filter.canSchedule() ? (MAX_PRIORITY - filter.getScheduleCount()) [all...] |
/libcore/libart/src/main/java/java/lang/ |
ThreadGroup.java | 38 private int maxPriority = Thread.MAX_PRIORITY; 576 * Thread.MAX_PRIORITY or less than Thread.MIN_PRIORITY
|
Thread.java | 110 public static final int MAX_PRIORITY = 10; 927 * @throws IllegalArgumentException - if the new priority is greater than {@link #MAX_PRIORITY} 931 if (priority < Thread.MIN_PRIORITY || priority > Thread.MAX_PRIORITY) { [all...] |
/libcore/libdvm/src/main/java/java/lang/ |
ThreadGroup.java | 38 private int maxPriority = Thread.MAX_PRIORITY; 576 * Thread.MAX_PRIORITY or less than Thread.MIN_PRIORITY
|
Thread.java | 110 public static final int MAX_PRIORITY = 10; 949 * @throws IllegalArgumentException - if the new priority is greater than {@link #MAX_PRIORITY} 953 if (priority < Thread.MIN_PRIORITY || priority > Thread.MAX_PRIORITY) { [all...] |
/external/chromium_org/cc/layers/ |
tiled_layer.cc | 606 priority = PriorityCalculator::max_priority(
|
/packages/apps/VideoEditor/src/com/android/videoeditor/ |
VideoEditorActivity.java | [all...] |