Home
last modified time | relevance | path

Searched refs:MIN_PRIORITY (Results 1 – 5 of 5) sorted by relevance

/external/guava/guava/src/com/google/common/util/concurrent/
DThreadFactoryBuilder.java95 checkArgument(priority >= Thread.MIN_PRIORITY, in setPriority()
96 "Thread priority (%s) must be >= %s", priority, Thread.MIN_PRIORITY); in setPriority()
/external/chromium_org/ui/message_center/
Dnotification_types.h37 MIN_PRIORITY = -2, enumerator
Dnotification.cc107 return is_read_ || optional_fields_.priority == MIN_PRIORITY; in IsRead()
Dnotification_list_unittest.cc356 AddPriorityNotification(MIN_PRIORITY); in TEST_F()
383 AddPriorityNotification(MIN_PRIORITY); in TEST_F()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DThreadFactoryBuilderTest.java118 for (int i = Thread.MIN_PRIORITY; i <= Thread.MAX_PRIORITY; i++) { in testPriority_custom()
127 builder.setPriority(Thread.MIN_PRIORITY - 1); in testPriority_tooLow()