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

1 2

  /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/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");
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
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...]
ConsoleHandlerTest.java 30 import java.util.logging.Level;
80 "java.util.logging.ConsoleHandler.level"));
89 assertSame(h.getLevel(), Level.INFO);
100 p.put("java.util.logging.ConsoleHandler.level", "FINE");
110 "java.util.logging.ConsoleHandler.level"), "FINE");
114 assertSame(h.getLevel(), Level.parse("FINE"));
126 p.put("java.util.logging.ConsoleHandler.level", INVALID_LEVEL);
134 "java.util.logging.ConsoleHandler.level"), INVALID_LEVEL);
138 assertSame(h.getLevel(), Level.INFO);
142 h.publish(new LogRecord(Level.SEVERE, "test"))
    [all...]
LoggerTest.java 29 import java.util.logging.Level;
236 // config the level
238 p.put("testGetLogger_Normal_ANewLogger.level", "ALL");
254 // check it's set to the preconfigured level
255 assertSame(Level.ALL, log.getLevel());
264 * Test getLogger(String), getting a logger with invalid level configured.
267 // config the level
270 .put("testGetLogger_InvalidLevel_ANewLogger.level",
319 // check it's set to the preconfigured level
320 assertSame(Level.INFO, log.getLevel())
    [all...]
SocketHandlerTest.java 32 import java.util.logging.Level;
101 props.put(".level", "FINE");
102 props.put("java.util.logging.ConsoleHandler.level", "OFF");
106 props.put("foo.level", "WARNING");
107 props.put("com.xyz.foo.level", "SEVERE");
115 "java.util.logging.SocketHandler.level"));
175 assertSame(h.getLevel(), Level.ALL);
190 "java.util.logging.SocketHandler.level"));
209 assertSame(h.getLevel(), Level.ALL);
229 p.put("java.util.logging.SocketHandler.level", "FINE")
    [all...]
FileHandlerTest.java 38 import java.util.logging.Level;
91 r = new LogRecord(Level.CONFIG, "msg");
101 props.put("java.util.logging.FileHandler.level", "FINE");
197 assertEquals(handler.getLevel(), Level.FINE);
223 assertEquals(handler.getLevel(), Level.ALL);
346 rs[i] = new LogRecord(Level.SEVERE, "msg" + i);
352 rs[i] = new LogRecord(Level.SEVERE, "msg" + i);
365 rs[i] = new LogRecord(Level.SEVERE, "msg" + i);
371 rs[i] = new LogRecord(Level.SEVERE, "msg" + i);
406 props.put("java.util.logging.FileHandler.level", "null")
    [all...]
LogRecordTest.java 24 import java.util.logging.Level;
43 lr = new LogRecord(Level.CONFIG, MSG);
58 LogRecord r = new LogRecord(Level.WARNING, null);
59 assertSame(r.getLevel(), Level.WARNING);
103 assertSame(lr.getLevel(), Level.CONFIG);
112 lr = new LogRecord(Level.ALL, null);
142 logger.log(Level.SEVERE, MSG);
147 lr = new LogRecord(Level.SEVERE, MSG);
154 lr = new LogRecord(Level.SEVERE, MSG);
161 lr = new LogRecord(Level.SEVERE, MSG)
    [all...]
HandlerTest.java 29 import java.util.logging.Level;
75 assertSame(h.getLevel(), Level.ALL);
87 p.put("java.util.logging.MockHandler.level", "FINE");
98 "java.util.logging.MockHandler.level"), "FINE");
102 assertSame(h.getLevel(), Level.ALL);
255 Level f = Level.CONFIG;
274 h.setLevel(Level.CONFIG);
286 LogRecord r = new LogRecord(Level.CONFIG, null);
289 h.setLevel(Level.CONFIG)
    [all...]
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...]
StreamHandlerTest.java 35 import java.util.logging.Level;
94 "java.util.logging.StreamHandler.level"));
103 assertSame(Level.INFO, h.getLevel());
115 p.put("java.util.logging.StreamHandler.level", "FINE");
125 "java.util.logging.StreamHandler.level"));
129 assertSame(h.getLevel(), Level.parse("FINE"));
142 p.put("java.util.logging.StreamHandler.level", INVALID_LEVEL);
150 "java.util.logging.StreamHandler.level"));
154 assertSame(Level.INFO, h.getLevel());
158 h.publish(new LogRecord(Level.SEVERE, "test"))
    [all...]
