HomeSort by relevance Sort by last modified time
    Searched refs:Level (Results 76 - 100 of 550) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogRecordTest.java 24 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.SEVERE, MSG)
    [all...]
SimpleFormatterTest.java 22 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/
DependenceAnalysis.cpp 168 for (unsigned Level = 1; Level <= D->getLevels(); Level++) {
169 if (D->isSplitable(Level)) {
170 OS << "da analyze - split level = " << Level;
171 OS << ", iteration = " << *DA->getSplitIteration(D, Level);
217 // Returns true if a particular level is scalar; that is,
219 // variable associated with the loop at this level.
221 bool Dependence::isScalar(unsigned level) const
    [all...]
CostModel.cpp 138 unsigned Level) {
141 if (!SI && Level == 0 && IsLeft)
150 for (unsigned i = 0, e = (1 << Level), val = !IsLeft; i != e; ++i, val += 2)
161 unsigned Level, unsigned NumLevels) {
162 // Match one level of pairwise operations.
178 if (!LS && Level)
181 if (!RS && Level)
184 // On level 0 we can omit one shufflevector instruction.
185 if (!Level && !RS && !LS)
198 } else if (Level == 0 && (NextLevelOpR || NextLevelOpL))
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertBlacklist.java 30 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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
AndroidManifestWriter.java 30 import java.util.logging.Level;
98 sLogger.log(Level.SEVERE, "Failed to write xml file", e);
101 sLogger.log(Level.SEVERE, "Failed to write xml file", e);
121 sLogger.log(Level.SEVERE, "Error parsing file", e);
124 sLogger.log(Level.SEVERE, "Error parsing file", e);
127 sLogger.log(Level.SEVERE, "Error parsing file", e);
  /external/chromium_org/chrome/test/chromedriver/chrome/
console_logger.cc 17 // 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; local
58 message_dict->GetString("level", &level_name) &&
59 ConsoleLevelToLogLevel(level_name, &level)) {
85 log_->AddEntry(level, source, base::StringPrintf("%s %s %s",
  /external/llvm/lib/Target/Mips/
MipsTargetMachine.h 33 CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
80 CodeGenOpt::Level OL);
91 CodeGenOpt::Level OL);
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.h 36 CodeModel::Model CM, CodeGenOpt::Level OP, bool is64bit);
86 CodeGenOpt::Level OL);
95 CodeGenOpt::Level OL);
  /external/llvm/lib/Target/PowerPC/
PPCTargetMachine.h 33 CodeGenOpt::Level OL, bool is64Bit);
77 CodeGenOpt::Level OL);
88 CodeGenOpt::Level OL);
  /external/llvm/lib/Target/Sparc/
SparcTargetMachine.cpp 32 CodeGenOpt::Level OL,
87 CodeGenOpt::Level OL)
99 CodeGenOpt::Level OL)
  /frameworks/base/core/java/com/android/internal/logging/
AndroidHandler.java 28 import java.util.logging.Level;
40 * <th>logger level</th>
41 * <th>Android level</th>
126 int level = getAndroidLevel(record.getLevel()); local
128 if (!Log.isLoggable(tag, level)) {
134 Log.println(level, tag, message);
140 public void publish(Logger source, String tag, Level level, String message) {
142 int priority = getAndroidLevel(level);
155 * Converts a {@link java.util.logging.Logger} logging level into an Android one
    [all...]
  /frameworks/compile/libbcc/include/bcc/Support/
CompilerConfig.h 49 llvm::CodeGenOpt::Level mOptLevel;
91 inline llvm::CodeGenOpt::Level getOptimizationLevel() const
93 inline void setOptimizationLevel(llvm::CodeGenOpt::Level pOptLvl)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmuse.h 16 NET_API_STATUS WINAPI NetUseAdd(LMSTR UncServerName,DWORD Level,LPBYTE Buf,LPDWORD ParmError);
18 NET_API_STATUS WINAPI NetUseEnum(LMSTR UncServerName,DWORD Level,LPBYTE *BufPtr,DWORD PreferedMaximumSize,LPDWORD EntriesRead,LPDWORD TotalEntries,LPDWORD ResumeHandle);
19 NET_API_STATUS WINAPI NetUseGetInfo(LMSTR UncServerName,LMSTR UseName,DWORD Level,LPBYTE *BufPtr);
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 109 /// \brief The level of the diagnostic, after it has been through mapping.
110 enum Level {
123 /// level.
131 unsigned getCustomDiagID(Level L, StringRef FormatString);
171 /// \brief Return the lowest-level warning option that enables the specified
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/lib/Frontend/
SerializedDiagnosticPrinter.cpp 64 DiagnosticsEngine::Level Level,
71 DiagnosticsEngine::Level Level,
79 DiagnosticsEngine::Level Level,
85 DiagnosticsEngine::Level Level) override;
87 DiagnosticsEngine::Level Level) override
    [all...]
  /external/guava/guava/src/com/google/common/base/internal/
Finalizer.java 25 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/
MetadataManager.java 31 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/
PrefixFileReader.java 26 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/lib/Target/CppBackend/
CPPTargetMachine.h 28 CodeGenOpt::Level OL)
  /external/llvm/lib/Target/X86/
X86.h 1 //===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===//
35 CodeGenOpt::Level OptLevel);
  /frameworks/compile/slang/
slang_diagnostic_buffer.h 45 virtual void HandleDiagnostic(clang::DiagnosticsEngine::Level DiagLevel,
  /external/chromium_org/chrome/installer/util/
installation_validator_unittest.cc 43 enum Level {
77 Level install_level,
82 Level install_level,
86 Level install_level,
90 Level install_level,
94 Level install_level,
110 Level install_level,
115 Level install_level,
125 Level install_level,
131 ProductState* GetProducts(Level install_level)
    [all...]
  /external/chromium_org/third_party/skia/tests/
MipMapTest.cpp 33 SkMipMap::Level prevLevel;
40 SkMipMap::Level level; local
41 if (mm->extractLevel(scale, &level)) {
42 REPORTER_ASSERT(reporter, level.fPixels);
43 REPORTER_ASSERT(reporter, level.fWidth > 0);
44 REPORTER_ASSERT(reporter, level.fHeight > 0);
45 REPORTER_ASSERT(reporter, level.fRowBytes >= level.fWidth * 4);
48 REPORTER_ASSERT(reporter, level.fWidth <= prevLevel.fWidth)
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ExecutionList.java 24 import java.util.logging.Level;
154 log.log(Level.SEVERE, "RuntimeException while executing runnable "

Completed in 1198 milliseconds

1 2 34 5 6 7 8 91011>>