/external/clang/include/clang/Driver/ |
Tool.h | 1 //===--- Tool.h - Compilation Tools -----------------------------*- C++ -*-===// 24 class Compilation; 32 /// Tool - Information on a specific compilation tool. 72 virtual void ConstructJob(Compilation &C, const JobAction &JA,
|
Driver.h | 42 class Compilation; 47 /// Driver - Encapsulate logic for constructing compilation processes 158 /// Whether to check that input files exist when constructing compilation 186 // getFinalPhase - Determine which compilation mode we are in and record 234 /// BuildCompilation - Construct a compilation object for a command 237 /// \return A compilation, or 0 if none was built for the given 241 Compilation *BuildCompilation(ArrayRef<const char *> Args); 258 /// \param Inputs - The list to store the resulting compilation 286 /// \param C - The compilation that is being built. 287 void BuildJobs(Compilation &C) const [all...] |
Compilation.h | 1 //===--- Compilation.h - Compilation Task Data Structure --------*- C++ -*-===// 32 /// Compilation - A set of tasks to perform for a single driver 34 class Compilation { 73 Compilation(const Driver &D, const ToolChain &DefaultToolChain, 76 ~Compilation(); 190 /// so compilation can be reexecuted to generate additional diagnostic
|
ToolChain.h | 34 class Compilation; 282 // given compilation arguments. 287 // given compilation arguments.
|
/external/clang/lib/Driver/ |
Tools.h | 44 void AddPreprocessingOptions(Compilation &C, const JobAction &JA, 84 virtual void ConstructJob(Compilation &C, const JobAction &JA, 106 virtual void ConstructJob(Compilation &C, const JobAction &JA, 120 virtual void ConstructJob(Compilation &C, const JobAction &JA, 205 virtual void ConstructJob(Compilation &C, const JobAction &JA, 222 virtual void ConstructJob(Compilation &C, const JobAction &JA, 256 virtual void ConstructJob(Compilation &C, const JobAction &JA, 265 void AddLinkArgs(Compilation &C, const llvm::opt::ArgList &Args, 275 virtual void ConstructJob(Compilation &C, const JobAction &JA, 288 virtual void ConstructJob(Compilation &C, const JobAction &JA [all...] |
Compilation.cpp | 1 //===--- Compilation.cpp - Compilation Task Implementation ----------------===// 10 #include "clang/Driver/Compilation.h" 29 Compilation::Compilation(const Driver &D, const ToolChain &_DefaultToolChain, 35 Compilation::~Compilation() { 59 const DerivedArgList &Compilation::getArgsForToolChain(const ToolChain *TC, 74 void Compilation::PrintJob(raw_ostream &OS, const Job &J, 116 .Cases("-fdebug-compilation-dir", "-idirafter", true [all...] |
Android.mk | 18 Compilation.cpp \
|
Driver.cpp | 15 #include "clang/Driver/Compilation.h" 149 // Determine which compilation mode we are in. We look for options which 270 Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) { 271 llvm::PrettyStackTraceString CrashInfo("Compilation construction"); 292 // FIXME: This stuff needs to go into the Compilation, not the driver. 344 // The compilation takes ownership of Args. 345 Compilation *C = new Compilation(*this, TC, Args, TranslatedArgs); 384 // Construct the list of abstract actions to perform for this compilation. On 406 void Driver::generateCompilationDiagnostics(Compilation &C [all...] |
Tools.cpp | 17 #include "clang/Driver/Compilation.h" 235 void Clang::AddPreprocessingOptions(Compilation &C, [all...] |
/external/clang/lib/Tooling/ |
Tooling.cpp | 16 #include "clang/Driver/Compilation.h" 58 /// \brief Retrieves the clang CC1 specific flags out of the compilation's jobs. 63 clang::driver::Compilation *Compilation) { 65 // failed. Extract that job from the Compilation. 66 const clang::driver::JobList &Jobs = Compilation->getJobs(); 70 Compilation->PrintJob(error_stream, Compilation->getJobs(), "; ", true); 176 const OwningPtr<clang::driver::Compilation> Compilation( [all...] |
/external/clang/include/clang/Tooling/ |
Tooling.h | 47 class Compilation; 163 clang::driver::Compilation *Compilation,
|
/external/clang/lib/Frontend/ |
CreateInvocationFromCommandLine.cpp | 16 #include "clang/Driver/Compilation.h" 55 OwningPtr<driver::Compilation> C(TheDriver.BuildCompilation(Args));
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-crbug-244461.js | 40 // Compilation of foo will crash without the bugfix for 244461
|
/external/clang/examples/clang-interpreter/ |
main.cpp | 12 #include "clang/Driver/Compilation.h" 86 OwningPtr<Compilation> C(TheDriver.BuildCompilation(Args)); 93 // failed. Extract that job from the compilation.
|
/external/clang/tools/driver/ |
driver.cpp | 17 #include "clang/Driver/Compilation.h" 392 OwningPtr<Compilation> C(TheDriver.BuildCompilation(argv));
|
/external/llvm/test/DebugInfo/SystemZ/ |
variable-loc.s | 105 .long 155 # Length of Compilation Unit Info
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
display-profiler-output | 53 @machineInlinees = {} # maps my compilation to a set of inlinees 65 def addBottomCountForCompilation(count, compilation) 66 @bottomCounts[compilation] = [] unless @bottomCounts[compilation] 67 @bottomCounts[compilation] << count 70 def addMachineInlinee(compilation, inlinee) 71 @machineInlinees[compilation] = {} unless @machineInlinees[compilation] 72 @machineInlinees[compilation][inlinee] = true 112 | compilation, counts [all...] |
/external/chromium_org/v8/test/mjsunit/ |
unicode-test.js | [all...] |
/external/v8/test/mjsunit/ |
unicode-test.js | [all...] |