Home
last modified time | relevance | path

Searched refs:all_frameworks (Results 1 – 8 of 8) sorted by relevance

/third_party/gn/src/gn/
Dresolved_target_data.cc96 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()
Dresolved_target_data_unittest.cc80 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()
Dresolved_target_data.h47 ImmutableVector<std::string> all_frameworks; member
54 ImmutableVectorView<std::string> all_frameworks(const Target* target) const;
Dninja_binary_target_writer.cc399 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()
Ddesc_builder.cc608 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()
Dtarget_unittest.cc101 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()
Dtarget.h346 const UniqueVector<std::string>& all_frameworks() const { in all_frameworks() function
Dtarget.cc874 all_frameworks_.Append(dep->all_frameworks()); in PullDependentTargetLibsFrom()