Searched defs:Level (Results 1 - 25 of 94) sorted by relevance

1234

/external/clang/lib/Frontend/
H A DTextDiagnosticBuffer.cpp22 void TextDiagnosticBuffer::HandleDiagnostic(DiagnosticsEngine::Level Level, argument
25 DiagnosticConsumer::HandleDiagnostic(Level, Info);
29 switch (Level) {
H A DLogDiagnosticPrinter.cpp27 static StringRef getLevelName(DiagnosticsEngine::Level Level) { argument
28 switch (Level) {
112 void LogDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level, argument
115 DiagnosticConsumer::HandleDiagnostic(Level, Info);
131 DE.DiagnosticLevel = Level;
H A DTextDiagnosticPrinter.cpp55 DiagnosticsEngine::Level Level,
75 if (Level == DiagnosticsEngine::Error &&
85 << (Level == DiagnosticsEngine::Remark ? "-R" : "-W") << Opt;
112 void TextDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level, argument
115 DiagnosticConsumer::HandleDiagnostic(Level, Info);
123 printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts);
139 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors,
141 TextDiagnostic::printDiagnosticMessage(OS, Level, DiagMessageStrea
54 printDiagnosticOptions(raw_ostream &OS, DiagnosticsEngine::Level Level, const Diagnostic &Info, const DiagnosticOptions &DiagOpts) argument
[all...]
/external/llvm/unittests/Support/
H A DCompressionTest.cpp26 void TestZlibCompression(StringRef Input, zlib::CompressionLevel Level) { argument
29 EXPECT_EQ(zlib::StatusOK, zlib::compress(Input, Compressed, Level));
/external/swiftshader/third_party/subzero/pnacl-llvm/
H A DNaClBitstreamReader.cpp36 raw_ostream &Out, ErrorLevel Level, uint64_t BitPosition) {
37 assert(Level < array_lengthof(::ErrorLevelName));
38 return Out << ErrorLevelName[Level] << "("
35 ErrorAt( raw_ostream &Out, ErrorLevel Level, uint64_t BitPosition) argument
H A DNaClBitcodeParser.cpp90 naclbitc::ErrorLevel Level, uint64_t BitPosition,
92 naclbitc::ErrorAt(*ErrStream, Level, BitPosition) << Message << "\n";
93 if (Level == naclbitc::Fatal)
89 ErrorAt( naclbitc::ErrorLevel Level, uint64_t BitPosition, const std::string &Message) argument
/external/clang/include/clang/Frontend/
H A DDiagnosticRenderer.h68 DiagnosticsEngine::Level LastLevel;
76 DiagnosticsEngine::Level Level,
83 DiagnosticsEngine::Level Level,
88 DiagnosticsEngine::Level Level,
103 DiagnosticsEngine::Level Level) {}
105 DiagnosticsEngine::Level Leve
102 beginDiagnostic(DiagOrStoredDiag D, DiagnosticsEngine::Level Level) argument
104 endDiagnostic(DiagOrStoredDiag D, DiagnosticsEngine::Level Level) argument
[all...]
H A DSerializedDiagnostics.h40 /// \brief A stable version of DiagnosticIDs::Level.
44 enum Level { enum in namespace:clang::serialized_diags
/external/clang/lib/ARCMigrate/
H A DPlistReporter.cpp19 static StringRef getLevelName(DiagnosticsEngine::Level Level) { argument
20 switch (Level) {
/external/llvm/lib/Support/
H A DCompression.cpp27 static int encodeZlibCompressionLevel(zlib::CompressionLevel Level) { argument
28 switch (Level) {
51 CompressionLevel Level) {
54 int CLevel = encodeZlibCompressionLevel(Level);
87 CompressionLevel Level) {
49 compress(StringRef InputBuffer, SmallVectorImpl<char> &CompressedBuffer, CompressionLevel Level) argument
H A DIntervalMap.cpp25 NodeRef Path::getLeftSibling(unsigned Level) const {
27 if (Level == 0)
31 unsigned l = Level - 1;
43 for (++l; l != Level; ++l)
48 void Path::moveLeft(unsigned Level) { argument
49 assert(Level != 0 && "Cannot move the root node");
54 l = Level - 1;
59 } else if (height() < Level)
61 path.resize(Level + 1, Entry(nullptr, 0, 0));
68 for (++l; l != Level;
98 moveRight(unsigned Level) argument
[all...]
/external/parameter-framework/upstream/test/functional-tests/include/
H A DStoreLogger.hpp51 enum class Level class in struct:parameterFramework::StoreLogger::Log
56 Level level;
67 logs.push_back({Log::Level::warning, strLog});
69 void info(const std::string &strLog) override { logs.push_back({Log::Level::info, strLog}); }
73 const Logs filter(Log::Level level) const
96 /** Overload input stream operator to pretty print a StoreLogger::Log::Level. */
97 std::ostream &operator<<(std::ostream &os, const StoreLogger::Log::Level &level)
100 using L = StoreLogger::Log::Level;
/external/skia/src/core/
H A DSkMipMap.h53 struct Level { struct in class:SkMipMap
58 bool extractLevel(const SkSize& scale, Level*) const;
66 bool getLevel(int index, Level*) const;
70 fLevels = (Level*)newData; // could be nullptr
75 Level* fLevels; // managed by the baseclass, may be null due to onDataChanged.
/external/skqp/src/core/
H A DSkMipMap.h52 struct Level { struct in class:SkMipMap
57 bool extractLevel(const SkSize& scale, Level*) const;
65 bool getLevel(int index, Level*) const;
69 fLevels = (Level*)newData; // could be nullptr
74 Level* fLevels; // managed by the baseclass, may be null due to onDataChanged.
/external/webrtc/webrtc/voice_engine/
H A Dlevel_indicator.cc89 int8_t AudioLevel::Level() const function in class:webrtc::voe::AudioLevel
/external/clang/include/clang/Basic/
H A DOperatorPrecedence.h27 enum Level { enum in namespace:clang::prec
47 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
/external/valgrind/helgrind/tests/
H A Dt2t.c9 } Level; typedef in typeref:struct:__anon29371
11 static Level level[LEVEL];
/external/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp30 DiagnosticsEngine::Level Level; member in struct:__anon3650::PrettyDiag
32 PrettyDiag(StringRef name, StringRef flag, DiagnosticsEngine::Level level)
33 : Name(name), Flag(flag), Level(level) {}
43 static char getCharForLevel(DiagnosticsEngine::Level Level) { argument
44 switch (Level) {
129 DiagnosticsEngine::Level DiagLevel =
142 Out << getCharForLevel(I->Level) << " ";
/external/okhttp/okhttp-logging-interceptor/src/main/java/com/squareup/okhttp/logging/
H A DHttpLoggingInterceptor.java47 public enum Level { enum in class:HttpLoggingInterceptor
124 private volatile Level level = Level.NONE;
127 public HttpLoggingInterceptor setLevel(Level level) {
128 if (level == null) throw new NullPointerException("level == null. Use Level.NONE instead.");
133 public Level getLevel() {
138 Level level = this.level;
141 if (level == Level.NONE) {
145 boolean logBody = level == Level.BODY;
146 boolean logHeaders = logBody || level == Level
[all...]
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DLevel.java34 <p>The <code>Level</code> class may be subclassed to define a larger
40 public class Level extends Priority implements Serializable { class in inherits:Priority,Serializable
54 final static public Level OFF = new Level(OFF_INT, "OFF", 0);
60 final static public Level FATAL = new Level(FATAL_INT, "FATAL", 0);
65 final static public Level ERROR = new Level(ERROR_INT, "ERROR", 3);
70 final static public Level WARN = new Level(WARN_IN
104 protected Level(int level, String levelStr, int syslogEquivalent) { method in class:Level
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DIntervalMap.cpp25 NodeRef Path::getLeftSibling(unsigned Level) const {
27 if (Level == 0)
31 unsigned l = Level - 1;
43 for (++l; l != Level; ++l)
48 void Path::moveLeft(unsigned Level) { argument
49 assert(Level != 0 && "Cannot move the root node");
54 l = Level - 1;
59 } else if (height() < Level)
61 path.resize(Level + 1, Entry(0, 0, 0));
68 for (++l; l != Level;
98 moveRight(unsigned Level) argument
[all...]
/external/clang/lib/CodeGen/
H A DModuleBuilder.cpp54 unsigned Level = --Self.HandlingTopLevelDecls; local
55 if (Level == 0 && EmitDeferred)
/external/clang/lib/Format/
H A DTokenAnnotator.h42 : First(Line.Tokens.front().Tok), Level(Line.Level),
112 unsigned Level; member in class:clang::format::AnnotatedLine
H A DUnwrappedLineParser.h44 unsigned Level; member in struct:clang::format::UnwrappedLine
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
217 : Level(0), InPPDirective(false), MustBeDeclaration(false) {}
/external/llvm/include/llvm/Support/
H A DCodeGen.h33 enum Level { NotPIC=0, SmallPIC=1, BigPIC=2 }; enum in namespace:llvm::PICLevel
37 enum Level { Default=0, Small=1, Large=2 }; enum in namespace:llvm::PIELevel
52 enum Level { enum in namespace:llvm::CodeGenOpt

Completed in 1252 milliseconds

1234