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

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Tooling/Core/
Diagnostic.h 48 /// \brief Represents the diagnostic with the level of severity and possible
51 enum Level {
58 Diagnostic(llvm::StringRef DiagnosticName, Level DiagLevel,
63 SmallVector<DiagnosticMessage, 1> &Notes, Level DiagLevel,
78 /// \brief Diagnostic level. Can indicate either an error or a warning.
79 Level DiagLevel;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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 {
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Tooling/Core/
Diagnostic.h 48 /// \brief Represents the diagnostic with the level of severity and possible
51 enum Level {
58 Diagnostic(llvm::StringRef DiagnosticName, Level DiagLevel,
63 SmallVector<DiagnosticMessage, 1> &Notes, Level DiagLevel,
78 /// \brief Diagnostic level. Can indicate either an error or a warning.
79 Level DiagLevel;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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 {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/Core/
Diagnostic.h 48 /// \brief Represents the diagnostic with the level of severity and possible
51 enum Level {
58 Diagnostic(llvm::StringRef DiagnosticName, Level DiagLevel,
63 SmallVector<DiagnosticMessage, 1> &Notes, Level DiagLevel,
78 /// \brief Diagnostic level. Can indicate either an error or a warning.
79 Level DiagLevel;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ws2def.h 32 ULONG Level : 4;
  /external/llvm/lib/Target/ARM/
ARMTargetMachine.h 43 CodeGenOpt::Level OL, bool isLittle);
69 CodeGenOpt::Level OL, bool isLittle);
80 CodeGenOpt::Level OL);
91 CodeGenOpt::Level OL);
104 CodeGenOpt::Level OL, bool isLittle);
115 CodeGenOpt::Level OL);
126 CodeGenOpt::Level OL);
  /libcore/ojluni/src/main/java/java/util/logging/
MemoryHandler.java 43 * a pre-defined level, the <tt>pushLevel</tt>. </li>
60 * <li> &lt;handler-name&gt;.level
61 * specifies the level for the <tt>Handler</tt>
62 * (defaults to <tt>Level.ALL</tt>). </li>
69 * defines the <tt>pushLevel</tt> (defaults to <tt>level.SEVERE</tt>). </li>
77 * <li> java.util.logging.MemoryHandler.level=INFO </li>
83 * <li> com.foo.MyHandler.level=INFO </li>
92 private volatile Level pushLevel;
105 pushLevel = manager.getLevelProperty(cname +".push", Level.SEVERE);
110 setLevel(manager.getLevelProperty(cname +".level", Level.ALL))
    [all...]
Handler.java 36 * A <tt>Handler</tt> can be disabled by doing a <tt>setLevel(Level.OFF)</tt>
37 * and can be re-enabled by doing a <tt>setLevel</tt> with an appropriate level.
41 * and <tt>Level</tt>. See the specific documentation for each concrete
49 private static final int offValue = Level.OFF.intValue();
57 // We wouldn't want 'level' to be changed by another thread in the middle
61 private volatile Level logLevel = Level.ALL;
71 * level of <tt>Level.ALL</tt>, no <tt>Formatter</tt>, and no
249 * Set the log level specifying which message levels will b
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
SocketListener.java 9 import java.util.logging.Level;
51 if (logger.isLoggable(Level.FINEST)) {
63 logger.log(Level.WARNING, this.getName() + ".run() exception ", e);
68 logger.log(Level.WARNING, this.getName() + ".run() exception ", e);
72 if (logger.isLoggable(Level.FINEST)) {
  /external/llvm/lib/Support/
Compression.cpp 27 static int encodeZlibCompressionLevel(zlib::CompressionLevel Level) {
28 switch (Level) {
51 CompressionLevel Level) {
54 int CLevel = encodeZlibCompressionLevel(Level);
87 CompressionLevel Level) {
  /external/mesa3d/src/gallium/state_trackers/nine/
texture9.c 159 * allocate only for the first level, since it is the only lockable
160 * level. Check apps don't crash if we allocate smaller buffer (some
162 * level) */
244 UINT Level,
247 DBG("This=%p Level=%d pDesc=%p\n", This, Level, pDesc);
249 user_assert(Level <= This->base.base.info.last_level, D3DERR_INVALIDCALL);
250 user_assert(Level == 0 || !(This->base.base.usage & D3DUSAGE_AUTOGENMIPMAP),
253 *pDesc = This->surfaces[Level]->desc;
260 UINT Level,
    [all...]
cubetexture9.c 189 UINT Level,
192 DBG("This=%p Level=%u pDesc=%p\n", This, Level, pDesc);
194 user_assert(Level <= This->base.base.info.last_level, D3DERR_INVALIDCALL);
195 user_assert(Level == 0 || !(This->base.base.usage & D3DUSAGE_AUTOGENMIPMAP),
198 *pDesc = This->surfaces[Level * 6]->desc;
206 UINT Level,
209 const unsigned s = Level * 6 + FaceType;
211 DBG("This=%p FaceType=%d Level=%u ppCubeMapSurface=%p\n",
212 This, FaceType, Level, ppCubeMapSurface)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsTargetMachine.h 71 CodeGenOpt::Level OptLevel);
73 CodeGenOpt::Level OptLevel);
75 CodeGenOpt::Level OptLevel);
76 virtual bool addPostRegAlloc(PassManagerBase &, CodeGenOpt::Level);
78 CodeGenOpt::Level OptLevel,
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ConsoleHandlerTest.java 30 import java.util.logging.Level;
80 "java.util.logging.ConsoleHandler.level"));
89 assertSame(h.getLevel(), Level.INFO);
100 p.put("java.util.logging.ConsoleHandler.level", "FINE");
110 "java.util.logging.ConsoleHandler.level"), "FINE");
114 assertSame(h.getLevel(), Level.parse("FINE"));
126 p.put("java.util.logging.ConsoleHandler.level", INVALID_LEVEL);
134 "java.util.logging.ConsoleHandler.level"), INVALID_LEVEL);
138 assertSame(h.getLevel(), Level.INFO);
142 h.publish(new LogRecord(Level.SEVERE, "test"))
    [all...]
