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

1 2 3 4 5 6 7 8

  /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) {
Category.java 162 * Determines whether the priority passed as parameter is enabled in the
163 * underlying SLF4J logger. Each log4j priority is mapped directly to its
167 * the priority to check against
171 public boolean isEnabledFor(Priority p) {
183 case Priority.FATAL_INT:
290 protected void forcedLog(String FQCN, Priority p, Object msg, Throwable t) {
295 public void log(String FQCN, Priority p, Object msg, Throwable t) {
300 public void log(Priority p, Object message, Throwable t) {
305 public void log(Priority p, Object message) {
310 private int priorityToLevelInt(Priority p)
    [all...]
  /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) {
AssetPathFetcher.java 6 import com.bumptech.glide.Priority;
27 public T loadData(Priority priority) throws Exception {
LocalUriFetcher.java 8 import com.bumptech.glide.Priority;
32 * is cleared before {@link #loadData(Priority)}} is called.
42 public final T loadData(Priority priority) throws Exception {
  /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',
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RenderScriptTest.java 54 mRS.setPriority(RenderScript.Priority.LOW);
55 mRS.setPriority(RenderScript.Priority.NORMAL);
60 * Verify Priority enum properties.
63 assertEquals(RenderScript.Priority.LOW,
64 RenderScript.Priority.valueOf("LOW"));
65 assertEquals(RenderScript.Priority.NORMAL,
66 RenderScript.Priority.valueOf("NORMAL"));
67 assertEquals(2, RenderScript.Priority.values().length);
  /frameworks/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...]
  /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...]
  /external/webrtc/webrtc/modules/pacing/mock/
mock_paced_sender.h 26 MOCK_METHOD6(SendPacket, bool(Priority priority,
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 30 /// \brief Default priority values for code-completion results based
33 /// \brief Priority for the next initialization in a constructor initializer
36 /// \brief Priority for an enumeration constant inside a switch whose
39 /// \brief Priority for a send-to-super completion.
41 /// \brief Priority for a declaration that is in the local scope.
43 /// \brief Priority for a member declaration found from the current
46 /// \brief Priority for a language keyword (that isn't any of the other
49 /// \brief Priority for a code pattern.
51 /// \brief Priority for a non-type declaration.
53 /// \brief Priority for a type
    [all...]