HomeSort by relevance Sort by last modified time
    Searched refs:diagnostics (Results 1 - 25 of 236) sorted by null

1 2 3 4 5 6 7 8 910

  /external/llvm/test/MC/AArch64/
inst-directive-diagnostic.s 5 .global diagnostics
6 .type diagnostics,%function
7 diagnostics: label
  /external/clang/bindings/python/tests/cindex/
test_diagnostics.py 8 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[0].spellin
    [all...]
test_code_completion.py 5 assert len(cr.diagnostics) == 0
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
bundle-bad.d 1 #name: .bundle_align_mode diagnostics
  /frameworks/base/tools/aapt2/cmd/
Compile.h 6 #include "Diagnostics.h"
10 int Compile(const std::vector<android::StringPiece>& args, IDiagnostics* diagnostics);
  /prebuilts/misc/common/robolectric/3.1.1/lib/
maven-error-diagnostics-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-error-diagnostics/2.2.1/
maven-error-diagnostics-2.2.1.jar 
  /external/v8/tools/clang/plugins/
SuppressibleDiagnosticBuilder.h 19 SuppressibleDiagnosticBuilder(clang::DiagnosticsEngine* diagnostics,
23 : DiagnosticBuilder(diagnostics->Report(loc, diagnostic_id)),
24 diagnostics_(diagnostics),
CheckIPCVisitor.cpp 29 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_);
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-error-diagnostics/2.0.9/
maven-error-diagnostics-2.0.9.jar 
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Preprocessor.cpp 31 Diagnostics *diagnostics; member in struct:pp::PreprocessorImpl
37 PreprocessorImpl(Diagnostics *diag,
40 : diagnostics(diag),
48 Preprocessor::Preprocessor(Diagnostics *diagnostics,
52 mImpl = new PreprocessorImpl(diagnostics, directiveHandler, settings);
88 // diagnostics.
93 mImpl->diagnostics->report(Diagnostics::PP_INVALID_NUMBER
    [all...]
Tokenizer.h 25 class Diagnostics;
32 Diagnostics *diagnostics; member in struct:pp::Tokenizer::Context
44 Tokenizer(Diagnostics *diagnostics);
ExpressionParser.h 31 Diagnostics::ID unexpectedIdentifier;
35 ExpressionParser(Lexer *lexer, Diagnostics *diagnostics);
45 Diagnostics *mDiagnostics;
Preprocessor.h 25 class Diagnostics;
39 Preprocessor(Diagnostics *diagnostics,
ExpressionParser.y 79 pp::Diagnostics* diagnostics;
138 context->diagnostics->report(context->errorSettings.unexpectedIdentifier,
221 context->diagnostics->report(pp::Diagnostics::PP_UNDEFINED_SHIFT,
246 context->diagnostics->report(pp::Diagnostics::PP_UNDEFINED_SHIFT,
274 context->diagnostics->report(pp::Diagnostics::PP_DIVISION_BY_ZERO,
300 context->diagnostics->report(pp::Diagnostics::PP_DIVISION_BY_ZERO
    [all...]
  /frameworks/base/tools/aapt2/
Main.cpp 31 #include "Diagnostics.h"
56 extern int Compile(const std::vector<StringPiece>& args, IDiagnostics* diagnostics);
57 extern int Link(const std::vector<StringPiece>& args, IDiagnostics* diagnostics);
64 IDiagnostics* diagnostics) {
66 return Compile(args, diagnostics);
68 return Link(args, diagnostics);
81 diagnostics->Error(DiagMessage() << "unknown command '" << command << "'");
85 static void RunDaemon(IDiagnostics* diagnostics) {
113 int ret = ExecuteCommand(raw_args[0], args, diagnostics);
134 aapt::StdErrDiagnostics diagnostics; local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
lui-1.s 1 # Source code used to test error diagnostics with the LUI instruction.
lui-2.s 1 # Source code used to test error diagnostics with the LUI instruction.
  /external/annotation-tools/annotation-file-utilities/src/annotator/
Source.java 26 private DiagnosticCollector<JavaFileObject> diagnostics; field in class:Source
56 diagnostics = new DiagnosticCollector<JavaFileObject>();
59 this.fileManager = compiler.getStandardFileManager(diagnostics, null, null);
78 compiler.getTask(null, fileManager, diagnostics, optsList, null, fileObjs);
120 List<Diagnostic<? extends JavaFileObject>> errors = diagnostics.getDiagnostics();
121 if (!diagnostics.getDiagnostics().isEmpty()) {
  /external/clang/utils/analyzer/
CmpRuns.py 23 # 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/
eh-directive-fnend-diagnostics.s 4 @ Check the diagnostics for mismatched .fnend directive
eh-directive-fnstart-diagnostics.s 4 @ Check the diagnostics for the mismatched .fnstart directives.
6 @ There should be some diagnostics when the previous .fnstart is not closed
eh-directive-pad-diagnostics.s 4 @ Check the diagnostics for .pad directive.
  /hardware/qcom/display/msm8996/sdm/libs/utils/
Android.mk 10 -std=c++11 -fcolor-diagnostics\
  /frameworks/base/tools/aapt2/configuration/
ConfigurationParser.h 26 #include "Diagnostics.h"
146 /** Sets the diagnostics context to use when parsing. */
147 ConfigurationParser& WithDiagnostics(IDiagnostics* diagnostics) {
148 diag_ = diagnostics;
154 * the result is empty and any errors will be displayed with the provided diagnostics context.
161 * diagnostics context. The default diagnostics context can be overridden with a call to
166 /** Returns the current diagnostics context to any subclasses. */
167 IDiagnostics* diagnostics() { function in class:aapt::ConfigurationParser
176 /** The diagnostics context to send messages to. *
    [all...]

Completed in 380 milliseconds

1 2 3 4 5 6 7 8 910