Searched defs:Level (Results 1 - 25 of 60) 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.cpp33 static StringRef getLevelName(DiagnosticsEngine::Level Level) { argument
34 switch (Level) {
110 void LogDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level, argument
113 DiagnosticConsumer::HandleDiagnostic(Level, Info);
129 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/chromium_org/chrome/test/chromedriver/chrome/
H A Dlog.h21 enum Level { enum in class:Log
34 Level level,
39 void AddEntry(Level level,
44 void AddEntry(Level level, const std::string& message);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebConsoleMessage.h39 enum Level { enum in struct:blink::WebConsoleMessage
48 Level level;
53 WebConsoleMessage(Level level, const WebString& text)
/external/chromium_org/third_party/skia/src/core/
H A DSkMipMap.h20 struct Level { struct in class:SkMipMap
27 bool extractLevel(SkScalar scale, Level*) const;
33 Level* fLevels;
37 SkMipMap(Level* levels, int count, size_t size);
40 static Level* AllocLevels(int levelCount, size_t pixelSize);
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dlevel_indicator.cc89 int8_t AudioLevel::Level() const function in class:webrtc::voe::AudioLevel
/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 DSerializedDiagnosticPrinter.h49 /// A stable version of DiagnosticIDs::Level.
53 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.cpp26 static int encodeZlibCompressionLevel(zlib::CompressionLevel Level) { argument
27 switch (Level) {
50 CompressionLevel Level) {
53 int CLevel = encodeZlibCompressionLevel(Level);
80 CompressionLevel Level) {
48 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.h20 struct Level { struct in class:SkMipMap
27 bool extractLevel(SkScalar scale, Level*) const;
33 Level* fLevels;
37 SkMipMap(Level* levels, int count, size_t size);
40 static Level* AllocLevels(int levelCount, size_t pixelSize);
/external/webrtc/src/modules/audio_processing/
H A Dlevel_estimator_impl.cc26 class Level { class in namespace:webrtc::__anon33500
30 Level() function in class:webrtc::__anon33500::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,
/external/valgrind/main/helgrind/tests/
H A Dt2t.c9 } Level; typedef in typeref:struct:__anon32859
11 static Level level[LEVEL];
/external/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp30 DiagnosticsEngine::Level Level; member in struct:__anon19494::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.h45 enum Level { enum in namespace:llvm::CodeGenOpt
/external/chromium_org/content/renderer/
H A Dv8_value_converter_impl.cc66 // Level scope which updates the current depth of some FromV8ValueState.
67 class Level { class in class:content::V8ValueConverterImpl::FromV8ValueState
69 explicit Level(FromV8ValueState* state) : state_(state) { function in class:content::V8ValueConverterImpl::FromV8ValueState::Level
72 ~Level() {
291 FromV8ValueState::Level state_level(state);
/external/clang/lib/Format/
H A DTokenAnnotator.h41 : First(Line.Tokens.front().Tok), Level(Line.Level),
85 unsigned Level; member in class:clang::format::AnnotatedLine
H A DUnwrappedLineParser.h43 unsigned Level; member in struct:clang::format::UnwrappedLine
124 // FIXME: We are constantly running into bugs where Line.Level is incorrectly
125 // subtracted from beyond 0. Introduce a method to subtract from Line.Level
212 : Level(0), InPPDirective(false), MustBeDeclaration(false) {}
/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/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DUISourceCodeFrame.js205 * @param {!WebInspector.UISourceCodeFrame.Infobar.Level} level
229 WebInspector.UISourceCodeFrame.Infobar.Level = {

Completed in 445 milliseconds

123