Searched refs:Level (Results 1 - 25 of 423) sorted by relevance

1234567891011>>

/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLevelTest.java22 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
[all...]
H A DMemoryHandlerTest.java29 import java.util.logging.Level;
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");
144 record = new LogRecord(Level
[all...]
H A DLoggerTest.java32 import java.util.logging.Level;
255 assertSame(Level.ALL, log.getLevel());
320 assertSame(Level.INFO, log.getLevel());
337 pLog.setLevel(Level.CONFIG);
395 assertSame(Level.ALL, log.getLevel());
520 assertSame(Level.INFO, log.getLevel());
537 pLog.setLevel(Level.CONFIG);
742 log.setLevel(Level.CONFIG);
743 assertSame(Level.CONFIG, log.getLevel());
755 log.setLevel(Level
[all...]
/external/llvm/include/llvm/MC/
H A DMCCodeGenInfo.h33 CodeGenOpt::Level OptLevel;
38 CodeGenOpt::Level OL = CodeGenOpt::Default);
44 CodeGenOpt::Level getOptLevel() const { return OptLevel; }
47 void setOptLevel(CodeGenOpt::Level Level) { OptLevel = Level; } argument
/external/chromium_org/third_party/WebKit/public/web/
H A DWebConsoleMessage.h39 enum Level { enum in struct:blink::WebConsoleMessage
48 Level level;
53 WebConsoleMessage(Level level, const WebString& text)
/external/chromium_org/third_party/skia/src/core/
H A DSkMipMap.h20 struct Level { struct in class:SkMipMap
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/skia/src/core/
H A DSkMipMap.h20 struct Level { struct in class:SkMipMap
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/llvm/include/llvm/CodeGen/
H A DSchedulerRegistry.h37 CodeGenOpt::Level);
69 CodeGenOpt::Level OptLevel);
74 CodeGenOpt::Level OptLevel);
81 CodeGenOpt::Level);
88 CodeGenOpt::Level);
93 CodeGenOpt::Level OptLevel);
99 CodeGenOpt::Level OptLevel);
103 CodeGenOpt::Level OptLevel);
108 CodeGenOpt::Level OptLevel);
/external/apache-http/src/org/apache/commons/logging/impl/
H A DJdk14Logger.java22 import java.util.logging.Level;
52 protected static final Level dummyLevel = Level.FINE;
87 private void log( Level level, String msg, Throwable ex ) {
112 * Logs a message with <code>java.util.logging.Level.FINE</code>.
118 log(Level.FINE, String.valueOf(message), null);
123 * Logs a message with <code>java.util.logging.Level.FINE</code>.
130 log(Level.FINE, String.valueOf(message), exception);
135 * Logs a message with <code>java.util.logging.Level.SEVERE</code>.
141 log(Level
[all...]
/external/clang/include/clang/Frontend/
H A DTextDiagnostic.h53 DiagnosticsEngine::Level Level,
79 DiagnosticsEngine::Level Level,
86 DiagnosticsEngine::Level Level,
91 DiagnosticsEngine::Level Level,
95 emitSnippetAndCaret(Loc, Level, Ranges, Hints, SM);
110 void emitSnippetAndCaret(SourceLocation Loc, DiagnosticsEngine::Level Leve
[all...]
H A DDiagnosticRenderer.h68 DiagnosticsEngine::Level LastLevel;
76 DiagnosticsEngine::Level Level,
83 DiagnosticsEngine::Level Level,
88 DiagnosticsEngine::Level Level,
103 DiagnosticsEngine::Level Level) {}
105 DiagnosticsEngine::Level Leve
102 beginDiagnostic(DiagOrStoredDiag D, DiagnosticsEngine::Level Level) argument
104 endDiagnostic(DiagOrStoredDiag D, DiagnosticsEngine::Level Level) argument
[all...]
/external/clang/include/clang/Basic/
H A DOperatorPrecedence.h27 enum Level { enum in namespace:clang::prec
47 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
/external/llvm/lib/Support/
H A DIntervalMap.cpp25 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) { argument
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;
98 moveRight(unsigned Level) argument
[all...]
/external/webrtc/src/modules/audio_processing/
H A Dlevel_estimator_impl.cc26 class Level { class in namespace:webrtc::__anon33500
30 Level() function in class:webrtc::__anon33500::Level
33 ~Level() {}
98 Level* level = static_cast<Level*>(handle(0));
129 Level* level = static_cast<Level*>(handle(0));
141 return new Level;
146 Level* level = static_cast<Level*>(handl
[all...]
H A Dnoise_suppression_impl.h38 virtual int set_level(Level level);
39 virtual Level level() const;
50 Level level_;
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dlog.h21 enum Level { enum in class:Log
34 Level level,
39 void AddEntry(Level level,
44 void AddEntry(Level level, const std::string& message);
/external/llvm/lib/MC/
H A DMCCodeGenInfo.cpp19 CodeGenOpt::Level OL) {
/external/clang/lib/Frontend/
H A DTextDiagnosticPrinter.cpp55 DiagnosticsEngine::Level Level,
75 if (Level == DiagnosticsEngine::Error &&
85 << (Level == DiagnosticsEngine::Remark ? "-R" : "-W") << Opt;
112 void TextDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level, argument
115 DiagnosticConsumer::HandleDiagnostic(Level, Info);
123 printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts);
139 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors,
141 TextDiagnostic::printDiagnosticMessage(OS, Level, DiagMessageStrea
54 printDiagnosticOptions(raw_ostream &OS, DiagnosticsEngine::Level Level, const Diagnostic &Info, const DiagnosticOptions &DiagOpts) argument
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dlogging.h31 // Converts WD wire protocol level name -> Level, false on bad name.
32 static bool NameToLevel(const std::string& name, Level* out_level);
35 WebDriverLog(const std::string& type, Level min_level);
50 Level level,
55 void set_min_level(Level min_level);
56 Level min_level() const;
60 Level min_level_; // Minimum level of entries to store.
/external/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp30 DiagnosticsEngine::Level Level; member in struct:__anon19494::PrettyDiag
32 PrettyDiag(StringRef name, StringRef flag, DiagnosticsEngine::Level level)
33 : Name(name), Flag(flag), Level(level) {}
43 static char getCharForLevel(DiagnosticsEngine::Level Level) { argument
44 switch (Level) {
127 DiagnosticsEngine::Level DiagLevel =
140 Out << getCharForLevel(I->Level) << " ";
/external/chromium_org/third_party/webrtc/modules/audio_processing/
H A Dnoise_suppression_impl.h39 virtual int set_level(Level level) OVERRIDE;
40 virtual Level level() const OVERRIDE;
52 Level level_;
/external/guava/guava/src/com/google/common/io/
H A DCloseables.java24 import java.util.logging.Level;
83 logger.log(Level.WARNING,
101 logger.log(Level.SEVERE, "IOException should not have been thrown.", e);
H A DFlushables.java23 import java.util.logging.Level;
59 logger.log(Level.WARNING,
77 logger.log(Level.SEVERE, "IOException should not have been thrown.", e);
/external/guava/guava-testlib/src/com/google/common/testing/
H A DSloppyTearDown.java22 import java.util.logging.Level;
46 logger.log(Level.INFO,
/external/llvm/lib/Target/
H A DTargetSubtargetInfo.cpp51 CodeGenOpt::Level OptLevel) const {
60 CodeGenOpt::Level OptLevel,

Completed in 1129 milliseconds

1234567891011>>