Searched refs:clang (Results 151 - 175 of 1304) sorted by relevance

1234567891011>>

/external/lldb/include/lldb/Expression/
H A DClangPersistentVariables.h61 clang::TypeDecl *tag_decl);
63 clang::TypeDecl *
69 typedef llvm::DenseMap<const char *, clang::TypeDecl *> PersistentTypeMap;
/external/lldb/scripts/
H A Dbuild-lldb-llvm-clang4 # build-lldb-llvm-clang <revision> [Debug|Release|BuildAndIntegration]
5 # build-lldb-llvm-clang <llvm-revision> <clang-revision> [Debug|Release|BuildAndIntegration]
12 echo "Usage:\n build-lldb-llvm-clang <llvm-revision> [<clang-revision> Debug|Release||BuildAndIntegration]"
29 svn co -q -r $CLANG_REVISION http://llvm.org/svn/llvm-project/cfe/trunk clang
39 # change directory to "./llvm/tools/clang"
40 cd tools/clang
41 for patch_file in ../../../scripts/clang.*.diff
56 make -j8 clang
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DReachableCode.h17 #include "clang/Basic/SourceLocation.h"
27 namespace clang { namespace
37 namespace clang { namespace
67 }} // end namespace clang::reachable_code
H A DDominators.h17 #include "clang/Analysis/AnalysisContext.h"
18 #include "clang/Analysis/CFG.h"
30 namespace clang { namespace
164 } // end namespace clang
171 template <> struct GraphTraits< ::clang::DomTreeNode* > {
172 typedef ::clang::DomTreeNode NodeType;
185 typedef df_iterator< ::clang::DomTreeNode* > nodes_iterator;
187 static nodes_iterator nodes_begin(::clang::DomTreeNode *N) {
191 static nodes_iterator nodes_end(::clang::DomTreeNode *N) {
196 template <> struct GraphTraits< ::clang
[all...]
H A DPseudoConstantAnalysis.h19 #include "clang/AST/Stmt.h"
21 namespace clang { namespace
/external/clang/tools/
H A DMakefile18 PARALLEL_DIRS += clang-format
22 PARALLEL_DIRS += clang-check
/external/clang/tools/clang-check/
H A DClangCheck.cpp1 //===--- tools/clang-check/ClangCheck.cpp - Clang check tool --------------===//
10 // This file implements a clang-check tool that runs clang based on the info
14 // http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
19 #include "clang/AST/ASTConsumer.h"
20 #include "clang/Driver/Options.h"
21 #include "clang/Frontend/ASTConsumers.h"
22 #include "clang/Frontend/CompilerInstance.h"
23 #include "clang/Rewrite/Frontend/FixItRewriter.h"
24 #include "clang/Rewrit
[all...]
/external/compiler-rt/test/asan/
H A Dlit.site.cfg.in8 config.clang = "@ASAN_TEST_TARGET_CC@"
/external/libcxx/test/utilities/template.bitset/bitset.members/
H A Dreset_one.pass.cpp15 #pragma clang diagnostic push
16 #pragma clang diagnostic ignored "-Wtautological-compare"
/external/libcxxabi/lib/
H A Dbuildit5 # the library. Otherwise we'll use clang++.
17 CXX=clang++
22 CC=clang
47 CXX=`xcrun -sdk "${SDKROOT}" -find clang++`
48 CC=`xcrun -sdk "${SDKROOT}" -find clang`
/external/lldb/tools/lldb-perf/common/clang/
H A Dbuild-clang.sh15 ( cd llvm/tools ; svn co --revision 176809 http://llvm.org/svn/llvm-project/cfe/trunk clang )
22 make -j8 clang-only DEBUG_SYMBOLS=1
24 ( cd ./Debug/bin ; rm -rf ll* clang-check clang-tblgen count diagtool fpcmp macho-dump not opt yaml2obj FileCheck FileUpdate arcmt-test c-arcmt-test c-index-test bugpoint )
25 ( cd ./tools ; rm -rf ll* clang-check clang-tblgen count diagtool fpcmp lto macho-dump not opt yaml2obj FileCheck FileUpdate arcmt-test c-arcmt-test c-index-test bugpoint )
26 ( cd ./tools/clang ; rm -rf lib unittests utils )
27 ( cd ./tools/clang/tools ; rm -rf arcmt-test c-arcmt-test c-index-test clang-check diagtool libclang )
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A DMakefile4 clang++ toy.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core jit mcjit native irreader` -o toy
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A DMakefile4 clang++ toy.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core mcjit native` -o toy-mcjit
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.h21 #include "clang/AST/CharUnits.h"
22 #include "clang/AST/ExternalASTSource.h"
113 virtual clang::DeclContext* GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid);
114 virtual clang::DeclContext* GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid);
142 CompleteTagDecl (void *baton, clang::TagDecl *);
145 CompleteObjCInterfaceDecl (void *baton, clang::ObjCInterfaceDecl *);
149 const clang::DeclContext *DC,
150 clang::DeclarationName Name,
151 llvm::SmallVectorImpl <clang::NamedDecl *> *results);
155 const clang
[all...]
/external/clang/unittests/Tooling/
H A DToolingTest.cpp10 #include "clang/AST/ASTConsumer.h"
11 #include "clang/AST/DeclCXX.h"
12 #include "clang/AST/DeclGroup.h"
13 #include "clang/Frontend/ASTUnit.h"
14 #include "clang/Frontend/CompilerInstance.h"
15 #include "clang/Frontend/FrontendAction.h"
16 #include "clang/Frontend/FrontendActions.h"
17 #include "clang/Tooling/CompilationDatabase.h"
18 #include "clang/Tooling/Tooling.h"
24 namespace clang { namespace
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_file.py1 from clang.cindex import Index, File
H A Dtest_index.py1 from clang.cindex import *
/external/clang/include/clang/AST/
H A DASTFwd.h15 namespace clang { namespace
19 #include "clang/AST/DeclNodes.inc"
22 #include "clang/AST/StmtNodes.inc"
25 #include "clang/AST/TypeNodes.def"
28 } // end namespace clang
H A DCommentDiagnostic.h13 #include "clang/Basic/Diagnostic.h"
15 namespace clang { namespace
21 #include "clang/Basic/DiagnosticCommentKinds.inc"
26 } // end namespace clang
/external/clang/include/clang/Analysis/
H A DAnalysisDiagnostic.h13 #include "clang/Basic/Diagnostic.h"
15 namespace clang { namespace
21 #include "clang/Basic/DiagnosticAnalysisKinds.inc"
26 } // end namespace clang
/external/clang/include/clang/Analysis/DomainSpecific/
H A DCocoaConventions.h17 #include "clang/Basic/LLVM.h"
20 namespace clang { namespace
40 }} // end: "clang:ento"
H A DObjCNoReturn.h18 #include "clang/Basic/IdentifierTable.h"
20 namespace clang { namespace
/external/clang/include/clang/Basic/
H A DAddressSpaces.h19 namespace clang { namespace
H A DAttrKinds.h11 /// \brief Defines the clang::attr::Kind enum.
18 namespace clang { namespace
27 #include "clang/Basic/AttrList.inc"
32 } // end namespace clang
H A DAttributes.h14 #include "clang/Basic/LangOptions.h"
16 namespace clang { namespace
39 } // end namespace clang

Completed in 3353 milliseconds

1234567891011>>