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

1 2

  /external/chromium_org/chrome/test/chromedriver/chrome/
log.h 17 // Abstract class for logging entries with a level, timestamp, string message.
20 // Log entry severity level.
21 enum Level {
34 Level level,
39 void AddEntry(Level level,
44 void AddEntry(Level level, const std::string& message);
50 // Returns whether the given VLOG level is on
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebConsoleMessage.h 39 enum Level {
48 Level level; member in struct:blink::WebConsoleMessage
52 : level(LevelLog) { }
53 WebConsoleMessage(Level level, const WebString& text)
54 : level(level)
  /external/chromium_org/third_party/skia/src/core/
SkMipMap.h 20 struct Level {
27 bool extractLevel(SkScalar scale, Level*) const;
33 Level* fLevels;
37 SkMipMap(Level* levels, int count, size_t size);
40 static Level* AllocLevels(int levelCount, size_t pixelSize);
  /external/chromium_org/third_party/webrtc/voice_engine/
level_indicator.cc 52 // Check speech level (works for 2 channels as well)
64 // Update level approximately 10 times per second
89 int8_t AudioLevel::Level() const
  /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 32 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 35 import java.util.logging.Level;
74 r = new LogRecord(Level.CONFIG, "msg");
81 props.put("java.util.logging.FileHandler.level", "FINE");
172 assertEquals(handler.getLevel(), Level.FINE);
198 assertEquals(handler.getLevel(), Level.ALL);
321 rs[i] = new LogRecord(Level.SEVERE, "msg" + i);
327 rs[i] = new LogRecord(Level.SEVERE, "msg" + i);
340 rs[i] = new LogRecord(Level.SEVERE, "msg" + i);
346 rs[i] = new LogRecord(Level.SEVERE, "msg" + i);
381 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...]
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 27 enum Level {
47 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
DiagnosticIDs.h 109 /// \brief The level of the diagnostic, after it has been through mapping.
110 enum Level {
123 /// level.
131 unsigned getCustomDiagID(Level L, StringRef FormatString);
171 /// \brief Return the lowest-level warning option that enables the specified
242 /// \brief Classify the specified diagnostic ID into a Level, consumable by
250 DiagnosticIDs::Level
266 void EmitDiag(DiagnosticsEngine &Diag, Level DiagLevel) const;
  /external/clang/tools/diagtool/
ShowEnabledWarnings.cpp 30 DiagnosticsEngine::Level Level;
32 PrettyDiag(StringRef name, StringRef flag, DiagnosticsEngine::Level level)
33 : Name(name), Flag(flag), Level(level) {}
43 static char getCharForLevel(DiagnosticsEngine::Level Level) {
44 switch (Level) {
53 llvm_unreachable("Unknown diagnostic level");
    [all...]
  /external/clang/include/clang/Frontend/
SerializedDiagnosticPrinter.h 28 /// \brief A top-level block which represents any meta data associated
49 /// A stable version of DiagnosticIDs::Level.
53 enum Level {
  /external/llvm/include/llvm/Support/
CodeGen.h 43 // Code generation optimization level.
45 enum Level {
  /external/chromium_org/content/renderer/
v8_value_converter_impl.cc 66 // Level scope which updates the current depth of some FromV8ValueState.
67 class Level {
69 explicit Level(FromV8ValueState* state) : state_(state) {
72 ~Level() {
291 FromV8ValueState::Level state_level(state);
  /external/clang/lib/Format/
TokenAnnotator.h 41 : First(Line.Tokens.front().Tok), Level(Line.Level),
85 unsigned Level;
UnwrappedLineParser.h 42 /// \brief The indent level of the \c UnwrappedLine.
43 unsigned Level;
124 // FIXME: We are constantly running into bugs where Line.Level is incorrectly
125 // subtracted from beyond 0. Introduce a method to subtract from Line.Level
181 // branches) for each nesting level of preprocessor branches.
182 // \c PPBranchLevel stores the current nesting level of preprocessor
187 // for each nesting level.
190 // Contains the maximum number of branches at each nesting level.
193 // Contains the number of branches per nesting level we are currently
212 : Level(0), InPPDirective(false), MustBeDeclaration(false) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDFS.h 10 // Definition of an ILP metric for machine level instruction scheduling.
92 /// \brief Record a connection between subtrees and the connection level.
95 unsigned Level;
97 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {}
112 /// Cache the current connection level of each subtree.
177 /// \brief Get the connection level of a subtree.
179 /// For bottom-up trees, the connection level is the latency depth (in cycles)
  /external/lzma/CPP/7zip/UI/Common/
ZipRegistry.h 29 UInt32 Level;
42 BlockLogSize = NumThreads = Level = Dictionary = Order = UInt32(-1);
52 UInt32 Level;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
UISourceCodeFrame.js 205 * @param {!WebInspector.UISourceCodeFrame.Infobar.Level} level
208 WebInspector.UISourceCodeFrame.Infobar = function(level, message)
210 this.element = document.createElementWithClass("div", "source-frame-infobar source-frame-infobar-" + level);
229 WebInspector.UISourceCodeFrame.Infobar.Level = {
  /external/chromium_org/chrome/installer/util/
installer_state.h 51 enum Level {
75 explicit InstallerState(Level level);
99 // The level (user or system) of this operation.
100 Level level() const { return level_; } function in class:installer::InstallerState
108 // A convenience method returning level() == SYSTEM_LEVEL.
256 // Sets this object's level and updates the root_key_ accordingly.
257 void set_level(Level level);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglconfig.h 56 EGLint Level;
104 ATTRIB_MAP(EGL_LEVEL, Level);
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 89 /// A diagnostic severity level.
126 /// The diagnostic level.
127 DiagLevel Level;
193 Diag(Location Loc, DiagLevel Level, const char *Message)
194 : Loc(Loc), Level(Level), Message(Message), NumArgs(0), NumRanges(0) {}
  /external/mesa3d/src/egl/main/
eglconfig.h 56 EGLint Level;
104 ATTRIB_MAP(EGL_LEVEL, Level);

Completed in 458 milliseconds

1 2