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

1 2 3 4 5 6 7 8 91011>>

  /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...]
MemoryHandlerTest.java 29 import java.util.logging.Level;
80 props.put("java.util.logging.MemoryHandler.level", "FINE");
111 assertEquals(handler.getLevel(), Level.OFF);
112 assertEquals(handler.getPushLevel(), Level.WARNING);
113 assertFalse(handler.isLoggable(new LogRecord(Level.SEVERE, "test")));
126 assertEquals(handler.getLevel(), Level.FINE);
127 assertEquals(handler.getPushLevel(), Level.WARNING);
128 assertTrue(handler.isLoggable(new LogRecord(Level.SEVERE, "test")));
138 LogRecord record = new LogRecord(Level.FINER, "MSG1");
141 record = new LogRecord(Level.FINE, "MSG2")
    [all...]
  /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);
  /external/webkit/Source/WebKit/chromium/public/
WebConsoleMessage.h 39 enum Level {
46 Level level; member in struct:WebKit::WebConsoleMessage
50 : level(LevelLog) { }
51 WebConsoleMessage(Level level, const WebString& text)
52 : level(level)
  /libcore/luni/src/main/java/java/util/logging/
Level.java 32 * {@code Level} objects are used to indicate the level of logging. There are a
34 * Enabling a certain logging level also enables all logging levels with larger
42 public class Level implements Serializable {
46 private static final List<Level> levels = new ArrayList<Level>(9);
49 * The OFF level provides no logging messages.
51 public static final Level OFF = new Level("OFF", Integer.MAX_VALUE);
54 * The SEVERE level provides severe failure messages
    [all...]
  /external/clang/include/clang/Frontend/
TextDiagnostic.h 63 /// \brief The level of the last diagnostic emitted.
65 /// The level of the last diagnostic emitted. Used to detect level changes
67 DiagnosticsEngine::Level LastLevel;
83 /// \param Level The level of the diagnostic to be emitted.
87 void emitDiagnostic(SourceLocation Loc, DiagnosticsEngine::Level Level,
91 /// \brief Print the diagonstic level to a raw_ostream.
93 /// This is a static helper that handles colorizing the level and formattin
    [all...]
TextDiagnosticPrinter.h 53 void HandleDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info);
  /external/llvm/lib/Target/PTX/
PTX.h 1 //===-- PTX.h - Top-level interface for PTX representation ------*- C++ -*-===//
29 CodeGenOpt::Level OptLevel);
32 CodeGenOpt::Level OptLevel);
35 CodeGenOpt::Level OptLevel);
PTXTargetMachine.h 62 CodeGenOpt::Level OptLevel);
64 CodeGenOpt::Level OptLevel);
70 CodeGenOpt::Level,
76 CodeGenOpt::Level,
85 CodeGenOpt::Level,
92 bool addCommonCodeGenPasses(PassManagerBase &, CodeGenOpt::Level,
  /external/webrtc/src/modules/audio_processing/main/source/
noise_suppression_impl.h 38 virtual int set_level(Level level);
39 virtual Level level() const;
50 Level level_;
  /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);
69 CodeGenOpt::Level OptLevel);
74 CodeGenOpt::Level OptLevel);
79 CodeGenOpt::Level OptLevel);
86 CodeGenOpt::Level);
89 /// aware list scheduler that tries to increase instruction level parallelism
93 CodeGenOpt::Level);
97 CodeGenOpt::Level OptLevel);
102 CodeGenOpt::Level OptLevel);
107 CodeGenOpt::Level OptLevel)
    [all...]
MachineFunctionAnalysis.h 29 CodeGenOpt::Level OptLevel;
35 CodeGenOpt::Level OL = CodeGenOpt::Default);
39 CodeGenOpt::Level getOptLevel() const { return OptLevel; }
  /external/llvm/lib/Target/Blackfin/
Blackfin.h 1 //=== Blackfin.h - Top-level interface for Blackfin backend -----*- C++ -*-===//
27 CodeGenOpt::Level OptLevel);
  /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/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 22 import java.util.logging.Level;
47 protected static final Level dummyLevel = Level.FINE;
82 private void log( Level level, String msg, Throwable ex ) {
85 if (logger.isLoggable(level)) {
98 logger.logp( level, cname, method, msg );
100 logger.logp( level, cname, method, msg, ex );
107 * Logs a message with <code>java.util.logging.Level.FINE</code>.
113 log(Level.FINE, String.valueOf(message), null)
    [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(0, 0, 0));
68 for (++l; l != Level; ++l)
    [all...]
  /external/guava/src/com/google/common/io/
Flushables.java 21 import java.util.logging.Level;
55 logger.log(Level.WARNING,
73 logger.log(Level.SEVERE, "IOException should not have been thrown.", e);
Closeables.java 21 import java.util.logging.Level;
79 logger.log(Level.WARNING,
97 logger.log(Level.SEVERE, "IOException should not have been thrown.", e);
  /sdk/chimpchat/src/com/android/chimpchat/adb/
LoggingOutputReceiver.java 20 import java.util.logging.Level;
28 private final Level level; field in class:LoggingOutputReceiver
30 public LoggingOutputReceiver(Logger log, Level level) {
32 this.level = level;
38 log.log(level, line);
  /external/llvm/lib/Target/
TargetSubtargetInfo.cpp 26 CodeGenOpt::Level OptLevel,
  /external/llvm/include/llvm/Target/
TargetMachine.h 46 // Code generation optimization level.
48 enum Level {
92 /// CodeGenInfo - Low level target information such as relocation model.
259 CodeGenOpt::Level,
272 CodeGenOpt::Level,
285 CodeGenOpt::Level,
304 bool addCommonCodeGenPasses(PassManagerBase &, CodeGenOpt::Level,
315 CodeGenOpt::Level,
326 CodeGenOpt::Level,
337 CodeGenOpt::Level OptLevel
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/
customizations.js 3 $("#naMessage").show().html("<div><p><strong>This " + thing + " is not available with API Level " + selectedLevel + ".</strong></p>"
4 + "<p>To use this " + thing + ", your application must specify API Level " + minLevel + " or higher in its manifest "
5 + "and be compiled against a version of the Android library that supports an equal or higher API Level. To reveal this "
6 + "document, change the value of the API Level filter above.</p>"
7 + "<p><a href='" +toRoot+ "guide/appendix/api-levels.html'>What is the API Level?</a></p></div>");
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair.c 72 int Level, LevelCode, LevelPrefix, LevelSuffix, LevelSuffixSize;
99 Level = -1;
103 Level = +1;
105 pLevel[i] = (OMX_S16)Level;
107 DEBUG_PRINTF_2("Level[%d] = %d\n", i, pLevel[i]);
110 /* Decode (non zero) level values */
149 /* Level magnitude can't be 1 */
155 Level = (-LevelCode-1)>>1;
160 Level = (LevelCode+2)>>1;
162 pLevel[i] = (OMX_S16)Level;
    [all...]

Completed in 1188 milliseconds

1 2 3 4 5 6 7 8 91011>>