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

1 2 3

  /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
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
Preprocessor.cpp 24 Diagnostics* diagnostics; member in struct:pp::PreprocessorImpl
30 PreprocessorImpl(Diagnostics* diag,
32 diagnostics(diag),
40 Preprocessor::Preprocessor(Diagnostics* diagnostics,
43 mImpl = new PreprocessorImpl(diagnostics, directiveHandler);
94 // diagnostics.
105 mImpl->diagnostics->report(Diagnostics::INTEGER_OVERFLOW
    [all...]
Tokenizer.h 17 class Diagnostics;
24 Diagnostics* diagnostics; member in struct:pp::Tokenizer::Context
37 Tokenizer(Diagnostics* diagnostics);
ExpressionParser.h 15 class Diagnostics;
22 ExpressionParser(Lexer* lexer, Diagnostics* diagnostics);
30 Diagnostics* mDiagnostics;
Preprocessor.h 17 class Diagnostics;
25 Preprocessor(Diagnostics* diagnostics, DirectiveHandler* directiveHandler);
ExpressionParser.y 57 pp::Diagnostics* diagnostics;
149 context->diagnostics->report(pp::Diagnostics::DIVISION_BY_ZERO,
162 context->diagnostics->report(pp::Diagnostics::DIVISION_BY_ZERO,
204 context->diagnostics->report(pp::Diagnostics::INTEGER_OVERFLOW,
245 context->diagnostics->report(pp::Diagnostics::INVALID_EXPRESSION
    [all...]
DirectiveParser.h 18 class Diagnostics;
27 Diagnostics* diagnostics,
76 Diagnostics* mDiagnostics;
  /external/chromium_org/chrome/browser/extensions/api/diagnostics/
diagnostics_api.cc 5 #include "chrome/browser/extensions/api/diagnostics/diagnostics_api.h"
7 namespace SendPacket = extensions::api::diagnostics::SendPacket;
38 extensions::api::diagnostics::SendPacketResult result;
diagnostics_api.h 12 #include "chrome/common/extensions/api/diagnostics.h"
31 DECLARE_EXTENSION_FUNCTION("diagnostics.sendPacket",
51 scoped_ptr<extensions::api::diagnostics::SendPacket::Params>
  /external/chromium_org/chrome/browser/diagnostics/
diagnostics_controller.h 13 namespace diagnostics { namespace
22 // Entry point for the diagnostics mode. Returns zero if able to run
23 // diagnostics successfully, regardless of the results of the diagnostics.
26 // Entry point for running recovery based on diagnostics that have already
53 } // namespace diagnostics
sqlite_diagnostics.h 8 #include "chrome/browser/diagnostics/diagnostics_test.h"
10 namespace diagnostics { namespace
50 } // namespace diagnostics
diagnostics_controller.cc 5 #include "chrome/browser/diagnostics/diagnostics_controller.h"
13 #include "chrome/browser/diagnostics/diagnostics_model.h"
14 #include "chrome/browser/diagnostics/diagnostics_writer.h"
17 namespace diagnostics { namespace
55 writer->WriteInfoLine("No diagnostics have been run.");
67 } // namespace diagnostics
diagnostics_model.h 13 namespace diagnostics { namespace
15 // The chrome diagnostics system is a model-view-controller system. The Model
84 // the diagnostics progress. |observer| maybe NULL if no observation is
103 } // namespace diagnostics
diagnostics_writer.h 10 #include "chrome/browser/diagnostics/diagnostics_model.h"
12 namespace diagnostics { namespace
66 } // namespace diagnostics
recon_diagnostics.h 8 #include "chrome/browser/diagnostics/diagnostics_test.h"
10 namespace diagnostics { namespace
81 } // namespace diagnostics
diagnostics_test.h 9 #include "chrome/browser/diagnostics/diagnostics_model.h"
15 namespace diagnostics { namespace
80 // makes sense for the diagnostics test.
92 } // namespace diagnostics
  /external/chromium_org/third_party/angle_dx11/src/compiler/
DirectiveHandler.h 20 TDiagnostics& diagnostics);
ParseHelper.h 9 #include "compiler/Diagnostics.h"
41 diagnostics(is),
42 directiveHandler(ext, diagnostics),
43 preprocessor(&diagnostics, &directiveHandler),
59 TDiagnostics diagnostics; member in struct:TParseContext
64 int numErrors() const { return diagnostics.numErrors(); }
65 TInfoSink& infoSink() { return diagnostics.infoSink(); }
  /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.
eh-directive-personality-diagnostics.s 4 @ Check the diagnostics for .personality directive.
  /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/chromium_org/chrome/app/
chrome_main_delegate.cc 84 // Diagnostics is only available on non-android platforms.
85 #include "chrome/browser/diagnostics/diagnostics_controller.h"
86 #include "chrome/browser/diagnostics/diagnostics_writer.h"
400 // If we are in diagnostics mode this is the end of the line: after the
401 // diagnostics are run the process will invariably exit.
403 diagnostics::DiagnosticsWriter::FormatType format =
404 diagnostics::DiagnosticsWriter::HUMAN;
409 format = diagnostics::DiagnosticsWriter::MACHINE;
411 format = diagnostics::DiagnosticsWriter::LOG;
417 diagnostics::DiagnosticsWriter writer(format)
    [all...]

Completed in 476 milliseconds

1 2 3