Home
last modified time | relevance | path

Searched refs:all_weak_frameworks (Results 1 – 6 of 6) sorted by relevance

/third_party/gn/src/gn/
Dresolved_target_data.cc102 ImmutableVectorView<std::string> all_weak_frameworks( in all_weak_frameworks() function in ResolvedTargetData::Impl
173 UniqueVector<std::string> all_weak_frameworks; in ComputeFrameworkInfo() local
179 all_weak_frameworks.Append(cur.weak_frameworks()); in ComputeFrameworkInfo()
186 all_weak_frameworks.Append(dep_info->weak_frameworks); in ComputeFrameworkInfo()
192 info->weak_frameworks = ImmutableVector<std::string>(all_weak_frameworks); in ComputeFrameworkInfo()
444 ImmutableVectorView<std::string> ResolvedTargetData::all_weak_frameworks( in all_weak_frameworks() function in ResolvedTargetData
446 return GetImpl()->all_weak_frameworks(target); in all_weak_frameworks()
Dresolved_target_data.h48 ImmutableVector<std::string> all_weak_frameworks; member
56 ImmutableVectorView<std::string> all_weak_frameworks(
Dninja_binary_target_writer.cc405 const auto& all_weak_frameworks = target_->all_weak_frameworks(); in WriteFrameworks() local
406 for (size_t i = 0; i < all_weak_frameworks.size(); i++) { in WriteFrameworks()
407 weak_writer(all_weak_frameworks[i], out); in WriteFrameworks()
Dtarget.h349 const UniqueVector<std::string>& all_weak_frameworks() const { in all_weak_frameworks() function
Dtarget.cc875 all_weak_frameworks_.Append(dep->all_weak_frameworks()); in PullDependentTargetLibsFrom()
Ddesc_builder.cc618 const auto& weak_frameworks = target_->all_weak_frameworks(); in BuildDescription()