| /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...]
 | 
| /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/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/llvm/include/llvm/MC/ | 
| MCCodeGenInfo.h | 31     /// OptLevel - Optimization level. 33     CodeGenOpt::Level OptLevel;
 38                            CodeGenOpt::Level OL = CodeGenOpt::Default);
 44     CodeGenOpt::Level getOptLevel() const { return OptLevel; }
 47     void setOptLevel(CodeGenOpt::Level Level) { OptLevel = Level; }
 
 | 
| /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/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)
 
 | 
| /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/chromium_org/chrome/test/chromedriver/ | 
| logging.h | 21 // Accumulates WebDriver Logging API entries of a given type and minimum level. 29   // Converts WD wire protocol level name -> Level, false on bad name.
 30   static bool NameToLevel(const std::string& name, Level* out_level);
 32   // Creates a WebDriverLog with the given type and minimum level.
 33   WebDriverLog(const std::string& type, Level min_level);
 46   // Translates a Log entry level into a WebDriver level and stores the entry.
 48                                    Level level,
 [all...]
 | 
| /external/webrtc/src/modules/audio_processing/ | 
| noise_suppression_impl.h | 38   virtual int set_level(Level level); 39   virtual Level level() const;
 50   Level level_;
 
 | 
| 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...]
 | 
| /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);
 81                                                  CodeGenOpt::Level);
 84 /// aware list scheduler that tries to increase instruction level parallelism
 88                                               CodeGenOpt::Level);
 93                                            CodeGenOpt::Level OptLevel);
 99                                            CodeGenOpt::Level OptLevel);
 103                                            CodeGenOpt::Level OptLevel);
 108                                         CodeGenOpt::Level OptLevel)
 [all...]
 | 
| /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/clang/include/clang/Frontend/ | 
| TextDiagnostic.h | 45   /// \brief Print the diagonstic level to a raw_ostream. 47   /// This is a static helper that handles colorizing the level and formatting
 53                                    DiagnosticsEngine::Level Level,
 79                              DiagnosticsEngine::Level Level,
 86                          DiagnosticsEngine::Level Level,
 91                        DiagnosticsEngine::Level Level,
 [all...]
 | 
| DiagnosticRenderer.h | 64   /// \brief The level of the last diagnostic emitted. 66   /// The level of the last diagnostic emitted. Used to detect level changes
 68   DiagnosticsEngine::Level LastLevel;
 76                                      DiagnosticsEngine::Level Level,
 83                                  DiagnosticsEngine::Level Level,
 88                                DiagnosticsEngine::Level Level,
 [all...]
 | 
| /external/clang/include/clang/Basic/ | 
| OperatorPrecedence.h | 27   enum Level { 47 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
 
 | 
| /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(nullptr, 0, 0));
 68   for (++l; l != Level; ++l)
 [all...]
 | 
| /external/chromium_org/third_party/webrtc/modules/audio_processing/ | 
| noise_suppression_impl.h | 38   virtual int set_level(Level level) OVERRIDE; 39   virtual Level level() const OVERRIDE;
 51   Level level_;
 
 | 
| /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/llvm/lib/MC/ | 
| MCCodeGenInfo.cpp | 19                                       CodeGenOpt::Level OL) { 
 | 
| /frameworks/compile/mclinker/include/mcld/Script/ | 
| Assignment.h | 29   enum Level { 43   Assignment(Level pLevel,
 52   Level level() const { return m_Level; }  function in class:mcld::Assignment
 75   Level m_Level;
 
 | 
| /external/clang/lib/Frontend/ | 
| TextDiagnosticPrinter.cpp | 55                                    DiagnosticsEngine::Level Level, 75     if (Level == DiagnosticsEngine::Error &&
 85          << (Level == DiagnosticsEngine::Remark ? "-R" : "-W") << Opt;
 112 void TextDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level,
 115   DiagnosticConsumer::HandleDiagnostic(Level, Info);
 123   printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts);
 139     TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors,
 141     TextDiagnostic::printDiagnosticMessage(OS, Level, DiagMessageStream.str()
 [all...]
 | 
| /build/tools/droiddoc/templates-pdk/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>");
 
 |