HomeSort by relevance Sort by last modified time
    Searched refs:TargetOpts (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/clang/include/clang/Frontend/
CompilerInvocation.h 61 std::shared_ptr<TargetOptions> TargetOpts;
80 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
82 return *TargetOpts.get();
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/
CompilerInvocation.h 62 std::shared_ptr<TargetOptions> TargetOpts;
81 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
83 return *TargetOpts.get();
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/
CompilerInvocation.h 62 std::shared_ptr<TargetOptions> TargetOpts;
81 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
83 return *TargetOpts.get();
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/
CompilerInvocation.h 62 std::shared_ptr<TargetOptions> TargetOpts;
81 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
83 return *TargetOpts.get();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
CompilerInvocation.h 62 std::shared_ptr<TargetOptions> TargetOpts;
81 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
83 return *TargetOpts.get();
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/
CompilerInvocation.h 62 std::shared_ptr<TargetOptions> TargetOpts;
81 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
83 return *TargetOpts.get();
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/
CompilerInvocation.h 62 std::shared_ptr<TargetOptions> TargetOpts;
81 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
83 return *TargetOpts.get();
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/
CompilerInvocation.h 62 std::shared_ptr<TargetOptions> TargetOpts;
81 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
83 return *TargetOpts.get();
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
CompilerInvocation.h 62 std::shared_ptr<TargetOptions> TargetOpts;
81 TargetOptions &getTargetOpts() { return *TargetOpts.get(); }
83 return *TargetOpts.get();
  /external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp 37 TargetOpts(new TargetOptions)
39 TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
40 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
49 std::shared_ptr<TargetOptions> TargetOpts;
PPCallbacksTest.cpp 117 SourceMgr(Diags, FileMgr), TargetOpts(new TargetOptions()) {
118 TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
119 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
129 std::shared_ptr<TargetOptions> TargetOpts;
LexerTest.cpp 55 TargetOpts(new TargetOptions)
57 TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
58 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
115 std::shared_ptr<TargetOptions> TargetOpts;
  /external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp 53 const TargetOptions TargetOpts;
148 TargetOpts(CI.getTargetOpts()), LangOpts(CI.getLangOpts()), OS(OS),
285 clang::EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
292 clang::EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
CodeGenAction.cpp 47 const TargetOptions &TargetOpts;
68 const TargetOptions &TargetOpts, const LangOptions &LangOpts,
74 TargetOpts(TargetOpts), LangOpts(LangOpts), AsmOutStream(OS),
178 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
    [all...]
BackendUtil.cpp 58 const clang::TargetOptions &TargetOpts;
127 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts), LangOpts(LOpts),
548 llvm::join(TargetOpts.Features.begin(), TargetOpts.Features.end(), ",");
571 if (!TargetOpts.Reciprocals.empty())
572 Options.Reciprocals = TargetRecip(TargetOpts.Reciprocals);
609 Options.EABIVersion = llvm::StringSwitch<llvm::EABI>(TargetOpts.EABIVersion)
638 Options.MCOptions.ABIName = TargetOpts.ABI;
640 TargetMachine *TM = TheTarget->createTargetMachine(Triple, TargetOpts.CPU,
    [all...]
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 38 TargetOpts(new TargetOptions) {
39 TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
40 Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
49 std::shared_ptr<TargetOptions> TargetOpts;
  /frameworks/compile/slang/
slang_backend.h 171 const clang::TargetOptions &TargetOpts,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 54 std::shared_ptr<TargetOptions> TargetOpts;
121 assert(TargetOpts && "Missing target options");
122 return *TargetOpts;
832 TargetOptions &TargetOpts) const {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 54 std::shared_ptr<TargetOptions> TargetOpts;
121 assert(TargetOpts && "Missing target options");
122 return *TargetOpts;
832 TargetOptions &TargetOpts) const {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 54 std::shared_ptr<TargetOptions> TargetOpts;
121 assert(TargetOpts && "Missing target options");
122 return *TargetOpts;
832 TargetOptions &TargetOpts) const {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 54 std::shared_ptr<TargetOptions> TargetOpts;
121 assert(TargetOpts && "Missing target options");
122 return *TargetOpts;
832 TargetOptions &TargetOpts) const {}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 54 std::shared_ptr<TargetOptions> TargetOpts;
121 assert(TargetOpts && "Missing target options");
122 return *TargetOpts;
832 TargetOptions &TargetOpts) const {}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 54 std::shared_ptr<TargetOptions> TargetOpts;
121 assert(TargetOpts && "Missing target options");
122 return *TargetOpts;
832 TargetOptions &TargetOpts) const {}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 54 std::shared_ptr<TargetOptions> TargetOpts;
121 assert(TargetOpts && "Missing target options");
122 return *TargetOpts;
832 TargetOptions &TargetOpts) const {}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 54 std::shared_ptr<TargetOptions> TargetOpts;
121 assert(TargetOpts && "Missing target options");
122 return *TargetOpts;
832 TargetOptions &TargetOpts) const {}
    [all...]

Completed in 992 milliseconds

1 2 3