HandlerTest.java 29 import java.util.logging.Level;
74 assertSame(h.getLevel(), Level.ALL);
86 p.put("java.util.logging.MockHandler.level", "FINE");
97 "java.util.logging.MockHandler.level"), "FINE");
101 assertSame(h.getLevel(), Level.ALL);
254 Level f = Level.CONFIG;
273 h.setLevel(Level.CONFIG);
285 LogRecord r = new LogRecord(Level.CONFIG, null);
288 h.setLevel(Level.CONFIG)
    [all...]
StreamHandlerTest.java 35 import java.util.logging.Level;
94 "java.util.logging.StreamHandler.level"));
103 assertSame(Level.INFO, h.getLevel());
115 p.put("java.util.logging.StreamHandler.level", "FINE");
125 "java.util.logging.StreamHandler.level"));
129 assertSame(h.getLevel(), Level.parse("FINE"));
142 p.put("java.util.logging.StreamHandler.level", INVALID_LEVEL);
150 "java.util.logging.StreamHandler.level"));
154 assertSame(Level.INFO, h.getLevel());
158 h.publish(new LogRecord(Level.SEVERE, "test"))
    [all...]
  /external/slf4j/jul-to-slf4j/src/test/java/org/slf4j/bridge/
SLF4JBridgeHandlerTest.java 29 import java.util.logging.Level;
53 log4jRoot.setLevel(org.apache.log4j.Level.TRACE);
84 julLogger.setLevel(Level.ALL);
95 assertLevel(i++, org.apache.log4j.Level.TRACE);
96 assertLevel(i++, org.apache.log4j.Level.DEBUG);
97 assertLevel(i++, org.apache.log4j.Level.DEBUG);
98 assertLevel(i++, org.apache.log4j.Level.INFO);
99 assertLevel(i++, org.apache.log4j.Level.WARN);
100 assertLevel(i++, org.apache.log4j.Level.ERROR);
136 julResourceBundleLogger.log(Level.INFO, resourceKey2, params2); // 2nd lo
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_option.hpp 28 template <int Level, int Name>
69 // Get the level of the socket option.
71 int level(const Protocol&) const function in class:asio::detail::socket_option::boolean
73 return Level;
131 template <int Level, int Name>
160 // Get the level of the socket option.
162 int level(const Protocol&) const function in class:asio::detail::socket_option::integer
164 return Level;
211 template <int Level, int Name>
253 // Get the level of the socket option
255 int level(const Protocol&) const function in class:asio::detail::socket_option::linger
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMTargetMachine.h 53 virtual bool addPreISel(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
54 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
55 virtual bool addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
56 virtual bool addPreSched2(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
57 virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
58 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldMemoryHandlerTest.java 27 import java.util.logging.Level;
61 props.put("java.util.logging.MemoryHandler.level", "FINE");
70 assertTrue(handler.isLoggable(new LogRecord(Level.INFO, "1")));
71 assertTrue(handler.isLoggable(new LogRecord(Level.WARNING, "2")));
72 assertTrue(handler.isLoggable(new LogRecord(Level.SEVERE, "3")));
80 assertEquals("Level should be FINE", Level.FINE, handler.getLevel());
81 assertEquals("Level should be WARNING", Level.WARNING, handler.getPushLevel());
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
prettywriter.h 50 \param indentCharCount Number of indent characters for each indentation level.
87 new (Base::level_stack_.template Push<typename Base::Level>()) typename Base::Level(false);
95 RAPIDJSON_ASSERT(Base::level_stack_.GetSize() >= sizeof(typename Base::Level));
96 RAPIDJSON_ASSERT(!Base::level_stack_.template Top<typename Base::Level>()->inArray);
97 bool empty = Base::level_stack_.template Pop<typename Base::Level>(1)->valueCount == 0;
113 new (Base::level_stack_.template Push<typename Base::Level>()) typename Base::Level(true);
119 RAPIDJSON_ASSERT(Base::level_stack_.GetSize() >= sizeof(typename Base::Level));
120 RAPIDJSON_ASSERT(Base::level_stack_.template Top<typename Base::Level>()->inArray);
149 typename Base::Level* level = Base::level_stack_.template Top<typename Base::Level>(); local
    [all...]
  /external/llvm/include/llvm/ADT/
IntervalMap.h 792 template <typename NodeT> NodeT &node(unsigned Level) const {
793 return *reinterpret_cast<NodeT*>(path[Level].node);
795 unsigned size(unsigned Level) const { return path[Level].size; }
796 unsigned offset(unsigned Level) const { return path[Level].offset; }
797 unsigned &offset(unsigned Level) { return path[Level].offset; }
816 /// subtree - Get the subtree referenced from Level. When the path is
817 /// consistent, node(Level + 1) == subtree(Level)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
IntervalMap.h 771 template <typename NodeT> NodeT &node(unsigned Level) const {
772 return *reinterpret_cast<NodeT*>(path[Level].node);
774 unsigned size(unsigned Level) const { return path[Level].size; }
775 unsigned offset(unsigned Level) const { return path[Level].offset; }
776 unsigned &offset(unsigned Level) { return path[Level].offset; }
795 /// subtree - Get the subtree referenced from Level. When the path is
796 /// consistent, node(Level + 1) == subtree(Level)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
IntervalMap.h 793 template <typename NodeT> NodeT &node(unsigned Level) const {
794 return *reinterpret_cast<NodeT*>(path[Level].node);
796 unsigned size(unsigned Level) const { return path[Level].size; }
797 unsigned offset(unsigned Level) const { return path[Level].offset; }
798 unsigned &offset(unsigned Level) { return path[Level].offset; }
817 /// subtree - Get the subtree referenced from Level. When the path is
818 /// consistent, node(Level + 1) == subtree(Level)
    [all...]

Completed in 1427 milliseconds

1 2 3 4 56 7 8 91011>>