/external/clang/tools/libclang/ |
H A D | CIndexDiagnostic.h | 1 /*===-- CIndexDiagnostic.h - Diagnostics C Interface ------------*- C++ -*-===*\ 28 std::vector<std::unique_ptr<CXDiagnosticImpl>> Diagnostics; member in class:clang::CXDiagnosticSetImpl 37 return Diagnostics.size(); 42 return Diagnostics[i].get(); 48 return Diagnostics.empty();
|
H A D | CXTranslationUnit.h | 33 void *Diagnostics; member in struct:CXTranslationUnitImpl
|
H A D | CIndexCodeCompletion.cpp | 255 /// \brief Diagnostics produced while performing code completion. 256 SmallVector<StoredDiagnostic, 8> Diagnostics; member in struct:__anon3205::AllocatedCXCodeCompleteResults 258 /// \brief Allocated API-exposed wrappters for Diagnostics. 710 Results->Diagnostics, Results->TemporaryBuffers); 712 Results->DiagnosticsWrappers.resize(Results->Diagnostics.size()); 762 os << ", \"diags\": " << Results->Diagnostics.size(); 857 return Results->Diagnostics.size(); 865 if (!Results || Index >= Results->Diagnostics.size()) 871 new CXStoredDiagnostic(Results->Diagnostics[Index], Results->LangOpts);
|
/external/clang/lib/Index/ |
H A D | SimpleFormatContext.h | 39 Diagnostics(new DiagnosticsEngine(new DiagnosticIDs, 43 Sources(*Diagnostics, Files), 45 Diagnostics->setClient(new IgnoringDiagConsumer, true); 65 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics; member in class:clang::index::SimpleFormatContext
|
/external/clang/unittests/Sema/ |
H A D | ExternalSemaSourceTest.cpp | 153 DiagnosticsEngine &Diagnostics = CI.getDiagnostics(); variable 154 DiagnosticConsumer *Client = Diagnostics.getClient(); 155 if (Diagnostics.ownsClient()) 156 OwnedClient = Diagnostics.takeClient(); 159 Diagnostics.setClient(Client, false);
|
/external/clang/unittests/Tooling/ |
H A D | RewriterTestContext.h | 39 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/clang/include/clang/ASTMatchers/Dynamic/ |
H A D | Diagnostics.h | 1 //===--- Diagnostics.h - Helper class for error diagnostics -----*- C++ -*-===// 11 /// \brief Diagnostics class to manage error messages. 51 class Diagnostics { class in namespace:clang::ast_matchers::dynamic 106 Context(ConstructMatcherEnum, Diagnostics *Error, StringRef MatcherName, 110 Context(MatcherArgEnum, Diagnostics *Error, StringRef MatcherName, 115 Diagnostics *const Error; 124 OverloadContext(Diagnostics* Error); 131 Diagnostics *const Error;
|
/external/clang/lib/Rewrite/ |
H A D | Rewriter.cpp | 404 AtomicallyMovedFile(DiagnosticsEngine &Diagnostics, StringRef Filename, argument 406 : Diagnostics(Diagnostics), Filename(Filename), AllWritten(AllWritten) { 412 Diagnostics.Report(clang::diag::err_unable_to_make_temp) 426 Diagnostics.Report(clang::diag::err_unable_to_rename_temp) 438 DiagnosticsEngine &Diagnostics; member in class:__anon1446::AtomicallyMovedFile
|
/external/clang/lib/Tooling/ |
H A D | Tooling.cpp | 50 clang::DiagnosticsEngine *Diagnostics, const char *BinaryName, 53 BinaryName, llvm::sys::getDefaultTargetTriple(), *Diagnostics, VFS); 62 clang::DiagnosticsEngine *Diagnostics, 71 Diagnostics->Report(clang::diag::err_fe_expected_compiler_job) 80 Diagnostics->Report(clang::diag::err_fe_expected_clang_command); 89 clang::DiagnosticsEngine *Diagnostics, 95 *Diagnostics); 237 DiagnosticsEngine Diagnostics( 242 newDriver(&Diagnostics, BinaryName, Files->getVirtualFileSystem())); 248 &Diagnostics, Compilatio 49 newDriver( clang::DiagnosticsEngine *Diagnostics, const char *BinaryName, IntrusiveRefCntPtr<vfs::FileSystem> VFS) argument 61 getCC1Arguments( clang::DiagnosticsEngine *Diagnostics, clang::driver::Compilation *Compilation) argument 88 newInvocation( clang::DiagnosticsEngine *Diagnostics, const llvm::opt::ArgStringList &CC1Args) argument [all...] |
/external/clang/include/clang/Frontend/ |
H A D | CompilerInstance.h | 76 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...] |
H A D | ASTUnit.h | 89 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics; member in class:clang::ASTUnit 172 /// Diagnostics that come from the driver are retained from one parse to 499 const DiagnosticsEngine &getDiagnostics() const { return *Diagnostics; } 500 DiagnosticsEngine &getDiagnostics() { return *Diagnostics; }
|
/external/clang/include/clang/Sema/ |
H A D | DelayedDiagnostic.h | 241 SmallVector<DelayedDiagnostic, 4> Diagnostics; member in class:clang::sema::DelayedDiagnosticPool 249 i = Diagnostics.begin(), e = Diagnostics.end(); i != e; ++i) 254 : Parent(Other.Parent), Diagnostics(std::move(Other.Diagnostics)) { 255 Other.Diagnostics.clear(); 259 Diagnostics = std::move(Other.Diagnostics); 260 Other.Diagnostics.clear(); 268 return (Diagnostics [all...] |
/external/clang/lib/Frontend/ |
H A D | CompilerInvocation.cpp | 121 std::vector<std::string> &Diagnostics) { 126 Diagnostics.push_back(A->getOption().getName().drop_front(1)); 129 Diagnostics.push_back(A->getOption().getName().drop_front(1).rtrim("=-")); 133 Diagnostics.emplace_back(Arg); 119 addDiagnosticArgs(ArgList &Args, OptSpecifier Group, OptSpecifier GroupWithValue, std::vector<std::string> &Diagnostics) argument
|
/external/guice/extensions/struts2/lib/ |
H A D | ant-1.6.5.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
/external/jarjar/lib/ |
H A D | apache-ant-1.9.4.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
/external/libgdx/backends/gdx-backends-gwt/libs/ |
H A D | gwt-dev.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/core/ ... |