Searched refs:all_frameworks (Results 1 – 8 of 8) sorted by relevance
/third_party/gn/src/gn/ |
D | resolved_target_data.cc | 96 ImmutableVectorView<std::string> all_frameworks(const Target* target) const { in all_frameworks() function in ResolvedTargetData::Impl 172 UniqueVector<std::string> all_frameworks; in ComputeFrameworkInfo() local 178 all_frameworks.Append(cur.frameworks()); in ComputeFrameworkInfo() 185 all_frameworks.Append(dep_info->frameworks); in ComputeFrameworkInfo() 191 info->frameworks = ImmutableVector<std::string>(all_frameworks); in ComputeFrameworkInfo() 439 ImmutableVectorView<std::string> ResolvedTargetData::all_frameworks( in all_frameworks() function in ResolvedTargetData 441 return GetImpl()->all_frameworks(target); in all_frameworks()
|
D | resolved_target_data_unittest.cc | 80 ASSERT_EQ(1u, info.all_frameworks.size()); in TEST() 81 EXPECT_EQ(framework, info.all_frameworks[0]); in TEST() 96 ASSERT_EQ(2u, shared_info.all_frameworks.size()); in TEST() 97 EXPECT_EQ(second_framework, shared_info.all_frameworks[0]); in TEST() 98 EXPECT_EQ(framework, shared_info.all_frameworks[1]); in TEST() 108 EXPECT_EQ(0u, exec_info.all_frameworks.size()); in TEST()
|
D | resolved_target_data.h | 47 ImmutableVector<std::string> all_frameworks; member 54 ImmutableVectorView<std::string> all_frameworks(const Target* target) const;
|
D | ninja_binary_target_writer.cc | 399 const auto& all_frameworks = target_->all_frameworks(); in WriteFrameworks() local 400 for (size_t i = 0; i < all_frameworks.size(); i++) { in WriteFrameworks() 401 writer(all_frameworks[i], out); in WriteFrameworks()
|
D | desc_builder.cc | 608 const auto& all_frameworks = target_->all_frameworks(); in BuildDescription() local 609 if (!all_frameworks.empty()) { in BuildDescription() 611 for (size_t i = 0; i < all_frameworks.size(); i++) in BuildDescription() 612 frameworks->AppendString(all_frameworks[i]); in BuildDescription()
|
D | target_unittest.cc | 101 ASSERT_EQ(1u, z.all_frameworks().size()); in TEST_F() 102 EXPECT_EQ(framework, z.all_frameworks()[0]); in TEST_F() 116 ASSERT_EQ(2u, shared.all_frameworks().size()); in TEST_F() 117 EXPECT_EQ(second_framework, shared.all_frameworks()[0]); in TEST_F() 118 EXPECT_EQ(framework, shared.all_frameworks()[1]); in TEST_F() 127 EXPECT_EQ(0u, exec.all_frameworks().size()); in TEST_F()
|
D | target.h | 346 const UniqueVector<std::string>& all_frameworks() const { in all_frameworks() function
|
D | target.cc | 874 all_frameworks_.Append(dep->all_frameworks()); in PullDependentTargetLibsFrom()
|