Lines Matching refs:ResolvedBag
768 const ResolvedBag* AssetManager2::GetBag(uint32_t resid) { in GetBag()
780 const ResolvedBag* AssetManager2::GetBag(uint32_t resid, std::vector<uint32_t>& child_resids) { in GetBag()
819 util::unique_cptr<ResolvedBag> new_bag{reinterpret_cast<ResolvedBag*>( in GetBag()
820 malloc(sizeof(ResolvedBag) + (entry_count * sizeof(ResolvedBag::Entry))))}; in GetBag()
821 ResolvedBag::Entry* new_entry = new_bag->entries; in GetBag()
850 ResolvedBag* result = new_bag.get(); in GetBag()
859 const ResolvedBag* parent_bag = GetBag(parent_resid, child_resids); in GetBag()
870 util::unique_cptr<ResolvedBag> new_bag{reinterpret_cast<ResolvedBag*>( in GetBag()
871 malloc(sizeof(ResolvedBag) + (max_count * sizeof(ResolvedBag::Entry))))}; in GetBag()
872 ResolvedBag::Entry* new_entry = new_bag->entries; in GetBag()
874 const ResolvedBag::Entry* parent_entry = parent_bag->entries; in GetBag()
875 const ResolvedBag::Entry* const parent_entry_end = parent_entry + parent_bag->entry_count; in GetBag()
955 new_bag.reset(reinterpret_cast<ResolvedBag*>(realloc( in GetBag()
956 new_bag.release(), sizeof(ResolvedBag) + (actual_count * sizeof(ResolvedBag::Entry))))); in GetBag()
962 ResolvedBag* result = new_bag.get(); in GetBag()
1128 const ResolvedBag* bag = asset_manager_->GetBag(resid); in ApplyStyle()
1143 using reverse_bag_iterator = std::reverse_iterator<const ResolvedBag::Entry*>; in ApplyStyle()