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

1 2 3 4 5 6 7 8 91011>>

  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Level.java 34 <p>The <code>Level</code> class may be subclassed to define a larger
35 level set.
40 public class Level extends Priority implements Serializable {
43 * TRACE level integer value.
54 final static public Level OFF = new Level(OFF_INT, "OFF", 0);
57 The <code>FATAL</code> level designates very severe error
60 final static public Level FATAL = new Level(FATAL_INT, "FATAL", 0);
63 The <code>ERROR</code> level designates error events tha
    [all...]
Priority.java 25 the {@link Level} class instead</font>.
30 transient int level; field in class:Priority
44 * @deprecated Use {@link Level#FATAL} instead.
46 final static public Priority FATAL = new Level(FATAL_INT, "FATAL", 0);
49 * @deprecated Use {@link Level#ERROR} instead.
51 final static public Priority ERROR = new Level(ERROR_INT, "ERROR", 3);
54 * @deprecated Use {@link Level#WARN} instead.
56 final static public Priority WARN = new Level(WARN_INT, "WARN", 4);
59 * @deprecated Use {@link Level#INFO} instead.
61 final static public Priority INFO = new Level(INFO_INT, "INFO", 6)
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LevelTest.java 22 import java.util.logging.Level;
112 assertSame(Level.SEVERE, Level.parse("SEVERE"));
113 assertSame(Level.WARNING, Level.parse("WARNING"));
114 assertSame(Level.INFO, Level.parse("INFO"));
115 assertSame(Level.CONFIG, Level.parse("CONFIG"));
116 assertSame(Level.FINE, Level.parse("FINE"))
    [all...]
  /external/llvm/include/llvm/MC/
MCCodeGenInfo.h 31 /// OptLevel - Optimization level.
33 CodeGenOpt::Level OptLevel;
38 CodeGenOpt::Level OL = CodeGenOpt::Default);
44 CodeGenOpt::Level getOptLevel() const { return OptLevel; }
47 void setOptLevel(CodeGenOpt::Level Level) { OptLevel = Level; }
  /libcore/dalvik/src/main/java/dalvik/system/
DalvikLogHandler.java 19 import java.util.logging.Level;
44 void publish(Logger source, String tag, Level level, String message);
  /libcore/ojluni/src/main/java/java/util/logging/
Level.java 38 * The Level class defines a set of standard logging levels that
39 * can be used to control logging output. The logging Level objects
41 * at a given level also enables logging at all higher levels.
43 * Clients should normally use the predefined Level constants such
44 * as Level.SEVERE.
56 * In addition there is a level OFF that can be used to turn
57 * off logging, and a level ALL that can be used to enable
61 * levels by subclassing Level. In such cases subclasses should
62 * take care to chose unique integer level values and to ensure that
69 public class Level implements java.io.Serializable
300 KnownLevel level; local
364 Level level = new Level(this.name, this.value, this.resourceBundleName); local
399 KnownLevel level; local
    [all...]
  /frameworks/base/core/java/com/android/internal/logging/
AndroidConfig.java 19 import java.util.logging.Level;
39 rootLogger.setLevel(Level.INFO);
42 Logger.getLogger("org.apache").setLevel(Level.WARNING);
  /external/llvm/include/llvm/CodeGen/
SchedulerRegistry.h 37 CodeGenOpt::Level);
63 CodeGenOpt::Level OptLevel);
68 CodeGenOpt::Level OptLevel);
75 CodeGenOpt::Level);
78 /// aware list scheduler that tries to increase instruction level parallelism
82 CodeGenOpt::Level);
87 CodeGenOpt::Level OptLevel);
93 CodeGenOpt::Level OptLevel);
97 CodeGenOpt::Level OptLevel);
102 CodeGenOpt::Level OptLevel)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 20 import java.util.logging.Level;
28 private LogRecord lr = new LogRecord(Level.CONFIG, MSG);
37 LogRecord lr2 = new LogRecord(Level.CONFIG, "MSG2");
43 assertSame(lr.getLevel(), Level.CONFIG);
44 lr.setLevel(Level.ALL);
45 assertSame(lr.getLevel(), Level.ALL);
46 lr.setLevel(Level.FINEST);
47 assertSame(lr.getLevel(), Level.FINEST);
83 lr = new LogRecord(Level.CONFIG, "msg thread");
OldLevelTest.java 21 import java.util.logging.Level;
28 Level l = new MockLevel("level1", 120);
29 assertNull("level's localization resource bundle name is not null", l
44 Level l = new MockLevel("level1", value1);
45 assertEquals("integer value for this level is non equal to actual value",
49 public static class MockLevel extends Level implements Serializable {
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
JDK14LoggerAdapter.java 27 import java.util.logging.Level;
60 * Is this logger instance enabled for the FINEST level?
62 * @return True if this Logger is enabled for level FINEST, false otherwise.
65 return logger.isLoggable(Level.FINEST);
69 * Log a message object at level FINEST.
75 if (logger.isLoggable(Level.FINEST)) {
76 log(SELF, Level.FINEST, msg, null);
81 * Log a message at level FINEST according to the specified format and
86 * for level FINEST.
95 if (logger.isLoggable(Level.FINEST))
    [all...]
  /external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
Log4jLoggerAdapter.java 29 import org.apache.log4j.Level;
44 * href="http://logging.apache.org/log4j/docs/api/org/apache/log4j/Level.html">
45 * <code>org.apache.log4j.Level</code></a> class.
48 * The TRACE level was introduced in log4j version 1.2.12. In order to avoid
50 * 1.2.12, the TRACE level will be mapped as DEBUG. See also <a
67 // Does the log4j version in use recognize the TRACE level?
68 // The trace level was introduced in log4j 1.2.12.
90 * Is this logger instance enabled for the TRACE level?
92 * @return True if this Logger is enabled for level TRACE, false otherwise.
103 * Log a message object at level TRACE
    [all...]
StaticLoggerBinder.java 27 import org.apache.log4j.Level;
75 Level level = Level.TRACE; local
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 22 import java.util.logging.Level;
52 protected static final Level dummyLevel = Level.FINE;
87 private void log( Level level, String msg, Throwable ex ) {
90 if (logger.isLoggable(level)) {
103 logger.logp( level, cname, method, msg );
105 logger.logp( level, cname, method, msg, ex );
112 * Logs a message with <code>java.util.logging.Level.FINE</code>.
118 log(Level.FINE, String.valueOf(message), null)
    [all...]
  /external/clang/include/clang/Frontend/
TextDiagnostic.h 45 /// \brief Print the diagonstic level to a raw_ostream.
47 /// This is a static helper that handles colorizing the level and formatting
53 DiagnosticsEngine::Level Level,
79 DiagnosticsEngine::Level Level,
86 DiagnosticsEngine::Level Level,
91 DiagnosticsEngine::Level Level,
    [all...]
DiagnosticRenderer.h 64 /// \brief The level of the last diagnostic emitted.
66 /// The level of the last diagnostic emitted. Used to detect level changes
68 DiagnosticsEngine::Level LastLevel;
76 DiagnosticsEngine::Level Level,
83 DiagnosticsEngine::Level Level,
88 DiagnosticsEngine::Level Level,
    [all...]
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 27 enum Level {
47 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
  /external/skia/src/core/
SkMipMap.h 30 struct Level {
35 bool extractLevel(const SkSize& scale, Level*) const;
37 bool getLevel(int index, Level*) const;
41 fLevels = (Level*)newData; // could be nullptr
45 Level* fLevels;
  /libcore/ojluni/src/main/java/sun/util/logging/
PlatformLogger.java 67 * global logging level = INFO
69 * java.util.logging.ConsoleHandler.level = INFO
88 * These constants should be shortcuts to Level enum constants that
90 * modification and avoid the conversion from int to Level enum.
92 * This can be done when JavaFX is converted to use the new PlatformLogger.Level API.
107 public static enum Level {
108 // The name and value must match that of {@code java.util.logging.Level}s.
121 * Associated java.util.logging.Level lazily initialized in
126 /* java.util.logging.Level */ Object javaLevel;
139 static Level valueOf(int level)
286 Level level = loggerProxy.getLevel(); local
320 public Level level() { method in class:PlatformLogger
478 volatile Level level; \/\/ current level set for this node (may be null) field in class:PlatformLogger.DefaultLoggerProxy
    [all...]
  /external/llvm/lib/Support/
IntervalMap.cpp 25 NodeRef Path::getLeftSibling(unsigned Level) const {
27 if (Level == 0)
31 unsigned l = Level - 1;
43 for (++l; l != Level; ++l)
48 void Path::moveLeft(unsigned Level) {
49 assert(Level != 0 && "Cannot move the root node");
54 l = Level - 1;
59 } else if (height() < Level)
61 path.resize(Level + 1, Entry(nullptr, 0, 0));
68 for (++l; l != Level; ++l)
    [all...]
  /external/llvm/lib/MC/
MCCodeGenInfo.cpp 19 CodeGenOpt::Level OL) {
  /frameworks/compile/mclinker/include/mcld/Script/
Assignment.h 27 enum Level {
36 Assignment(Level pLevel, Type pType, SymOperand& pSymbol, RpnExpr& pRpnExpr);
42 Level level() const { return m_Level; } function in class:mcld::Assignment
64 Level m_Level;
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 55 DiagnosticsEngine::Level Level,
75 if (Level == DiagnosticsEngine::Error &&
85 << (Level == DiagnosticsEngine::Remark ? "-R" : "-W") << Opt;
112 void TextDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level,
115 DiagnosticConsumer::HandleDiagnostic(Level, Info);
123 printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts);
139 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors,
141 TextDiagnostic::printDiagnosticMessage(OS, Level, DiagMessageStream.str()
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/log/
JavaUtilLog.java 21 import java.util.logging.Level;
29 * You can also set the logger level using <a href="http://java.sun.com/j2se/1.5.0/docs/guide/logging/overview.html">
35 private Level configuredLevel;
48 _logger.setLevel(Level.FINE);
60 _logger.log(Level.WARNING, format(msg, args));
70 _logger.log(Level.WARNING, msg, thrown);
75 _logger.log(Level.INFO, format(msg, args));
85 _logger.log(Level.INFO, msg, thrown);
90 return _logger.isLoggable(Level.FINE);
98 _logger.setLevel(Level.FINE)
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsAccess.java 44 * Represents an access level for the network usage history and statistics APIs.
47 * verifying that the caller's access level is at least the minimum required level.
50 Level.DEFAULT,
51 Level.USER,
52 Level.DEVICESUMMARY,
53 Level.DEVICE,
56 public @interface Level {
58 * Default, unprivileged access level.
62 * <p>Every app will have at least this access level
    [all...]

Completed in 454 milliseconds

1 2 3 4 5 6 7 8 91011>>