HomeSort by relevance Sort by last modified time
    Searched refs:Priority (Results 1 - 25 of 424) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Priority.java 28 public class Priority {
46 final static public Priority FATAL = new Level(FATAL_INT, "FATAL", 0);
51 final static public Priority ERROR = new Level(ERROR_INT, "ERROR", 3);
56 final static public Priority WARN = new Level(WARN_INT, "WARN", 4);
61 final static public Priority INFO = new Level(INFO_INT, "INFO", 6);
66 final static public Priority DEBUG = new Level(DEBUG_INT, "DEBUG", 7);
71 protected Priority() {
80 protected Priority(int level, String levelStr, int syslogEquivalent) {
91 if (o instanceof Priority) {
92 Priority r = (Priority) o
    [all...]
AppenderSkeleton.java 31 public void setThreshold(Priority threshold) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
DataFetcher.java 3 import com.bumptech.glide.Priority;
7 * resource load by {@link com.bumptech.glide.load.model.ModelLoader}. {@link #loadData(Priority)} may or may not be
9 * not be called. If {@link #loadData(Priority)} is called, then so {@link #cleanup()} will be called.
27 * @param priority The priority with which the request should be completed.
30 T loadData(Priority priority) throws Exception;
34 * after the data returned by {@link #loadData(Priority)} has been decoded by the
ByteArrayFetcher.java 3 import com.bumptech.glide.Priority;
22 public InputStream loadData(Priority priority) {
  /external/glide/library/src/main/java/com/bumptech/glide/
Priority.java 4 * Priorities for completing loads. If more than one load is queued at a time, the load with the higher priority will be
8 public enum Priority {
12 LOW, priority, enum constant in enum:Priority
  /external/clang/test/Index/
complete-type-factors.m 7 enum Priority {
13 enum Priority func2(int);
15 enum Priority test1(enum Priority priority, enum Color color, int integer) {
18 return priority;
26 + (void)method:(enum Color)color priority:(enum Priority)priority;
27 - (void)method:(enum Color)color priority:(enum Priority)priority
    [all...]
  /external/autotest/client/common_lib/
priorities.py 5 # the priority rework code is rolled out, any code that doesn't specify a
6 # priority, such as suites on old branches, will inherit a priority that makes
8 Priority = enum.Enum('Weekly', 'Daily', 'PostBuild', 'Default', 'Build',
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
lock.c 26 IN EFI_TPL Priority
33 provides mutual exclusion access at it's task priority
45 Priority - The task priority level of the lock
54 Lock->Tpl = Priority;
68 Raising to the task priority level of the mutual exclusion
94 restores the previous task priority level.
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RenderScriptTest.java 56 mRS.setPriority(RenderScript.Priority.LOW);
57 mRS.setPriority(RenderScript.Priority.NORMAL);
62 * Verify Priority enum properties.
65 assertEquals(RenderScript.Priority.LOW,
66 RenderScript.Priority.valueOf("LOW"));
67 assertEquals(RenderScript.Priority.NORMAL,
68 RenderScript.Priority.valueOf("NORMAL"));
69 assertEquals(2, RenderScript.Priority.values().length);
  /external/volley/src/test/java/com/android/volley/
RequestTest.java 19 import com.android.volley.Request.Priority;
31 TestRequest low = new TestRequest(Priority.LOW);
33 TestRequest low2 = new TestRequest(Priority.LOW);
35 TestRequest high = new TestRequest(Priority.HIGH);
37 TestRequest immediate = new TestRequest(Priority.IMMEDIATE);
49 private Priority mPriority = Priority.NORMAL;
50 public TestRequest(Priority priority) {
52 mPriority = priority;
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/transport/
TransportUtils.java 41 log(Priority.ERROR, TAG, "Transport not available");
47 static void log(@Priority int priority, String tag, String message) {
48 if (priority == Priority.WTF) {
50 } else if (Log.isLoggable(tag, priority)) {
51 Slog.println(priority, tag, message);
68 * Priority#WTF} all the others have the same value, so can be used directly
70 @IntDef({Priority.VERBOSE, Priority.DEBUG, Priority.INFO, Priority.WARN, Priority.WTF}
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PriorityParser.java 33 * Parser for Priority header.
48 * @param priority the header to parse
50 public PriorityParser(String priority) {
51 super(priority);
64 * @return SIPHeader (Priority object)
71 Priority priority = new Priority(); local
73 headerName(TokenTypes.PRIORITY);
75 priority.setHeaderName(SIPHeaderNames.PRIORITY)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Priority.java 35 * the Priority header.
43 public class Priority extends SIPHeader implements PriorityHeader {
65 /** priority field
67 protected String priority; field in class:Priority
71 public Priority() {
80 return priority;
84 * get the priority value.
88 return priority;
92 * Set the priority member
99 + "Priority, setPriority(), the priority parameter is null")
    [all...]
  /frameworks/hardware/interfaces/schedulerservice/1.0/
ISchedulingPolicyService.hal 19 enum Priority : int32_t {
25 * Request real-time priority for a specific thread in a process.
29 * @param priority Value within [Priority:MIN, Priority:MAX]
31 * @return success whether or not priority was successfully set
33 requestPriority(int32_t pid, int32_t tid, int32_t priority)
37 * Must return 0 if no priority is allowed.
39 * @return priority Max priority that can be set wit
    [all...]
  /external/webrtc/webrtc/modules/pacing/mock/
mock_paced_sender.h 26 MOCK_METHOD6(SendPacket, bool(Priority priority,
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Sema/
CodeCompleteConsumer.h 32 /// \brief Default priority values for code-completion results based
35 /// \brief Priority for the next initialization in a constructor initializer
38 /// \brief Priority for an enumeration constant inside a switch whose
41 /// \brief Priority for a send-to-super completion.
43 /// \brief Priority for a declaration that is in the local scope.
45 /// \brief Priority for a member declaration found from the current
48 /// \brief Priority for a language keyword (that isn't any of the other
51 /// \brief Priority for a code pattern.
53 /// \brief Priority for a non-type declaration.
55 /// \brief Priority for a type
    [all...]

Completed in 1476 milliseconds

1 2 3 4 5 6 7 8 91011>>