HomeSort by relevance Sort by last modified time
    Searched refs:Level (Results 426 - 450 of 1355) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
Diagnostic.h 149 /// \brief The level of the diagnostic, after it has been through mapping.
150 enum Level {
349 /// \brief The level of the last diagnostic emitted.
351 /// This is used to emit continuation diagnostics with the same level as the
353 DiagnosticIDs::Level LastDiagLevel;
656 /// level.
664 unsigned getCustomDiagID(Level L, const char (&FormatString)[N]) {
665 return Diags->getCustomDiagID((DiagnosticIDs::Level)L,
713 /// object, classify the specified diagnostic ID into a Level, consumable by
722 Level getDiagnosticLevel(unsigned DiagID, SourceLocation Loc) const
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialRunLoop.java 36 import java.util.logging.Level;
100 logger.log(Level.WARNING, "Trial cancelled before completing normally (but after "
159 logger.log(Level.WARNING, "Worker failed to exit cleanly within the alloted time. "
  /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/replicaisland/src/com/replica/replicaisland/
LevelSystem.java 25 * Manages information about the current level, including setup, deserialization, and tear-down.
39 private LevelTree.Level mCurrentLevel;
91 * Loads a level from a binary file. The file consists of several layers, including background
94 * @param stream The input stream for the level file resource.
99 public boolean loadLevel(LevelTree.Level level, InputStream stream, ObjectManager root) {
101 mCurrentLevel = level;
205 public LevelTree.Level getCurrentLevel() {
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JIT.h 10 // This file defines the top-level JIT data structure.
81 JITMemoryManager *JMM, CodeGenOpt::Level OptLevel,
100 CodeGenOpt::Level OptLevel =
188 CodeGenOpt::Level OptLevel,
  /external/swiftshader/third_party/subzero/pnacl-llvm/
NaClBitcodeParser.cpp 2 // Low-level bitcode driver to parse PNaCl bitcode files.
90 naclbitc::ErrorLevel Level, uint64_t BitPosition,
92 naclbitc::ErrorAt(*ErrStream, Level, BitPosition) << Message << "\n";
93 if (Level == naclbitc::Fatal)
  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
ImagePanel.java 12 import java.util.logging.Level;
64 Logger.getLogger(ImagePanel.class.getName()).log(Level.SEVERE, null, ex);
79 Logger.getLogger(ImagePanel.class.getName()).log(Level.SEVERE, null, ex);
  /frameworks/av/media/libstagefright/foundation/
ADebug.cpp 54 // get level
57 long level = strtol(current, &end, 10); local
62 // invalid level - skip
82 def = level;
98 ADebug::Level ADebug::GetDebugLevelFromProperty(
99 const char *name, const char *propertyName, ADebug::Level def) {
100 long level = GetLevelFromProperty(name, propertyName, (long)def); local
101 return (Level)min(max(level, (long)kDebugNone), (long)kDebugMax);
132 long level = GetLevelFromProperty(name, "debug.stagefright.experiments", undefined) local
    [all...]
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
ADebug.h 140 enum Level {
151 // parse the property or string to get a long-type level for a component name
153 // <level>[:<glob>][,<level>[:<glob>]...]
154 // - <level> is 0-5 corresponding to ADebug::Level
157 // - string is read left-to-right, and the last matching level is returned, or
164 // same for ADebug::Level - performs clamping to valid debug ranges
165 static Level GetDebugLevelFromProperty(
166 const char *name, const char *propertyName, Level def = kDebugNone)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
ExecutionEngine.h 135 CodeGenOpt::Level OptLevel,
142 CodeGenOpt::Level OptLevel,
186 CodeGenOpt::Level OptLevel =
199 CodeGenOpt::Level OptLevel =
462 CodeGenOpt::Level OptLevel;
514 /// setOptLevel - Set the optimization level for the JIT. This option
516 EngineBuilder &setOptLevel(CodeGenOpt::Level l) {
  /frameworks/compile/slang/
slang_rs_context.h 336 clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
339 return DiagEngine->Report(DiagEngine->getCustomDiagID(Level, Message));
343 clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
349 DiagEngine->getCustomDiagID(Level, Message));
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/
PCAL9555A.asi 79 GpioInt (Level, ActiveLow, Exclusive, PullDefault, , "\\_SB.PCI0.GIP0.GPO", 0, ResourceConsumer, , ) {QUARK_GPIO1_MAPPING} /* GPIO<1> is EXP2_INT */
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/
LocalApic.h 93 UINT32 Level:1; ///< 0 for the INIT level de-assert delivery mode. Otherwise 1.
94 UINT32 TriggerMode:1; ///< 0: edge, 1: level when using the INIT level de-assert delivery mode.
168 UINT32 TriggerMode:1; ///< 0:edge, 1:level.
198 UINT32 Level:1; ///< 0:Deassert, 1:Assert. Ignored for Edge triggered interrupts.
199 UINT32 TriggerMode:1; ///< 0:Edge, 1:Level.
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
LoggingConfigLoader.java 19 import static java.util.logging.Level.SEVERE;
20 import static java.util.logging.Level.WARNING;
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractExecutionThreadService.java 26 import java.util.logging.Level;
65 logger.log(Level.WARNING,
  /external/icu/icu4c/source/i18n/
collationkeys.h 96 * @param level The next level about to be written to the ByteSink.
97 * @return TRUE if the level is to be written
100 virtual UBool needToWrite(Collation::Level level);
105 * Optionally writes the case level.
106 * Stops writing levels when callback.needToWrite(level) returns FALSE.
114 Collation::Level minLevel, LevelCallback &callback,
121 // Secondary level: Compress up to 33 common weights as 05..25 or 25..45.
127 // Case level, lowerFirst: Compress up to 7 common weights as 1..7 or 7..13
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
NetworkTopologyDiscoveryImpl.java 13 import java.util.logging.Level;
66 if (logger.isLoggable(Level.FINEST)) {
  /external/libphonenumber/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/
MappingFileProviderTest.java 31 import java.util.logging.Level;
71 logger.log(Level.SEVERE, e.getMessage());
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 2 * Top-Level parsing and JIT Driver
10 (* ignore top-level semicolons. *)
25 (* Evaluate a top-level expression into an anonymous function. *)
27 print_endline "parsed a top-level expr";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 2 * Top-Level parsing and JIT Driver
12 (* ignore top-level semicolons. *)
29 (* Evaluate a top-level expression into an anonymous function. *)
31 print_endline "parsed a top-level expr";
  /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/LTO/legacy/
ThinLTOCodeGenerator.h 41 CodeGenOpt::Level CGOptLevel = CodeGenOpt::Default;
175 /// CodeGen optimization level
176 void setCodeGenOptLevel(CodeGenOpt::Level CGOptLevel) {
  /external/mesa3d/src/gallium/state_trackers/nine/
surface9.h 44 unsigned level; /* refers to the pipe_resource (SetLOD !) */ member in struct:NineSurface9
69 unsigned Level,
81 unsigned Level,
108 struct pipe_resource *resource, unsigned level );
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_tex_subimage.c 73 DBG("BLT subimage %s target %s level %d offset %d,%d %dx%d\n",
76 texImage->Level, xoffset, yoffset, width, height);
112 intelImage->mt, texImage->Level, texImage->Face,

Completed in 923 milliseconds

<<11121314151617181920>>