Searched refs:Level (Results 51 - 75 of 423) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/ARM/
H A DARMTargetMachine.h32 CodeGenOpt::Level OL,
75 CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
86 CodeGenOpt::Level OL);
96 CodeModel::Model CM, CodeGenOpt::Level OL);
108 CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
119 CodeGenOpt::Level OL);
130 CodeGenOpt::Level OL);
/external/chromium_org/chrome/test/chromedriver/
H A Dlogging.cc30 Log::Level g_log_level = Log::kWarning;
34 // Array indices are the Log::Level enum values.
44 const char* LevelToName(Log::Level level) {
53 Log::Level level;
65 Log::Level GetLevelFromSeverity(int severity) {
89 Log::Level session_level = session_log ? session_log->min_level() : Log::kOff;
90 Log::Level level = g_log_level < session_level ? g_log_level : session_level;
99 Log::Level level = GetLevelFromSeverity(severity);
128 bool WebDriverLog::NameToLevel(const std::string& name, Log::Level* out_level) {
138 WebDriverLog::WebDriverLog(const std::string& type, Log::Level min_leve
[all...]
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DExampleNumbersTest.java29 import java.util.logging.Level;
57 LOGGER.log(Level.SEVERE, "Failed validation for " + exampleNumber.toString());
63 LOGGER.log(Level.SEVERE, "Wrong type for " +
66 LOGGER.log(Level.WARNING, "Expected types: ");
68 LOGGER.log(Level.WARNING, type.toString());
151 LOGGER.log(Level.SEVERE, e.toString());
155 LOGGER.log(Level.SEVERE, "Number " + exampleNumber.toString()
169 LOGGER.log(Level.SEVERE, "Failed validation for " + exampleNumber.toString());
190 LOGGER.log(Level.SEVERE, "Failed validation for string " + invalidStringCase);
195 LOGGER.log(Level
[all...]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLogRecordTest.java24 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
[all...]
H A DSimpleFormatterTest.java22 import java.util.logging.Level;
45 lr = new LogRecord(Level.FINE, MSG);
54 sf.format(new LogRecord(Level.SEVERE, null));
104 assertTrue(str.indexOf(Level.FINE.getLocalizedName()) > 0);
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp168 for (unsigned Level = 1; Level <= D->getLevels(); Level++) {
169 if (D->isSplitable(Level)) {
170 OS << "da analyze - split level = " << Level; local
171 OS << ", iteration = " << *DA->getSplitIteration(D, Level);
243 unsigned FullDependence::getDirection(unsigned Level) const {
244 assert(0 < Level && Level <= Levels && "Level ou
778 unsigned Level = LoopNest->getLoopDepth(); local
1008 strongSIVtest(const SCEV *Coeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint) const argument
1147 weakCrossingSIVtest(const SCEV *Coeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint, const SCEV *&SplitIter) const argument
1369 exactSIVtest(const SCEV *SrcCoeff, const SCEV *DstCoeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint) const argument
1581 weakZeroSrcSIVtest(const SCEV *DstCoeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint) const argument
1692 weakZeroDstSIVtest(const SCEV *SrcCoeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint) const argument
2039 testSIV(const SCEV *Src, const SCEV *Dst, unsigned &Level, FullDependence &Result, Constraint &NewConstraint, const SCEV *&SplitIter) const argument
2387 unsigned Level = mapSrcLoop(CurLoop); local
2514 exploreDirections(unsigned Level, CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, const SmallBitVector &Loops, unsigned &DepthExpanded, const SCEV *Delta) const argument
2615 testBounds(unsigned char DirKind, unsigned Level, BoundInfo *Bound, const SCEV *Delta) const argument
3129 updateDirection(Dependence::DVEntry &Level, const Constraint &CurConstraint ) const argument
3508 unsigned Level; local
3556 unsigned Level; local
3851 unsigned Level; local
3890 unsigned Level; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DCertBlacklist.java30 import java.util.logging.Level;
64 logger.log(Level.WARNING, "Could not parse hex value " + value, e);
71 logger.log(Level.WARNING, "Invalid pubkey hash length: " + value.length());
82 logger.log(Level.WARNING, "Could not read blacklist", e);
151 logger.log(Level.WARNING, "Tried to blacklist invalid serial number " + value, e);
202 logger.log(Level.WARNING, "Tried to blacklist invalid pubkey " + value);
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dconsole_logger.cc17 // Translates Console.messageAdded.message.level into Log::Level.
18 bool ConsoleLevelToLogLevel(const std::string& name, Log::Level *out_level) {
26 *out_level = static_cast<Log::Level>(Log::kDebug + i);
56 Log::Level level = Log::kInfo;
/external/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.h32 CodeGenOpt::Level OL, bool IsLittleEndian);
71 CodeGenOpt::Level OL);
82 CodeGenOpt::Level OL);
H A DAArch64.h34 CodeGenOpt::Level OptLevel);
/external/llvm/lib/Target/Mips/
H A DMipsTargetMachine.h33 CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
80 CodeGenOpt::Level OL);
91 CodeGenOpt::Level OL);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXTargetMachine.h36 CodeModel::Model CM, CodeGenOpt::Level OP, bool is64bit);
86 CodeGenOpt::Level OL);
95 CodeGenOpt::Level OL);
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetMachine.h33 CodeGenOpt::Level OL, bool is64Bit);
77 CodeGenOpt::Level OL);
88 CodeGenOpt::Level OL);
/external/llvm/lib/Target/Sparc/
H A DSparcTargetMachine.cpp32 CodeGenOpt::Level OL,
87 CodeGenOpt::Level OL)
99 CodeGenOpt::Level OL)
H A DSparcTargetMachine.h29 CodeGenOpt::Level OL, bool is64bit);
66 CodeGenOpt::Level OL);
78 CodeGenOpt::Level OL);
/external/clang/include/clang/Basic/
H A DDiagnosticIDs.h110 enum Level { enum in class:clang::diag::DiagnosticIDs
131 unsigned getCustomDiagID(Level L, StringRef FormatString);
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/include/clang/Frontend/
H A DSerializedDiagnosticPrinter.h49 /// A stable version of DiagnosticIDs::Level.
53 enum Level { enum in namespace:clang::serialized_diags
/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp64 DiagnosticsEngine::Level Level,
71 DiagnosticsEngine::Level Level,
79 DiagnosticsEngine::Level Level,
85 DiagnosticsEngine::Level Level) override;
87 DiagnosticsEngine::Level Level) overrid
568 getStableLevel(DiagnosticsEngine::Level Level) argument
583 EmitDiagnosticMessage(SourceLocation Loc, PresumedLoc PLoc, DiagnosticsEngine::Level Level, StringRef Message, const SourceManager *SM, DiagOrStoredDiag D) argument
615 emitDiagnosticMessage(SourceLocation Loc, PresumedLoc PLoc, DiagnosticsEngine::Level Level, StringRef Message, ArrayRef<clang::CharSourceRange> Ranges, const SourceManager *SM, DiagOrStoredDiag D) argument
633 beginDiagnostic(DiagOrStoredDiag D, DiagnosticsEngine::Level Level) argument
639 endDiagnostic(DiagOrStoredDiag D, DiagnosticsEngine::Level Level) argument
675 emitCodeContext(SourceLocation Loc, DiagnosticsEngine::Level Level, SmallVectorImpl<CharSourceRange> &Ranges, ArrayRef<FixItHint> Hints, const SourceManager &SM) argument
[all...]
/external/doclava/res/assets/templates/components/
H A Dapi_filter.cs5 <label for="apiLevelCheckbox" class="disabled">Filter by API Level: </label>
/external/guava/guava/src/com/google/common/base/internal/
H A DFinalizer.java25 import java.util.logging.Level;
111 logger.log(Level.INFO, "Failed to clear thread local values inherited"
156 logger.log(Level.SEVERE, "Error cleaning up after reference.", t);
197 logger.log(Level.INFO, "Couldn't access Thread.inheritableThreadLocals."
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DMetadataManager.java31 import java.util.logging.Level;
69 LOGGER.log(Level.WARNING, e.toString());
86 LOGGER.log(Level.WARNING, e.toString());
116 LOGGER.log(Level.WARNING, e.toString());
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
H A DPrefixFileReader.java26 import java.util.logging.Level;
59 LOGGER.log(Level.WARNING, e.toString());
87 LOGGER.log(Level.WARNING, e.toString());
98 LOGGER.log(Level.WARNING, e.toString());
/external/llvm/include/llvm/Support/
H A DCompression.h46 CompressionLevel Level = DefaultCompression);
/external/llvm/lib/Target/CppBackend/
H A DCPPTargetMachine.h28 CodeGenOpt::Level OL)
/external/llvm/lib/Target/X86/
H A DX86.h35 CodeGenOpt::Level OptLevel);

Completed in 4298 milliseconds

1234567891011>>