LogManagerTest.java 31 import java.util.logging.Level;
92 props.put(".level", "FINE");
93 props.put("java.util.logging.ConsoleHandler.level", "OFF");
97 props.put("LogManagerTestFoo.level", "WARNING");
330 assertEquals(Level.FINE, root.getLevel());
349 assertEquals(Level.FINE, root.getLevel());
353 assertEquals(Level.INFO, root.getLevel());
362 // assertEquals(Level.FINE, root.getLevel());
370 assertEquals(Level.FINE, root.getLevel());
375 assertEquals(Level.INFO, root.getLevel())
    [all...]
  /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...]
  /frameworks/base/media/libeffects/lvm/lib/Reverb/lib/
LVREV.h 109 LVM_UINT16 Level; /* Level, 0 to 100 representing percentage of reverb */
  /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...]
LogManager.java 108 * with ".level". Thus "alogger.level" defines a level for the logger named as
111 * the property file. The root logger's level can be defined by the property
112 * named as ".level".
168 root.setLevel(Level.INFO);
239 } else if (getProperty(parentName + ".level") != null ||
391 String property = props.getProperty(logger.getName() + ".level");
393 logger.setLevel(Level.parse(property));
420 * level is set to null, except the root logger's level is set t
    [all...]
Logger.java 47 * <p>Loggers "inherit" log level setting from their parent if their own level is
77 public void publish(Logger source, String tag, Level level, String message) {
78 LogRecord record = new LogRecord(level, message);
115 /** The logging level of this logger, or null if none is set. */
116 volatile Level levelObjVal;
119 * The effective logging level of this logger. In order of preference this
123 * <li>the logging level of the parent
124 * <li>the default level ({@link Level#INFO}
447 String level = manager.getProperty(handlerName + ".level"); local
    [all...]
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 113 /// Level - The level of the diagnostic, after it has been through mapping.
114 enum Level {
127 /// and level. If this is the first request for this diagnosic, it is
129 unsigned getCustomDiagID(Level L, StringRef Message);
139 /// isBuiltinWarningOrExtension - Return true if the unmapped diagnostic level
169 /// getWarningOptionForDiag - Return the lowest-level warning option that
269 /// object, classify the specified diagnostic ID into a Level, consumable by
274 DiagnosticIDs::Level getDiagnosticLevel(unsigned DiagID, SourceLocation Loc,
279 DiagnosticIDs::Level getDiagnosticLevel(unsigned DiagID
    [all...]
Diagnostic.h 110 /// Level - The level of the diagnostic, after it has been through mapping.
111 enum Level {
264 /// LastDiagLevel - This is the level of the last diagnostic emitted. This is
265 /// used to emit continuation diagnostics with the same level as the
267 DiagnosticIDs::Level LastDiagLevel;
480 /// and level. If this is the first request for this diagnosic, it is
482 unsigned getCustomDiagID(Level L, StringRef Message) {
483 return Diags->getCustomDiagID((DiagnosticIDs::Level)L, Message);
513 /// object, classify the specified diagnostic ID into a Level, consumable b
    [all...]
  /external/llvm/include/llvm/Support/
FileSystem.h 528 uint16_t Level;
541 /// Gets the current level. path is at level 0.
542 int level() const;
547 /// Goes up one level if Level > 0.
  /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...]
  /external/webrtc/src/modules/audio_processing/main/interface/
audio_processing.h 286 // Sets the aggressiveness of the suppressor. A higher level trades off
288 virtual int set_suppression_level(SuppressionLevel level) = 0;
355 // consistent signal level.
374 // to pass the current analog level from the audio HAL. Must be within the
376 virtual int set_stream_analog_level(int level) = 0;
379 // to obtain the recommended new analog level for the audio HAL. It is the
380 // users responsibility to apply this level.
404 // most of the input level range, and compresses (gradually reduces gain
405 // with increasing level) the input signal at higher levels. This mode is
406 // preferred on embedded devices where the capture signal level i
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp     [all...]
  /bionic/libc/kernel/arch-x86/asm/
voyager.h 313 __u8 Level;
  /development/ndk/platforms/android-9/arch-x86/include/asm/
voyager.h 313 __u8 Level;

Completed in 507 milliseconds

1 2