Searched refs:Diagnostics (Results 26 - 50 of 99) sorted by relevance

1234

/external/clang/tools/libclang/
H A DCXTranslationUnit.h33 void *Diagnostics; member in struct:CXTranslationUnitImpl
H A DCIndexDiagnostic.cpp1 /*===-- CIndexDiagnostics.cpp - Diagnostics C Interface ---------*- C++ -*-===*\
37 Diagnostics.push_back(std::move(D));
164 if (TU->Diagnostics && checkIfChanged) {
183 Set = static_cast<CXDiagnosticSetImpl*>(TU->Diagnostics);
185 // Diagnostics in the ASTUnit were updated, reset the associated
188 TU->Diagnostics = nullptr;
192 if (!TU->Diagnostics) {
194 TU->Diagnostics = Set;
204 return static_cast<CXDiagnosticSetImpl*>(TU->Diagnostics);
/external/clang/unittests/Tooling/
H A DRewriterTestContext.h39 Diagnostics(IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
46 Sources(Diagnostics, Files), Rewrite(Sources, Options) {
47 Diagnostics.setClient(&DiagnosticPrinter, false);
115 DiagnosticsEngine Diagnostics; member in class:clang::RewriterTestContext
/external/swiftshader/src/OpenGL/compiler/
H A DDiagnostics.h22 class TDiagnostics : public pp::Diagnostics
/external/clang/include/clang/Frontend/
H A DCompilerInstance.h76 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics; member in class:clang::CompilerInstance
323 /// @name Diagnostics Engine
326 bool hasDiagnostics() const { return Diagnostics != nullptr; }
330 assert(Diagnostics && "Compiler instance has no diagnostics!");
331 return *Diagnostics;
338 assert(Diagnostics && Diagnostics->getClient() &&
340 return *Diagnostics->getClient();
523 if (Diagnostics)
524 Diagnostics
[all...]
/external/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp60 explicit CodeTokenizer(StringRef MatcherCode, Diagnostics *Error)
66 CodeTokenizer(StringRef MatcherCode, Diagnostics *Error,
255 Diagnostics *Error;
365 Diagnostics::Context Ctx(Diagnostics::Context::MatcherArg, Error,
425 Diagnostics::Context Ctx(Diagnostics::Context::ConstructMatcher, Error,
525 const NamedValueMap *NamedValues, Diagnostics *Error)
538 ArrayRef<ParserValue> Args, Diagnostics *Error) {
559 VariantValue *Value, Diagnostics *Erro
[all...]
/external/clang/lib/Tooling/
H A DRefactoring.cpp44 DiagnosticsEngine Diagnostics(
47 SourceManager Sources(Diagnostics, getFiles());
H A DTooling.cpp51 clang::DiagnosticsEngine *Diagnostics, const char *BinaryName,
55 *Diagnostics, std::move(VFS));
64 clang::DiagnosticsEngine *Diagnostics,
73 Diagnostics->Report(clang::diag::err_fe_expected_compiler_job)
82 Diagnostics->Report(clang::diag::err_fe_expected_clang_command);
91 clang::DiagnosticsEngine *Diagnostics,
97 *Diagnostics);
245 DiagnosticsEngine Diagnostics(
250 newDriver(&Diagnostics, BinaryName, Files->getVirtualFileSystem()));
256 &Diagnostics, Compilatio
50 newDriver( clang::DiagnosticsEngine *Diagnostics, const char *BinaryName, IntrusiveRefCntPtr<vfs::FileSystem> VFS) argument
63 getCC1Arguments( clang::DiagnosticsEngine *Diagnostics, clang::driver::Compilation *Compilation) argument
90 newInvocation( clang::DiagnosticsEngine *Diagnostics, const llvm::opt::ArgStringList &CC1Args) argument
[all...]
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DEmpty.cs13 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
52 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
H A DFieldMask.cs13 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
190 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
H A DSourceContext.cs13 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
45 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
H A DWrappers.cs13 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
59 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
170 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
281 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
392 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
503 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
614 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
725 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
836 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
947 [global::System.Diagnostics
[all...]
/external/clang/unittests/ASTMatchers/Dynamic/
H A DRegistryTest.cpp43 Diagnostics *Error = nullptr) {
44 Diagnostics DummyError;
56 Diagnostics *Error = nullptr) {
57 Diagnostics DummyError;
70 Diagnostics *Error = nullptr) {
71 Diagnostics DummyError;
394 std::unique_ptr<Diagnostics> Error(new Diagnostics());
398 Error.reset(new Diagnostics());
402 Error.reset(new Diagnostics());
[all...]
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DMacroExpander.cpp98 Diagnostics *diagnostics,
145 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location,
157 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location,
378 mDiagnostics->report(Diagnostics::PP_MACRO_UNTERMINATED_INVOCATION, identifier.location,
428 Diagnostics::ID id = args->size() < macro.parameters.size() ?
429 Diagnostics::PP_MACRO_TOO_FEW_ARGS :
430 Diagnostics::PP_MACRO_TOO_MANY_ARGS;
444 mDiagnostics->report(Diagnostics::PP_MACRO_INVOCATION_CHAIN_TOO_DEEP,
459 mDiagnostics->report(Diagnostics::PP_OUT_OF_MEMORY, token.location, token.text);
477 mDiagnostics->report(Diagnostics
[all...]
H A DTokenizer.l298 yyextra->diagnostics->report(pp::Diagnostics::PP_TOKENIZER_ERROR,
304 yyextra->diagnostics->report(pp::Diagnostics::PP_EOF_IN_COMMENT,
315 Tokenizer::Tokenizer(Diagnostics *diagnostics) : mHandle(nullptr), mMaxTokenSize(1024)
357 mContext.diagnostics->report(Diagnostics::PP_TOKENIZER_ERROR, token->location, token->text);
367 mContext.diagnostics->report(Diagnostics::PP_TOKEN_TOO_LONG,
/external/clang/lib/Format/
H A DTokenAnalyzer.cpp52 std::unique_ptr<DiagnosticsEngine> Diagnostics(new DiagnosticsEngine(
58 new SourceManager(*Diagnostics, *FileMgr));
74 std::move(Diagnostics), CharRanges);
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
H A DUnittestImportProto3.cs13 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
54 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
H A DUnittestImportPublicProto3.cs13 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
40 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DParser.cs34 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DExceptionExtensions.cs34 using System.Diagnostics;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DParser.cs35 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DExceptionExtensions.cs34 using System.Diagnostics;
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs9 using System.Diagnostics;
H A DInflater.cs9 using System.Diagnostics;
/external/clang/unittests/Sema/
H A DExternalSemaSourceTest.cpp199 DiagnosticsEngine &Diagnostics = CI.getDiagnostics(); variable
200 DiagnosticConsumer *Client = Diagnostics.getClient();
201 if (Diagnostics.ownsClient())
202 OwnedClient = Diagnostics.takeClient();
205 Diagnostics.setClient(Client, false);

Completed in 607 milliseconds

1234