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

1 2 3 4 5 67 8 91011>>

  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 100 DiagnosticsEngine::Level Level) override {
106 if (Level != DiagnosticsEngine::Note)
112 if (Level != DiagnosticsEngine::Note)
117 DiagnosticsEngine::Level Level,
135 DiagnosticsEngine::Level Level,
140 DiagnosticsEngine::Level Level,
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSIncoming.java 13 import java.util.logging.Level;
237 logger.log(Level.WARNING, "DNSIncoming() dump " + print(true) + "\n exception ", e);
274 logger.log(Level.SEVERE, "Could not find record type: " + this.print(true));
286 logger.log(Level.SEVERE, "Could not find record type. domain: " + domain + "\n" + this.print(true));
291 logger.log(Level.SEVERE, "Could not find record class. domain: " + domain + " type: " + type + "\n" + this.print(true));
312 logger.log(Level.WARNING, "PTR record of class: " + recordClass + ", there was a problem reading the service name of the answer for domain:" + domain);
354 logger.log(Level.WARNING, "There was a problem reading the OPT record. Ignoring.");
361 logger.log(Level.WARNING, "There was a problem reading the OPT record. Ignoring.");
402 if (logger.isLoggable(Level.FINE)) {
410 if (logger.isLoggable(Level.FINE))
    [all...]
NetworkTopologyDiscoveryImpl.java 13 import java.util.logging.Level;
66 if (logger.isLoggable(Level.FINEST)) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ConsoleMessage.cpp 49 ConsoleMessage::ConsoleMessage(bool canGenerateCallStack, MessageSource source, MessageType type, MessageLevel level, const String& message)
52 , m_level(level)
64 ConsoleMessage::ConsoleMessage(bool canGenerateCallStack, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& url, unsigned line, unsigned column, ScriptState* scriptState, unsigned long requestIdentifier)
67 , m_level(level)
79 ConsoleMessage::ConsoleMessage(bool, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, unsigned long requestIdentifier)
82 , m_level(level)
100 ConsoleMessage::ConsoleMessage(bool canGenerateCallStack, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtrWillBeRawPtr<ScriptArguments> arguments, ScriptState* scriptState, unsigned long requestIdentifier)
103 , m_level(level)
178 static TypeBuilder::Console::ConsoleMessage::Level::Enum messageLevelValue(MessageLevel level)
    [all...]
  /external/smack/src/com/kenai/jbosh/
BOSHClient.java 37 import java.util.logging.Level;
557 LOG.log(Level.FINEST, "Could not send pause", boshx);
632 LOG.log(Level.FINEST, INTERRUPTED, intx);
824 LOG.log(Level.FINEST, INTERRUPTED, intx);
947 LOG.log(Level.FINEST, "Processing thread starting");
961 LOG.log(Level.FINE, "Discarding exchange on request "
979 LOG.log(Level.FINEST, "Processing thread exiting");
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
console_logger_unittest.cc 69 const Log::Level level; member in struct:__anon10457::LogEntry
74 Log::Level level,
77 : timestamp(timestamp), level(level), source(source), message(message) {}
83 Level level,
96 Level level,
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
logging_unittest.cc 24 Log::Level level = static_cast<Log::Level>(-1); local
25 EXPECT_TRUE(WebDriverLog::NameToLevel(kAllWdLevels[i], &level));
26 EXPECT_LE(Log::kAll, level);
27 EXPECT_GE(Log::kOff, level);
32 Log::Level level = static_cast<Log::Level>(-1); local
33 EXPECT_FALSE(WebDriverLog::NameToLevel("A", &level));
51 std::string level; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winspool.h 799 WINBOOL WINAPI EnumPrintersA(DWORD Flags,LPSTR Name,DWORD Level,LPBYTE pPrinterEnum,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
800 WINBOOL WINAPI EnumPrintersW(DWORD Flags,LPWSTR Name,DWORD Level,LPBYTE pPrinterEnum,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
867 WINBOOL WINAPI SetJobA(HANDLE hPrinter,DWORD JobId,DWORD Level,LPBYTE pJob,DWORD Command);
868 WINBOOL WINAPI SetJobW(HANDLE hPrinter,DWORD JobId,DWORD Level,LPBYTE pJob,DWORD Command);
869 WINBOOL WINAPI GetJobA(HANDLE hPrinter,DWORD JobId,DWORD Level,LPBYTE pJob,DWORD cbBuf,LPDWORD pcbNeeded);
870 WINBOOL WINAPI GetJobW(HANDLE hPrinter,DWORD JobId,DWORD Level,LPBYTE pJob,DWORD cbBuf,LPDWORD pcbNeeded);
871 WINBOOL WINAPI EnumJobsA(HANDLE hPrinter,DWORD FirstJob,DWORD NoJobs,DWORD Level,LPBYTE pJob,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
872 WINBOOL WINAPI EnumJobsW(HANDLE hPrinter,DWORD FirstJob,DWORD NoJobs,DWORD Level,LPBYTE pJob,DWORD cbBuf,LPDWORD pcbNeeded,LPDWORD pcReturned);
873 HANDLE WINAPI AddPrinterA(LPSTR pName,DWORD Level,LPBYTE pPrinter);
874 HANDLE WINAPI AddPrinterW(LPWSTR pName,DWORD Level,LPBYTE pPrinter)
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 139 /// \brief The level of the diagnostic, after it has been through mapping.
140 enum Level {
297 /// \brief The level of the last diagnostic emitted.
299 /// This is used to emit continuation diagnostics with the same level as the
301 DiagnosticIDs::Level LastDiagLevel;
592 /// level.
600 unsigned getCustomDiagID(Level L, const char (&FormatString)[N]) {
601 return Diags->getCustomDiagID((DiagnosticIDs::Level)L,
649 /// object, classify the specified diagnostic ID into a Level, consumable by
658 Level getDiagnosticLevel(unsigned DiagID, SourceLocation Loc) const
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/include/
audio_processing.h 410 // Sets the aggressiveness of the suppressor. A higher level trades off
412 virtual int set_suppression_level(SuppressionLevel level) = 0;
457 // Returns a pointer to the low level AEC component. In case of multiple
495 // consistent signal level.
534 // to pass the current analog level from the audio HAL. Must be within the
536 virtual int set_stream_analog_level(int level) = 0;
539 // to obtain the recommended new analog level for the audio HAL. It is the
540 // users responsibility to apply this level.
564 // most of the input level range, and compresses (gradually reduces gain
565 // with increasing level) the input signal at higher levels. This mode i
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/
noise_suppression_impl.cc 33 int MapSetting(NoiseSuppression::Level level) {
34 switch (level) {
100 int NoiseSuppressionImpl::set_level(Level level) {
102 if (MapSetting(level) == -1) {
106 level_ = level;
110 NoiseSuppression::Level NoiseSuppressionImpl::level() const { function in class:webrtc::NoiseSuppressionImpl
  /external/chromium_org/ui/gfx/geometry/
r_tree_base.h 60 virtual int Level() const = 0;
102 virtual int Level() const OVERRIDE;
120 virtual int Level() const OVERRIDE;
135 // removal occurs at most once on each level of the tree when overflowing
166 explicit Node(int level);
275 // (instead of a split) at most once per level of the tree. A starting value
277 // every level of the tree. This should always be set to -1 except by
  /external/llvm/include/llvm/CodeGen/
SelectionDAGISel.h 52 CodeGenOpt::Level OptLevel;
56 CodeGenOpt::Level OL = CodeGenOpt::Default);
100 CodeGenOpt::Level OptLevel,
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/lib/Target/Mips/
MipsTargetMachine.cpp 57 CodeGenOpt::Level OL, bool isLittle)
69 CodeGenOpt::Level OL)
78 CodeGenOpt::Level OL)
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.cpp 10 // Top-level implementation for the NVPTX target.
73 CodeGenOpt::Level OL, bool is64bit)
84 CodeGenOpt::Level OL)
92 CodeGenOpt::Level OL)
236 // Allow targets to insert passes that improve instruction level parallelism,
  /external/llvm/lib/Target/PowerPC/
PPCSubtarget.h 109 /// OptLevel - What default optimization level we're emitting code for.
110 CodeGenOpt::Level OptLevel;
125 CodeGenOpt::Level OptLevel);
229 bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
PPCTargetMachine.cpp 10 // Top-level implementation for the PowerPC target.
43 CodeGenOpt::Level OL, bool is64Bit)
55 CodeGenOpt::Level OL)
65 CodeGenOpt::Level OL)
  /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/webrtc/src/modules/audio_processing/interface/
audio_processing.h 288 // Sets the aggressiveness of the suppressor. A higher level trades off
290 virtual int set_suppression_level(SuppressionLevel level) = 0;
367 // consistent signal level.
406 // to pass the current analog level from the audio HAL. Must be within the
408 virtual int set_stream_analog_level(int level) = 0;
411 // to obtain the recommended new analog level for the audio HAL. It is the
412 // users responsibility to apply this level.
436 // most of the input level range, and compresses (gradually reduces gain
437 // with increasing level) the input signal at higher levels. This mode is
438 // preferred on embedded devices where the capture signal level i
    [all...]
  /external/webrtc/src/modules/audio_processing/
noise_suppression_impl.cc 34 int MapSetting(NoiseSuppression::Level level) {
35 switch (level) {
99 int NoiseSuppressionImpl::set_level(Level level) {
101 if (MapSetting(level) == -1) {
105 level_ = level;
109 NoiseSuppression::Level NoiseSuppressionImpl::level() const { function in class:webrtc::NoiseSuppressionImpl
  /external/icu/icu4c/source/i18n/
collationkeys.h 94 * @param level The next level about to be written to the ByteSink.
95 * @return TRUE if the level is to be written
98 virtual UBool needToWrite(Collation::Level level);
103 * Optionally writes the case level.
104 * Stops writing levels when callback.needToWrite(level) returns FALSE.
112 Collation::Level minLevel, LevelCallback &callback,
119 // Secondary level: Compress up to 33 common weights as 05..25 or 25..45.
125 // Case level, lowerFirst: Compress up to 7 common weights as 1..7 or 7..13
    [all...]
  /external/libphonenumber/java/test/com/android/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";

Completed in 1291 milliseconds

1 2 3 4 5 67 8 91011>>