/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/ |
H A D | InterfaceFile.cpp | 32 typename C::iterator addEntry(C &Container, const Target &Target_) { in addEntry() 34 lower_bound(Container, Target_, [](const Target &LHS, const Target &RHS) { in addEntry() 44 void InterfaceFileRef::addTarget(const Target &Target) { in addTarget() argument 45 detail::addEntry(Targets, Target); in addTarget() 49 const Target &Target) { in addAllowableClient() 51 Client->addTarget(Target); in addAllowableClient() 55 const Target in addReexportedLibrary() 48 addAllowableClient(StringRef InstallName, const Target &Target) addAllowableClient() argument 54 addReexportedLibrary(StringRef InstallName, const Target &Target) addReexportedLibrary() argument 88 addUUID(const Target &Target, uint8_t UUID[16]) addUUID() argument 99 addTarget(const Target &Target) addTarget() argument [all...] |
H A D | Target.cpp | 1 //===- tapi/Core/Target.cpp - Target ----------------------------*- C++ -*-===// 15 #include "llvm/TextAPI/MachO/Target.h" 20 Expected<Target> Target::create(StringRef TargetValue) { in create() 47 return Target{Architecture, Platform}; in create() 50 Target::operator std::string() const { in operator std::string() 55 raw_ostream &operator<<(raw_ostream &OS, const Target &Target) { in operator <<() argument 56 OS << std::string(Target); in operator <<() [all...] |
/third_party/gn/src/gn/ |
H A D | runtime_deps_unittest.cc | 18 Target* target, in InitTargetWithType() 19 Target::OutputType type) { in InitTargetWithType() 26 std::pair<OutputFile, const Target*> MakePair(const char* str, in MakePair() 27 const Target* t) { in MakePair() 28 return std::pair<OutputFile, const Target*>(OutputFile(str), t); in MakePair() 32 const std::vector<std::pair<OutputFile, const Target*>>& v) { in GetVectorDescription() 56 Target stat(setup.settings(), Label(SourceDir("//"), "stat")); in TEST_F() 57 InitTargetWithType(setup, &stat, Target::STATIC_LIBRARY); in TEST_F() 61 Target shared(setup.settings(), Label(SourceDir("//"), "shared")); in TEST_F() 62 InitTargetWithType(setup, &shared, Target in TEST_F() [all...] |
H A D | resolved_target_data.h | 36 // data. For all methods, the input Target instance passed as argument 37 // must have been fully resolved (meaning that Target::OnResolved() 47 const ResolvedTargetDeps& GetTargetDeps(const Target* target) const { in GetTargetDeps() 53 base::span<const Target*> GetDataDeps(const Target* target) const { in GetDataDeps() 59 base::span<const Target*> GetLinkedDeps(const Target* target) const { in GetLinkedDeps() 67 const Target* target) const { in GetLinkedLibraryDirs() 74 const std::vector<LibFile>& GetLinkedLibraries(const Target* target) const { in GetLinkedLibraries() 81 const Target* targe in GetLinkedFrameworkDirs() [all...] |
H A D | substitution_writer.h | 21 class Target; 36 // - Target substitutions: These are specific to the target+tool combination 88 static SourceFile ApplyPatternToSource(const Target* target, 93 const Target* target, 98 const Target* target, 109 static void ApplyListToSource(const Target* target, 114 static void ApplyListToSourceAsString(const Target* target, 119 static void ApplyListToSourceAsOutputFile(const Target* target, 129 static void ApplyListToSources(const Target* target, 134 static void ApplyListToSourcesAsString(const Target* targe [all...] |
H A D | target.cc | 28 void MergePublicConfigsFrom(const Target* from_target, in MergePublicConfigsFrom() 37 void MergeAllDependentConfigsFrom(const Target* from_target, in MergeAllDependentConfigsFrom() 75 bool EnsureFileIsGeneratedByDependency(const Target* target, in EnsureFileIsGeneratedByDependency() 134 if (target->output_type() == Target::CREATE_BUNDLE) { in EnsureFileIsGeneratedByDependency() 159 bool RecursiveCheckAssertNoDeps(const Target* target, in RecursiveCheckAssertNoDeps() 184 for (const auto& pair : target->GetDeps(Target::DEPS_ALL)) { in RecursiveCheckAssertNoDeps() 185 if (pair.ptr->output_type() == Target::EXECUTABLE) in RecursiveCheckAssertNoDeps() 290 Target::Target(const Settings* settings, in Target() function in Target 295 Target [all...] |
H A D | header_checker.h | 26 class Target; 37 ChainLink(const Target* t, bool p) : target(t), is_public(p) {} in ChainLink() 39 const Target* target; 55 const std::vector<const Target*>& targets, 67 bool Run(const std::vector<const Target*>& to_check, 87 TargetInfo(const Target* t, bool is_pub, bool is_gen) in TargetInfo() 90 const Target* target; 107 void DoWork(const Target* target, const SourceFile& file); 110 static void AddTargetToFileMap(const Target* target, FileMap* dest); 123 bool CheckFile(const Target* from_targe [all...] |
H A D | ninja_c_binary_target_writer_unittest.cc | 26 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() 27 target.set_output_type(Target::SOURCE_SET); in TEST_F() 69 Target shlib_target(setup.settings(), Label(SourceDir("//foo/"), "shlib")); in TEST_F() 70 shlib_target.set_output_type(Target::SHARED_LIBRARY); in TEST_F() 105 Target stlib_target(setup.settings(), Label(SourceDir("//foo/"), "stlib")); in TEST_F() 106 stlib_target.set_output_type(Target::STATIC_LIBRARY); in TEST_F() 167 TestTarget target(setup, "//foo:bar", Target::STATIC_LIBRARY); in TEST_F() 191 TestTarget target(setup, "//foo:bar", Target::STATIC_LIBRARY); in TEST_F() 226 TestTarget target(setup, "//foo:bar", Target::STATIC_LIBRARY); in TEST_F() 232 TestTarget baz(setup, "//foo:baz", Target in TEST_F() [all...] |
H A D | runtime_deps.cc | 29 using RuntimeDepsVector = std::vector<std::pair<OutputFile, const Target*>>; 34 const Target* source, in AddIfNew() 44 const Target* source, in AddIfNew() 59 void RecursiveCollectRuntimeDeps(const Target* target, in RecursiveCollectRuntimeDeps() argument 62 std::map<const Target*, bool>* seen_targets, in RecursiveCollectRuntimeDeps() 79 if (target->output_type() == Target::EXECUTABLE || in RecursiveCollectRuntimeDeps() 80 target->output_type() == Target::LOADABLE_MODULE || in RecursiveCollectRuntimeDeps() 81 target->output_type() == Target::SHARED_LIBRARY) { in RecursiveCollectRuntimeDeps() 91 if (is_target_data_dep && (target->output_type() == Target::ACTION || in RecursiveCollectRuntimeDeps() 92 target->output_type() == Target in RecursiveCollectRuntimeDeps() [all...] |
H A D | ninja_rust_binary_target_writer_unittest.cc | 23 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() 24 target.set_output_type(Target::SOURCE_SET); in TEST_F() 37 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() 38 target.set_output_type(Target::EXECUTABLE); in TEST_F() 92 Target private_rlib(setup.settings(), in TEST_F() 94 private_rlib.set_output_type(Target::RUST_LIBRARY); in TEST_F() 134 Target far_public_rlib(setup.settings(), in TEST_F() 136 far_public_rlib.set_output_type(Target::RUST_LIBRARY); in TEST_F() 176 Target public_rlib(setup.settings(), Label(SourceDir("//bar/"), "publiclib")); in TEST_F() 177 public_rlib.set_output_type(Target in TEST_F() [all...] |
H A D | resolved_target_data.cc | 10 const Target* target) const { in GetTargetInfo() 27 for (const Target* dep : info->deps.linked_deps()) { in ComputeLibInfo() 28 if (!dep->IsFinal() || dep->output_type() == Target::STATIC_LIBRARY) { in ComputeLibInfo() 51 for (const Target* dep : info->deps.linked_deps()) { in ComputeFrameworkInfo() 52 if (!dep->IsFinal() || dep->output_type() == Target::STATIC_LIBRARY) { in ComputeFrameworkInfo() 68 for (const Target* dep : info->deps.linked_deps()) { in ComputeHardDeps() 104 base::span<const Target*> deps, in ComputeInheritedLibsFor() 107 for (const Target* dep : deps) { in ComputeInheritedLibsFor() 109 if (dep->output_type() == Target::STATIC_LIBRARY || in ComputeInheritedLibsFor() 110 dep->output_type() == Target in ComputeInheritedLibsFor() [all...] |
H A D | inherited_libraries_unittest.cc | 14 // right type of pair with the const Target. 15 std::pair<const Target*, bool> Pair(const Target* t, bool b) { in Pair() 16 return std::pair<const Target*, bool>(t, b); in Pair() 24 Target a(setup.settings(), Label(SourceDir("//foo/"), "a")); in TEST() 25 Target b(setup.settings(), Label(SourceDir("//foo/"), "b")); in TEST() 64 Target a(setup.settings(), Label(SourceDir("//foo/"), "a")); in TEST() 65 Target b(setup.settings(), Label(SourceDir("//foo/"), "b")); in TEST() 66 Target w(setup.settings(), Label(SourceDir("//foo/"), "w")); in TEST() 67 Target in TEST() [all...] |
H A D | rust_project_writer_unittest.cc | 32 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() 33 target.set_output_type(Target::RUST_LIBRARY); in TEST_F() 45 std::vector<const Target*> targets; in TEST_F() 86 Target dep(setup.settings(), Label(SourceDir("//tortoise/"), "bar")); in TEST_F() 87 dep.set_output_type(Target::RUST_LIBRARY); in TEST_F() 97 Target target(setup.settings(), Label(SourceDir("//hare/"), "bar")); in TEST_F() 98 target.set_output_type(Target::RUST_LIBRARY); in TEST_F() 110 std::vector<const Target*> targets; in TEST_F() 172 Target dep(setup.settings(), Label(SourceDir("//tortoise/"), "bar")); in TEST_F() 173 dep.set_output_type(Target in TEST_F() [all...] |
H A D | commands.cc | 46 std::vector<const Target*>* matches) { in ResolveTargetsFromCommandLinePattern() 81 UniqueVector<const Target*>* target_matches, in ResolveStringFromCommandLineInput() 89 std::vector<const Target*> target_match_vector; in ResolveStringFromCommandLineInput() 93 for (const Target* target : target_match_vector) in ResolveStringFromCommandLineInput() 119 else if (const Target* as_target = item->AsTarget()) in ResolveStringFromCommandLineInput() 148 // Target::UNKNOWN will be set if there is no filter. Target::ACTION_FOREACH 149 // will never be returned. Code applying the filters should apply Target::ACTION 151 bool GetTargetTypeFilter(Target::OutputType* type) { in GetTargetTypeFilter() 158 bool ApplyTestonlyFilter(std::vector<const Target*>* target [all...] |
H A D | ninja_create_bundle_target_writer_unittest.cc | 27 std::unique_ptr<Target> NewAction(const TestWithScope& setup) { in NewAction() 29 auto action = std::make_unique<Target>(setup.settings(), in NewAction() 31 action->set_output_type(Target::ACTION); in NewAction() 49 std::unique_ptr<Target> action = NewAction(setup); in TEST() 52 Target bundle_data(setup.settings(), Label(SourceDir("//foo/"), "data")); in TEST() 53 bundle_data.set_output_type(Target::BUNDLE_DATA); in TEST() 62 Target create_bundle( in TEST() 67 create_bundle.set_output_type(Target::CREATE_BUNDLE); in TEST() 98 std::unique_ptr<Target> action = NewAction(setup); in TEST() 101 Target bundle_dat in TEST() [all...] |
H A D | ninja_target_writer_unittest.cc | 17 TestingNinjaTargetWriter(const Target* target, in TestingNinjaTargetWriter() 26 const std::vector<const Target*>& additional_hard_deps, in WriteInputDepsStampAndGetDep() 40 Target base_target(setup.settings(), Label(SourceDir("//foo/"), "base")); in TEST() 41 base_target.set_output_type(Target::ACTION); in TEST() 62 Target base_target(setup.settings(), Label(SourceDir("//foo/"), "base")); in TEST() 63 base_target.set_output_type(Target::ACTION); in TEST() 82 Target base_target(setup.settings(), Label(SourceDir("//foo/"), "base")); in TEST() 83 base_target.set_output_type(Target::ACTION); in TEST() 90 Target target(setup.settings(), Label(SourceDir("//foo/"), "target")); in TEST() 91 target.set_output_type(Target in TEST() [all...] |
H A D | compile_commands_writer_unittest.cc | 22 bool CompareLabel(const Target* a, const Target* b) { in CompareLabel() 38 bool VectorsEqual(std::vector<const Target*> a, in VectorsEqual() 39 std::vector<const Target*> b) const { in VectorsEqual() 54 std::vector<const Target*> targets; in TEST_F() 55 Target target(settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() 56 target.set_output_type(Target::SOURCE_SET); in TEST_F() 110 Target shlib_target(settings(), Label(SourceDir("//foo/"), "shlib")); in TEST_F() 112 shlib_target.set_output_type(Target::SHARED_LIBRARY); in TEST_F() 171 Target stlib_targe in TEST_F() [all...] |
H A D | resolved_target_data_unittest.cc | 16 TestTarget a(setup, "//foo:a", Target::GROUP); in TEST() 17 TestTarget b(setup, "//foo:b", Target::GROUP); in TEST() 18 TestTarget c(setup, "//foo:c", Target::GROUP); in TEST() 19 TestTarget d(setup, "//foo:d", Target::GROUP); in TEST() 20 TestTarget e(setup, "//foo:e", Target::GROUP); in TEST() 67 TestTarget z(setup, "//foo:z", Target::STATIC_LIBRARY); in TEST() 85 TestTarget shared(setup, "//foo:shared", Target::SHARED_LIBRARY); in TEST() 102 TestTarget exec(setup, "//foo:exec", Target::EXECUTABLE); in TEST() 123 TestTarget z(setup, "//foo:z", Target::STATIC_LIBRARY); in TEST() 143 TestTarget shared(setup, "//foo:shared", Target in TEST() [all...] |
H A D | builder_unittest.cc | 110 Target* a = new Target(&settings_, a_label); in TEST_F() 112 a->set_output_type(Target::EXECUTABLE); in TEST_F() 154 Target* c = new Target(&settings_, c_label); in TEST_F() 155 c->set_output_type(Target::STATIC_LIBRARY); in TEST_F() 164 Target* b = new Target(&settings_, b_label); in TEST_F() 166 b->set_output_type(Target::SHARED_LIBRARY); in TEST_F() 242 Target* in TEST_F() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | TargetRegistry.h | 1 //===- Support/TargetRegistry.h - Target Registration -----------*- C++ -*-===// 13 // Target specific class implementations should register themselves using the 116 /// Target - Wrapper for Target specific information. 124 class Target { class 140 *(*)(const Target &T, const Triple &TT, StringRef CPU, StringRef Features, 148 using MCAsmBackendCtorTy = MCAsmBackend *(*)(const Target &T, 155 using MCDisassemblerCtorTy = MCDisassembler *(*)(const Target &T, 202 Target *Next; 214 /// name of the 'def X : Target [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/ |
H A D | Target.h | 1 //===- llvm/TextAPI/Target.h - TAPI Target ----------------------*- C++ -*-===// 24 class Target { class 26 Target() = default; 27 Target(Architecture Arch, PlatformKind Platform) in Target() function in llvm::MachO::Target 29 explicit Target(const llvm::Triple &Triple) in Target() function in llvm::MachO::Target 32 static llvm::Expected<Target> create(StringRef Target); 40 inline bool operator==(const Target &LHS, const Target [all...] |
H A D | InterfaceFile.h | 31 #include "llvm/TextAPI/MachO/Target.h" 92 void addTarget(const Target &Target); 94 for (const auto &Target : Targets) in addTargets() 95 addTarget(Target(Target)); in addTargets() 195 /// \param Target the target to add into. 196 void addTarget(const Target &Target); 205 addTarget(Target(Target in addTargets() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/TargetInfo/ |
H A D | AArch64TargetInfo.cpp | 1 //===-- AArch64TargetInfo.cpp - AArch64 Target Implementation -----------------===// 13 Target &llvm::getTheAArch64leTarget() { in getTheAArch64leTarget() 14 static Target TheAArch64leTarget; in getTheAArch64leTarget() 17 Target &llvm::getTheAArch64beTarget() { in getTheAArch64beTarget() 18 static Target TheAArch64beTarget; in getTheAArch64beTarget() 21 Target &llvm::getTheAArch64_32Target() { in getTheAArch64_32Target() 22 static Target TheAArch64leTarget; in getTheAArch64_32Target() 25 Target &llvm::getTheARM64Target() { in getTheARM64Target() 26 static Target TheARM64Target; in getTheARM64Target() 29 Target in getTheARM64Target() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86MachObjectWriter.cpp | 32 MCValue Target, 40 MCValue Target, 48 MCValue Target, 53 MCValue Target, uint64_t &FixedValue); 61 const MCFixup &Fixup, MCValue Target, 64 RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target, 67 RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target, 104 const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, in RecordX86_64Relocation() 121 Value = Target.getConstant(); in RecordX86_64Relocation() 132 if (Target in RecordX86_64Relocation() 102 RecordX86_64Relocation( MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) RecordX86_64Relocation() argument 363 recordScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) recordScatteredRelocation() argument 463 recordTLVPRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) recordTLVPRelocation() argument 503 RecordX86Relocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) RecordX86Relocation() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | jsDeclarationsEnumTag.js | 3 export const Target = { 24 * @param {Target} t 35 /** @type {Target} */ 36 var v = Target.START 42 if (!Target[s]) { 46 return Target[s] 54 exports.ff = exports.consume = exports.Fs = exports.Second = exports.Target = void 0;
56 exports.Target = {
76 * @param {Target} t
87 /** @type {Target} */
[all...] |