HomeSort by relevance Sort by last modified time
    Searched defs:Level (Results 1 - 25 of 46) 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...]
  /external/webrtc/src/modules/audio_processing/
level_estimator_impl.cc 26 class Level {
30 Level()
33 ~Level() {}
58 // Normalize by the max level.
98 Level* level = static_cast<Level*>(handle(0)); local
100 level->ProcessMuted(audio->samples_per_channel());
110 level->Process(mixed_data, audio->samples_per_channel());
129 Level* level = static_cast<Level*>(handle(0)) local
146 Level* level = static_cast<Level*>(handle); local
153 Level* level = static_cast<Level*>(handle); local
    [all...]
  /external/valgrind/main/helgrind/tests/
t2t.c 5 #define LEVEL 100
9 } Level;
11 static Level level[LEVEL]; variable
21 USAGE: t2t [many] [level] [loops]
22 many (default 100) : how many locks are created/locked/unlocked at a certain level.
23 level (default 1) : how many levels of "nested locks" are done
42 if (clo_level > LEVEL) {
43 printf("error argv[2] (level arg) %d > max LEVEL %d\n", clo_level, LEVEL)
    [all...]
  /external/llvm/include/llvm/Support/
CodeGen.h 40 // Code generation optimization level.
42 enum Level {
FileSystem.h 614 : Level(0)
618 uint16_t Level;
649 ++State->Level;
659 --State->Level;
673 /// Gets the current level. Starting path is at level 0.
674 int level() const { return State->Level; } function in class:llvm::sys::fs::recursive_directory_iterator
680 /// Goes up one level if Level > 0
    [all...]
  /frameworks/av/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/av/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 114 /// Level - The level of the diagnostic, after it has been through mapping.
115 enum Level {
128 /// and level. If this is the first request for this diagnosic, it is
130 unsigned getCustomDiagID(Level L, StringRef Message);
140 /// isBuiltinWarningOrExtension - Return true if the unmapped diagnostic level
170 /// getWarningOptionForDiag - Return the lowest-level warning option that
248 /// object, classify the specified diagnostic ID into a Level, consumable by
253 DiagnosticIDs::Level getDiagnosticLevel(unsigned DiagID, SourceLocation Loc,
258 DiagnosticIDs::Level getDiagnosticLevel(unsigned DiagID
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
LevelTree.java 28 public ArrayList<Level> levels = new ArrayList<Level>();
31 public static class Level {
42 public Level(int level, DialogEntry dialogs, String title, String time,
44 resource = level;
68 public static final Level get(int row, int index) {
87 Level currentLevel = null;
101 if (parser.getName().equals("level") && currentGroup != null) {
137 currentLevel = new Level(levelResource, null, titleString, timeStamp, inThePast, restartable, showWaitMessage)
202 final Level level = row.get(y); local
224 final Level level = group.levels.get(y); local
244 final Level level = group.levels.get(y); local
    [all...]
  /external/webrtc/src/modules/audio_processing/interface/
audio_processing.h 288 // Sets the aggressiveness of the suppressor. A higher level trades off
290 virtual int set_suppression_level(SuppressionLevel level) = 0;
367 // consistent signal level.
406 // to pass the current analog level from the audio HAL. Must be within the
408 virtual int set_stream_analog_level(int level) = 0;
411 // to obtain the recommended new analog level for the audio HAL. It is the
412 // users responsibility to apply this level.
436 // most of the input level range, and compresses (gradually reduces gain
437 // with increasing level) the input signal at higher levels. This mode is
438 // preferred on embedded devices where the capture signal level i
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp     [all...]

Completed in 1105 milliseconds

1 2