/external/clang/include/clang/FrontendTool/ |
Utils.h | 18 namespace clang { namespace 26 bool ExecuteCompilerInvocation(CompilerInstance *Clang); 28 } // end namespace clang
|
/external/clang/tools/driver/ |
cc1_main.cpp | 1 //===-- cc1_main.cpp - Clang CC1 Compiler Frontend ------------------------===// 10 // This is the entry point to the clang -cc1 functionality, which implements the 17 #include "clang/Driver/DriverDiagnostic.h" 18 #include "clang/Driver/Options.h" 19 #include "clang/Frontend/CompilerInstance.h" 20 #include "clang/Frontend/CompilerInvocation.h" 21 #include "clang/Frontend/FrontendDiagnostic.h" 22 #include "clang/Frontend/TextDiagnosticBuffer.h" 23 #include "clang/Frontend/TextDiagnosticPrinter.h" 24 #include "clang/FrontendTool/Utils.h [all...] |
/external/clang/lib/Frontend/ |
ChainedIncludesSource.cpp | 15 #include "clang/Frontend/ChainedIncludesSource.h" 16 #include "clang/Basic/TargetInfo.h" 17 #include "clang/Frontend/ASTUnit.h" 18 #include "clang/Frontend/CompilerInstance.h" 19 #include "clang/Frontend/TextDiagnosticPrinter.h" 20 #include "clang/Lex/Preprocessor.h" 21 #include "clang/Parse/ParseAST.h" 22 #include "clang/Serialization/ASTReader.h" 23 #include "clang/Serialization/ASTWriter.h" 26 using namespace clang; [all...] |
ASTUnit.cpp | 14 #include "clang/Frontend/ASTUnit.h" 15 #include "clang/AST/ASTConsumer.h" 16 #include "clang/AST/ASTContext.h" 17 #include "clang/AST/DeclVisitor.h" 18 #include "clang/AST/StmtVisitor.h" 19 #include "clang/AST/TypeOrdering.h" 20 #include "clang/Basic/Diagnostic.h" 21 #include "clang/Basic/TargetInfo.h" 22 #include "clang/Basic/TargetOptions.h" 23 #include "clang/Frontend/CompilerInstance.h [all...] |
TextDiagnostic.cpp | 10 #include "clang/Frontend/TextDiagnostic.h" 11 #include "clang/Basic/CharInfo.h" 12 #include "clang/Basic/DiagnosticOptions.h" 13 #include "clang/Basic/FileManager.h" 14 #include "clang/Basic/SourceManager.h" 15 #include "clang/Lex/Lexer.h" 25 using namespace clang; 684 ArrayRef<clang::CharSourceRange> Ranges, 798 case DiagnosticOptions::Clang: OS << ':' << LineNo; break; 814 case DiagnosticOptions::Clang [all...] |
/external/clang/lib/FrontendTool/ |
ExecuteCompilerInvocation.cpp | 11 // minimize the impact of pulling in essentially everything else in Clang. 15 #include "clang/FrontendTool/Utils.h" 16 #include "clang/ARCMigrate/ARCMTActions.h" 17 #include "clang/CodeGen/CodeGenAction.h" 18 #include "clang/Driver/Options.h" 19 #include "clang/Frontend/CompilerInstance.h" 20 #include "clang/Frontend/CompilerInvocation.h" 21 #include "clang/Frontend/FrontendActions.h" 22 #include "clang/Frontend/FrontendDiagnostic.h" 23 #include "clang/Frontend/FrontendPluginRegistry.h [all...] |
/external/clang/examples/clang-interpreter/ |
main.cpp | 1 //===-- examples/clang-interpreter/main.cpp - Clang C Interpreter Example -===// 10 #include "clang/CodeGen/CodeGenAction.h" 11 #include "clang/Basic/DiagnosticOptions.h" 12 #include "clang/Driver/Compilation.h" 13 #include "clang/Driver/Driver.h" 14 #include "clang/Driver/Tool.h" 15 #include "clang/Frontend/CompilerInstance.h" 16 #include "clang/Frontend/CompilerInvocation.h" 17 #include "clang/Frontend/FrontendDiagnostic.h [all...] |
/external/clang/tools/scan-build/ |
ccc-analyzer | 29 my $Clang; 34 $DefaultCCompiler = 'clang'; 35 $DefaultCXXCompiler = 'clang++'; 45 $Clang = $ENV{'CLANG_CXX'}; 46 if (!defined $Clang) { $Clang = 'clang++'; } 52 $Clang = $ENV{'CLANG'}; 53 if (!defined $Clang) { $Clang = 'clang'; [all...] |
scan-build | 76 Diag (" http://clang-analyzer.llvm.org/filing_bugs.html\n") 107 # Declaration of Clang options. Populated later. 110 my $Clang; 183 # clang driver. Set the run number to 1. 617 <tr><th>Clang Version:</th><td>${ClangVersion}</td></tr> 798 $ppfile_clang =~ s/[.](.+)$/.clang.$1/; 825 $ppfile_clang =~ s/[.](.+)$/.clang.$1/; 830 print OUT "<p>Please consider submitting preprocessed files as <a href=\"http://clang-analyzer.llvm.org/filing_bugs.html\">bug reports</a>. <!-- REPORTCRASHES --> </p>\n"; 878 foreach my $opt ('CC', 'CXX', 'CLANG', 'CLANG_CXX', 942 my $CLANG = $Options->{"CLANG"} [all...] |
/external/clang/docs/tools/ |
Makefile | 44 $(PROJ_OBJ_DIR)/$(CLANG_LEVEL)/include/clang/Basic/Version.inc)) 73 pod2man --release "clang $(CLANG_VERSION)" --center="Clang Tools Documentation" $< $@ 88 HTML_DIR := $(DESTDIR)$(PROJ_docsdir)/html/clang 93 $(Echo) Installing HTML Clang Tools Documentation 99 $(Echo) Installing MAN Clang Tools Documentation 104 $(Echo) Installing PS Clang Tools Documentation 111 $(Echo) Uninstalling Clang Tools Documentation
|
/external/clang/test/Preprocessor/ |
feature_tests.c | 18 #error Clang should have these 22 #error Clang should not have this
|
/external/clang/ |
gen_diff.sh | 7 echo This will generate a diff of both Clang and LLVM in the files 44 BASE_CLANG_DIR=$BASE_LLVM_DIR/tools/clang
|
clang-host-build.mk | 27 define transform-host-clang-td-to-out 29 @echo "Host Clang TableGen: $(TBLGEN_LOCAL_MODULE) (gen-$(1)) <= $<"
|
/external/clang/include/clang/Basic/ |
DiagnosticOptions.h | 13 #include "clang/Basic/LLVM.h" 18 namespace clang { namespace 30 enum TextDiagnosticFormat { Clang, Msvc, Vi }; 41 #include "clang/Basic/DiagnosticOptions.def" 48 #include "clang/Basic/DiagnosticOptions.def" 67 #include "clang/Basic/DiagnosticOptions.def" 72 #include "clang/Basic/DiagnosticOptions.def" 78 } // end namespace clang
|
/external/clang/include/clang/ |
Makefile | 7 $(Echo) Installing Clang include files 11 for hdr in `find clang -type f \ 27 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include/clang" ; then \ 28 cd $(PROJ_OBJ_ROOT)/tools/clang/include && \ 29 for hdr in `find clang -type f \
|
/external/clang/include/clang-c/ |
Makefile | 9 $(Echo) Installing Clang C API include files 13 for hdr in `find clang-c -type f '!' '(' -name '*~' \ 26 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include/clang-c" ; then \ 27 cd $(PROJ_OBJ_ROOT)/tools/clang/include && \ 28 for hdr in `find clang-c -type f '!' '(' -name 'Makefile' ')' -print \
|
/external/clang/lib/Driver/ |
ToolChain.cpp | 11 #include "clang/Basic/ObjCRuntime.h" 12 #include "clang/Driver/Action.h" 13 #include "clang/Driver/Driver.h" 14 #include "clang/Driver/DriverDiagnostic.h" 15 #include "clang/Driver/Options.h" 16 #include "clang/Driver/ToolChain.h" 23 using namespace clang::driver; 24 using namespace clang; 67 if (!Clang) 68 Clang.reset(new tools::Clang(*this)) [all...] |
Tools.h | 13 #include "clang/Driver/Tool.h" 14 #include "clang/Driver/Types.h" 15 #include "clang/Driver/Util.h" 20 namespace clang { namespace 33 /// \brief Clang compiler tool. 34 class LLVM_LIBRARY_VISIBILITY Clang : public Tool { 78 Clang(const ToolChain &TC) : Tool("clang", "clang frontend", TC) {} 91 /// \brief Clang integrated assembler tool [all...] |
Tools.cpp | 14 #include "clang/Basic/ObjCRuntime.h" 15 #include "clang/Basic/Version.h" 16 #include "clang/Driver/Action.h" 17 #include "clang/Driver/Compilation.h" 18 #include "clang/Driver/Driver.h" 19 #include "clang/Driver/DriverDiagnostic.h" 20 #include "clang/Driver/Job.h" 21 #include "clang/Driver/Options.h" 22 #include "clang/Driver/ToolChain.h" 23 #include "clang/Driver/Util.h [all...] |
/external/clang/utils/analyzer/ |
SATestBuild.py | 138 # Find Clang for static analysis. 139 Clang = which("clang", os.environ['PATH']) 140 if not Clang: 141 print "Error: cannot find 'clang' in PATH" 207 SBOptions = "--use-analyzer " + Clang + " " 256 CmdPrefix = Clang + " -cc1 -analyze -analyzer-output=plist -w "
|
/external/clang/docs/ |
make.bat | 102 echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Clang.qhcp 104 echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Clang.ghc
|
/external/clang/include/clang/Driver/ |
ToolChain.h | 13 #include "clang/Driver/Action.h" 14 #include "clang/Driver/Types.h" 15 #include "clang/Driver/Util.h" 30 namespace clang { namespace 67 mutable OwningPtr<Tool> Clang; 234 /// UseDwarfDebugFlags - Embed the compile options to clang into the Dwarf 247 /// ComputeEffectiveClangTriple - Return the Clang triple to use for this 251 /// Clang. 269 /// \brief Add the clang cc1 arguments for system include paths. 290 /// AddClangCXXStdlibIncludeArgs - Add the clang -cc1 level arguments to se [all...] |
/build/core/ |
llvm_config.mk | 0 CLANG := $(HOST_OUT_EXECUTABLES)/clang$(HOST_EXECUTABLE_SUFFIX) 2 CLANG_CXX := $(HOST_OUT_EXECUTABLES)/clang++$(HOST_EXECUTABLE_SUFFIX) 6 define do-clang-flags-subst 11 define clang-flags-subst 12 $(eval $(call do-clang-flags-subst,$(1),$(2))) 87 CLANG_CONFIG_EXTRA_TARGET_C_INCLUDES := external/clang/lib/include $(TARGET_OUT_HEADERS)/clang 97 $(call clang-flags-subst,-march=armv5te,-march=armv5t) 98 $(call clang-flags-subst,-march=armv5e,-march=armv5 [all...] |
/external/clang/test/Misc/ |
warning-flags.c | 12 (2) It prevents us adding new warnings to Clang that have no -W flag. All
|
/ndk/build/core/ |
setup-toolchain.mk | 31 # Filter out the Clang toolchain, so that we can keep GCC as the default 35 $(filter-out %-clang$(_ver),$(TARGET_TOOLCHAIN_LIST)))) 53 # Replace "clang" with the most recent verion 54 ifeq ($(NDK_TOOLCHAIN_VERSION),clang) 55 override NDK_TOOLCHAIN_VERSION := clang$(lastword $(LLVM_VERSION_LIST)) 69 # if TARGET_TOOLCHAIN_BASE is llvm, remove clang from NDK_TOOLCHAIN_VERSION 72 VERSION := $(subst clang,,$(NDK_TOOLCHAIN_VERSION))
|