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

1 2 3 4 5 6 7 8 91011

  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
Ver.c 2 Main file for Ver shell level 3 function.
45 UINT8 Level;
47 Level = PcdGet8(PcdShellSupportLevel);
103 SupportLevel[Level],
  /art/tools/checker/common/
logger.py 21 class Level(object):
44 Verbosity = Level.Info
47 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout):
48 if level <= Logger.Verbosity:
59 Logger.log("error: ", Logger.Level.Error, color=Logger.Color.Red, newLine=False, out=sys.stderr)
60 Logger.log(msg, Logger.Level.Error, out=sys.stderr)
70 Logger.log(loc, Logger.Level.Error, color=Logger.Color.Gray, newLine=False, out=sys.stderr)
71 Logger.log(lineText, Logger.Level.Error, out=sys.stderr)
80 Logger.log(var, Logger.Level.Error, color=Logger.Color.Green, newLine=False, out=sys.stderr
    [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");
  /external/parameter-framework/upstream/test/functional-tests/include/
StoreLogger.hpp 51 enum class Level
56 Level level; member in struct:parameterFramework::StoreLogger::Log
60 return level == other.level and msg == other.msg;
67 logs.push_back({Log::Level::warning, strLog});
69 void info(const std::string &strLog) override { logs.push_back({Log::Level::info, strLog}); }
73 const Logs filter(Log::Level level) const
75 return filter([&level](const Log &log) { return log.level == level; })
    [all...]
  /external/skia/src/core/
SkMipMap.h 23 * SkMipMap will generate mipmap levels when given a base mipmap level image.
26 * being the first mipmap level which was generated. Said another way, it does
27 * not include the base level in its range.
43 // This does not include the base mipmap level that the user provided when
47 // Determines the size of a given mipmap level.
48 // |level| is an index into the generated mipmap levels. It does not include
49 // the base level. So index 0 represents mipmap level 1.
50 static SkISize ComputeLevelSize(int baseWidth, int baseHeight, int level);
52 struct Level {
    [all...]
  /external/webrtc/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...]
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 27 enum Level {
47 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
  /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/valgrind/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...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsAccess.java 44 * Represents an access level for the network usage history and statistics APIs.
47 * verifying that the caller's access level is at least the minimum required level.
50 Level.DEFAULT,
51 Level.USER,
52 Level.DEVICESUMMARY,
53 Level.DEVICE,
56 public @interface Level {
58 * Default, unprivileged access level.
62 * <p>Every app will have at least this access level
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ws2def.h 32 ULONG Level : 4;
  /external/clang/include/clang/Frontend/
SerializedDiagnostics.h 19 /// \brief A top-level block which represents any meta data associated
40 /// \brief A stable version of DiagnosticIDs::Level.
44 enum Level {
  /external/clang/lib/CodeGen/
ModuleBuilder.cpp 54 unsigned Level = --Self.HandlingTopLevelDecls;
55 if (Level == 0 && EmitDeferred)
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Level.java 34 <p>The <code>Level</code> class may be subclassed to define a larger
35 level set.
40 public class Level extends Priority implements Serializable {
43 * TRACE level integer value.
54 final static public Level OFF = new Level(OFF_INT, "OFF", 0);
57 The <code>FATAL</code> level designates very severe error
60 final static public Level FATAL = new Level(FATAL_INT, "FATAL", 0);
63 The <code>ERROR</code> level designates error events tha
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair.c 87 int Level, LevelCode, LevelPrefix, LevelSuffix, LevelSuffixSize;
114 Level = -1;
118 Level = +1;
120 pLevel[i] = (OMX_S16)Level;
122 DEBUG_PRINTF_2("Level[%d] = %d\n", i, pLevel[i]);
125 /* Decode (non zero) level values */
164 /* Level magnitude can't be 1 */
170 Level = (-LevelCode-1)>>1;
175 Level = (LevelCode+2)>>1;
177 pLevel[i] = (OMX_S16)Level;
    [all...]
  /frameworks/base/tools/aapt/
SourcePos.cpp 13 enum Level {
22 Level level; member in struct:ErrorPos
26 ErrorPos(const String8& file, int line, const String8& error, Level level);
35 :line(-1), level(NOTE)
43 level(that.level)
47 ErrorPos::ErrorPos(const String8& f, int l, const String8& e, Level lev)
51 level(lev
    [all...]
  /frameworks/base/tools/aapt2/
Diagnostics.h 71 enum class Level { Note, Warn, Error };
73 virtual void Log(Level level, DiagMessageActual& actualMsg) = 0;
77 Log(Level::Error, actual);
82 Log(Level::Warn, actual);
87 Log(Level::Note, actual);
95 void Log(Level level, DiagMessageActual& actual_msg) override {
98 switch (level) {
99 case Level::Error
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
Assignment.h 27 enum Level {
36 Assignment(Level pLevel, Type pType, SymOperand& pSymbol, RpnExpr& pRpnExpr);
42 Level level() const { return m_Level; } function in class:mcld::Assignment
64 Level m_Level;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/Arm/
EblCmdMmu.c 69 MMU_LEVEL Level;
77 IN MMU_LEVEL Level,
83 Entry.Level = Level;
92 IN MMU_LEVEL Level,
96 if (Level == Level0) {
98 } else if (Level == Level1) {
106 } else if (Level == Level2){
113 DEBUG((EFI_D_ERROR,"MmuEntryIsValidAddress: Level:%d Entry:0x%X\n",(UINT32)Level,(UINT32)Entry));
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
OhciUrb.c 221 UINTN Level;
240 for (Level = 1; Level <= 5; Level++) {
244 Ohc->IntervalList[Level][Index] = OhciCreateED (Ohc);
248 Ohc->IntervalList[Level - 1][Index * 2 ]->NextED = (UINT32)(UINTN)Ohc->IntervalList[Level][Index];
249 Ohc->IntervalList[Level - 1][Index * 2 + 1]->NextED = (UINT32)(UINTN)Ohc->IntervalList[Level][Index];
320 Find the minimal burn ED list on a specific depth level
    [all...]
  /external/clang/lib/Format/
TokenAnnotator.h 42 : First(Line.Tokens.front().Tok), Level(Line.Level),
112 unsigned Level;
UnwrappedLineParser.h 43 /// \brief The indent level of the \c UnwrappedLine.
44 unsigned Level;
131 // FIXME: We are constantly running into bugs where Line.Level is incorrectly
132 // subtracted from beyond 0. Introduce a method to subtract from Line.Level
186 // branches) for each nesting level of preprocessor branches.
187 // \c PPBranchLevel stores the current nesting level of preprocessor
192 // for each nesting level.
195 // Contains the maximum number of branches at each nesting level.
198 // Contains the number of branches per nesting level we are currently
217 : 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/llvm/include/llvm/Support/
CodeGen.h 33 enum Level { NotPIC=0, SmallPIC=1, BigPIC=2 };
37 enum Level { Default=0, Small=1, Large=2 };
50 // Code generation optimization level.
52 enum Level {

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011