Searched refs:diagnostics (Results 1 - 25 of 43) sorted by relevance

12

/external/llvm/test/MC/AArch64/
H A Dinst-directive-diagnostic.s5 .global diagnostics
6 .type diagnostics,%function
7 diagnostics: label
/external/clang/bindings/python/tests/cindex/
H A Dtest_diagnostics.py8 assert len(tu.diagnostics) == 1
9 assert tu.diagnostics[0].severity == Diagnostic.Warning
10 assert tu.diagnostics[0].location.line == 1
11 assert tu.diagnostics[0].location.column == 11
12 assert (tu.diagnostics[0].spelling ==
18 assert len(tu.diagnostics) == 1
19 assert tu.diagnostics[0].severity == Diagnostic.Warning
20 assert tu.diagnostics[0].location.line == 2
21 assert tu.diagnostics[0].location.column == 7
22 assert 'incompatible' in tu.diagnostics[
[all...]
H A Dtest_code_completion.py5 assert len(cr.diagnostics) == 0
/external/v8/tools/clang/plugins/
H A DSuppressibleDiagnosticBuilder.h19 SuppressibleDiagnosticBuilder(clang::DiagnosticsEngine* diagnostics, argument
23 : DiagnosticBuilder(diagnostics->Report(loc, diagnostic_id)),
24 diagnostics_(diagnostics),
H A DCheckIPCVisitor.cpp29 auto& diagnostics = compiler_.getDiagnostics(); local
30 error_write_param_bad_type_ = diagnostics.getCustomDiagID(
32 error_tuple_bad_type_ = diagnostics.getCustomDiagID(
34 error_write_param_bad_signature_ = diagnostics.getCustomDiagID(
36 note_see_here_ = diagnostics.getCustomDiagID(
272 DiagnosticsEngine& diagnostics = compiler_.getDiagnostics(); local
281 diagnostics.Report(loc, error) << exit_type << via;
284 diagnostics.Report(tdef->getDecl()->getLocation(), note_see_here_);
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DPreprocessor.cpp32 Diagnostics* diagnostics; member in struct:pp::PreprocessorImpl
39 diagnostics(diag),
47 Preprocessor::Preprocessor(Diagnostics* diagnostics, argument
50 mImpl = new PreprocessorImpl(diagnostics, directiveHandler);
101 // diagnostics.
112 mImpl->diagnostics->report(Diagnostics::INTEGER_OVERFLOW,
126 mImpl->diagnostics->report(Diagnostics::FLOAT_OVERFLOW,
134 mImpl->diagnostics->report(Diagnostics::INVALID_NUMBER,
138 mImpl->diagnostics->report(Diagnostics::INVALID_CHARACTER,
H A DTokenizer.h34 Diagnostics* diagnostics; member in struct:pp::Tokenizer::Context
47 Tokenizer(Diagnostics* diagnostics);
H A DExpressionParser.h30 ExpressionParser(Lexer* lexer, Diagnostics* diagnostics);
H A DPreprocessor.h31 Preprocessor(Diagnostics* diagnostics, DirectiveHandler* directiveHandler);
H A DExpressionParser.y67 pp::Diagnostics* diagnostics;
186 context->diagnostics->report(pp::Diagnostics::DIVISION_BY_ZERO,
205 context->diagnostics->report(pp::Diagnostics::DIVISION_BY_ZERO,
253 context->diagnostics->report(pp::Diagnostics::INTEGER_OVERFLOW,
266 context->diagnostics->report(pp::Diagnostics::UNDEFINED_IDENTIFIER,
307 context->diagnostics->report(pp::Diagnostics::INVALID_EXPRESSION,
314 ExpressionParser::ExpressionParser(Lexer* lexer, Diagnostics* diagnostics) :
316 mDiagnostics(diagnostics)
323 context.diagnostics = mDiagnostics;
H A DDirectiveParser.h35 Diagnostics* diagnostics,
H A DMacroExpander.h34 MacroExpander(Lexer* lexer, MacroSet* macroSet, Diagnostics* diagnostics, bool parseDefined);
H A DTokenizer.l274 yyextra->diagnostics->report(pp::Diagnostics::EOF_IN_COMMENT,
289 Tokenizer::Tokenizer(Diagnostics* diagnostics) : mHandle(0)
291 mContext.diagnostics = diagnostics;
325 mContext.diagnostics->report(Diagnostics::TOKEN_TOO_LONG,
/external/clang/utils/analyzer/
H A DCmpRuns.py23 # Generate a relation from diagnostics in run A to diagnostics in run B
126 self.diagnostics = []
134 # Cumulative list of all diagnostics from all the reports.
135 self.diagnostics = []
160 if 'HTMLDiagnostics_files' in data['diagnostics'][0]:
162 for d in data['diagnostics']:
168 htmlFiles = [None] * len(data['diagnostics'])
171 diagnostics = [AnalysisDiagnostic(d, report, h)
172 for d,h in zip(data.pop('diagnostics'),
[all...]
/external/llvm/test/MC/ARM/
H A Deh-directive-fnend-diagnostics.s4 @ Check the diagnostics for mismatched .fnend directive
H A Deh-directive-fnstart-diagnostics.s4 @ Check the diagnostics for the mismatched .fnstart directives.
6 @ There should be some diagnostics when the previous .fnstart is not closed
H A Deh-directive-pad-diagnostics.s4 @ Check the diagnostics for .pad directive.
H A Deh-directive-personality-diagnostics.s4 @ Check the diagnostics for .personality directive.
H A Deh-directive-cantunwind-diagnostics.s4 @ Check the diagnostics for .cantunwind, .handlerdata, and .personality
7 @ .personality directive. This test case check for the diagnostics for
H A Deh-directive-save-diagnostics.s4 @ Check the diagnostics for .save directive
H A Deh-directive-vsave-diagnostics.s4 @ Check the diagnostics for .vsave directive
/external/swiftshader/src/OpenGL/compiler/
H A DDirectiveHandler.h28 TDiagnostics& diagnostics,
H A DDirectiveHandler.cpp37 TDiagnostics& diagnostics,
40 mDiagnostics(diagnostics),
36 TDirectiveHandler(TExtensionBehavior& extBehavior, TDiagnostics& diagnostics, int& shaderVersion) argument
/external/clang/bindings/python/examples/cindex/
H A Dcindex-dump.py82 pprint(('diags', map(get_diag_info, tu.diagnostics)))
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DTemplateCompiler.java146 List<Diagnostic<? extends JavaFileObject>> diagnostics, Exception cause)
152 for (Diagnostic<? extends JavaFileObject> diagnostic : diagnostics) {
145 throwExceptionWithLotsOfDiagnosticInfo(CharSequence javaSource, String errorMessage, List<Diagnostic<? extends JavaFileObject>> diagnostics, Exception cause) argument

Completed in 391 milliseconds

12