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

123

/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/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/include/llvm/MC/
H A DMCCodeGenInfo.h33 CodeGenOpt::Level OptLevel;
38 CodeGenOpt::Level OL = CodeGenOpt::Default);
44 CodeGenOpt::Level getOptLevel() const { return OptLevel; }
47 void setOptLevel(CodeGenOpt::Level Level) { OptLevel = Level; } argument
/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/skia/src/core/
H A DSkMipMap.h23 struct Level { struct in class:SkMipMap
30 bool extractLevel(SkScalar scale, Level*) const;
34 fLevels = (Level*)newData; // could be NULL
38 Level* fLevels;
/external/webrtc/src/modules/audio_processing/
H A Dlevel_estimator_impl.cc26 class Level { class in namespace:webrtc::__anon17094
30 Level() function in class:webrtc::__anon17094::Level
33 ~Level() {}
98 Level* level = static_cast<Level*>(handle(0));
129 Level* level = static_cast<Level*>(handle(0));
141 return new Level;
146 Level* level = static_cast<Level*>(handl
[all...]
/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,
H A DDiagnosticIDs.h119 enum Level { enum in class:clang::diag::DiagnosticIDs
140 unsigned getCustomDiagID(Level L, StringRef FormatString);
252 /// \brief Classify the specified diagnostic ID into a Level, consumable by
260 DiagnosticIDs::Level
276 void EmitDiag(DiagnosticsEngine &Diag, Level DiagLevel) const;
/external/valgrind/helgrind/tests/
H A Dt2t.c9 } Level; typedef in typeref:struct:__anon16350
11 static Level level[LEVEL];
/external/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp30 DiagnosticsEngine::Level Level; member in struct:__anon2760::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) {
127 DiagnosticsEngine::Level DiagLevel =
140 Out << getCharForLevel(I->Level) << " ";
/external/llvm/include/llvm/Support/
H A DCodeGen.h34 enum Level { Default=0, Small=1, Large=2 }; enum in namespace:llvm::PICLevel
49 enum Level { enum in namespace:llvm::CodeGenOpt
/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/clang/lib/Format/
H A DTokenAnnotator.h42 : First(Line.Tokens.front().Tok), Level(Line.Level),
89 unsigned Level; member in class:clang::format::AnnotatedLine
H A DUnwrappedLineParser.h44 unsigned Level; member in struct:clang::format::UnwrappedLine
130 // FIXME: We are constantly running into bugs where Line.Level is incorrectly
131 // subtracted from beyond 0. Introduce a method to subtract from Line.Level
220 : Level(0), InPPDirective(false), MustBeDeclaration(false) {}
/external/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp66 void SourceCoverageView::renderIndent(raw_ostream &OS, unsigned Level) { argument
67 for (unsigned I = 0; I < Level; ++I)
71 void SourceCoverageView::renderViewDivider(unsigned Level, unsigned Length, argument
73 assert(Level != 0 && "Cannot render divider at top level");
74 renderIndent(OS, Level - 1);
/external/lzma/CPP/7zip/UI/Common/
H A DZipRegistry.h29 UInt32 Level; member in struct:NCompression::CFormatOptions
42 BlockLogSize = NumThreads = Level = Dictionary = Order = UInt32(-1);
52 UInt32 Level; member in struct:NCompression::CInfo
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/
H A DXLogger.java75 public enum Level { enum in class:XLogger
90 private Level(String name, int level) { method in class:XLogger.Level
152 * Log an exception being thrown. The generated log event uses Level ERROR.
172 public <T extends Throwable> T throwing(Level level, T throwable) {
180 * Log an exception being caught. The generated log event uses Level ERROR.
199 public void catching(Level level, Throwable throwable) {
/external/llvm/include/llvm/CodeGen/
H A DScheduleDFS.h95 unsigned Level; member in struct:llvm::SchedDFSResult::Connection
97 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {}
/external/llvm/lib/Target/
H A DTargetMachineC.cpp110 LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc,
130 CodeGenOpt::Level OL;
131 switch (Level) {
108 LLVMCreateTargetMachine(LLVMTargetRef T, const char* Triple, const char* CPU, const char* Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc, LLVMCodeModel CodeModel) argument

Completed in 3207 milliseconds

123