Lines Matching refs:ComponentStorageEntry

39 …const std::vector<ComponentStorageEntry, ArenaAllocator<ComponentStorageEntry>>& entries_to_proces…  in printLazyComponentInstallationLoop()  argument
40 const ComponentStorageEntry& last_entry) { in printLazyComponentInstallationLoop()
43 for (const ComponentStorageEntry& entry : entries_to_process) { in printLazyComponentInstallationLoop()
45 case ComponentStorageEntry::Kind::COMPONENT_WITH_ARGS_END_MARKER: in printLazyComponentInstallationLoop()
47 last_entry.kind == ComponentStorageEntry::Kind::LAZY_COMPONENT_WITH_ARGS && in printLazyComponentInstallationLoop()
54 case ComponentStorageEntry::Kind::COMPONENT_WITHOUT_ARGS_END_MARKER: in printLazyComponentInstallationLoop()
56 last_entry.kind == ComponentStorageEntry::Kind::LAZY_COMPONENT_WITH_NO_ARGS && in printLazyComponentInstallationLoop()
69 case ComponentStorageEntry::Kind::LAZY_COMPONENT_WITH_ARGS: in printLazyComponentInstallationLoop()
73 case ComponentStorageEntry::Kind::LAZY_COMPONENT_WITH_NO_ARGS: in printLazyComponentInstallationLoop()
98 …const ComponentStorageEntry& replaced_component_entry, const ComponentStorageEntry& replacement_co… in printIncompatibleComponentReplacementsError()
99 const ComponentStorageEntry& replacement_component_entry2) { in printIncompatibleComponentReplacementsError()
104 case ComponentStorageEntry::Kind::REPLACED_LAZY_COMPONENT_WITH_ARGS: in printIncompatibleComponentReplacementsError()
108 case ComponentStorageEntry::Kind::REPLACED_LAZY_COMPONENT_WITH_NO_ARGS: in printIncompatibleComponentReplacementsError()
118 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in printIncompatibleComponentReplacementsError()
122 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in printIncompatibleComponentReplacementsError()
132 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in printIncompatibleComponentReplacementsError()
136 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in printIncompatibleComponentReplacementsError()
164 …const ComponentStorageEntry& replaced_component_entry, const ComponentStorageEntry& replacement_co… in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
169 case ComponentStorageEntry::Kind::REPLACED_LAZY_COMPONENT_WITH_ARGS: in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
173 case ComponentStorageEntry::Kind::REPLACED_LAZY_COMPONENT_WITH_NO_ARGS: in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
183 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
187 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
225 const ComponentStorageEntry& multibinding_entry = i->first; in addMultibindings()
226 const ComponentStorageEntry& multibinding_vector_creator_entry = i->second; in addMultibindings()
228ComponentStorageEntry::Kind::MULTIBINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_NO_ALLOCATION || in addMultibindings()
230ComponentStorageEntry::Kind::MULTIBINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_ALLOCATION || in addMultibindings()
231 … multibinding_entry.kind == ComponentStorageEntry::Kind::MULTIBINDING_FOR_CONSTRUCTED_OBJECT); in addMultibindings()
232 …FruitAssert(multibinding_vector_creator_entry.kind == ComponentStorageEntry::Kind::MULTIBINDING_VE… in addMultibindings()
239 case ComponentStorageEntry::Kind::MULTIBINDING_FOR_CONSTRUCTED_OBJECT: { in addMultibindings()
246 … case ComponentStorageEntry::Kind::MULTIBINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_NO_ALLOCATION: { in addMultibindings()
254 case ComponentStorageEntry::Kind::MULTIBINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_ALLOCATION: { in addMultibindings()
272 FixedSizeVector<ComponentStorageEntry>&& toplevel_entries, in normalizeBindingsWithUndoableBindingCompression()
276 std::vector<ComponentStorageEntry, ArenaAllocator<ComponentStorageEntry>>& bindings_vector, in normalizeBindingsWithUndoableBindingCompression() argument
312 FixedSizeVector<ComponentStorageEntry>&& toplevel_entries, in normalizeBindingsWithPermanentBindingCompression()
315 std::vector<ComponentStorageEntry, ArenaAllocator<ComponentStorageEntry>>& bindings_vector, in normalizeBindingsWithPermanentBindingCompression() argument
325 FixedSizeVector<ComponentStorageEntry>&& toplevel_entries, MemoryPool& memory_pool, in normalizeBindingsAndAddTo()
328 std::vector<ComponentStorageEntry, ArenaAllocator<ComponentStorageEntry>>& new_bindings_vector, in normalizeBindingsAndAddTo() argument
338 HashMapWithArenaAllocator<TypeId, ComponentStorageEntry> binding_data_map = in normalizeBindingsAndAddTo()
339 … createHashMapWithArenaAllocator<TypeId, ComponentStorageEntry>(20 /* capacity */, memory_pool); in normalizeBindingsAndAddTo()
345 [](ComponentStorageEntry) {}, in normalizeBindingsAndAddTo() argument
346 …[&multibindings_vector](ComponentStorageEntry multibinding, ComponentStorageEntry multibinding_vec… in normalizeBindingsAndAddTo()
390 for (const ComponentStorageEntry& entry : new_bindings_vector) { in normalizeBindingsAndAddTo()
392 case ComponentStorageEntry::Kind::BINDING_FOR_CONSTRUCTED_OBJECT: in normalizeBindingsAndAddTo()
395 case ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_NO_ALLOCATION: in normalizeBindingsAndAddTo()
396 case ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_ALLOCATION: in normalizeBindingsAndAddTo()
397 case ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_WITH_UNKNOWN_ALLOCATION: { in normalizeBindingsAndAddTo()
426 ComponentStorageEntry c_binding; in normalizeBindingsAndAddTo()
428 …c_binding.kind = ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_WITH_UNKNOWN_ALLOCAT… in normalizeBindingsAndAddTo()
431 ComponentStorageEntry i_binding; in normalizeBindingsAndAddTo()
433 …i_binding.kind = ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_NO_ALLOCA… in normalizeBindingsAndAddTo()
451ComponentStorageEntry& replaced_component_entry, const ComponentStorageEntry& preexisting_replacem… in handlePreexistingLazyComponentWithArgsReplacement()
452 ComponentStorageEntry& new_replacement) { in handlePreexistingLazyComponentWithArgsReplacement()
454 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in handlePreexistingLazyComponentWithArgsReplacement()
455 …if (preexisting_replacement.kind != ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_N… in handlePreexistingLazyComponentWithArgsReplacement()
466 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in handlePreexistingLazyComponentWithArgsReplacement()
467 …if (preexisting_replacement.kind != ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_A… in handlePreexistingLazyComponentWithArgsReplacement()
485ComponentStorageEntry& replaced_component_entry, const ComponentStorageEntry& preexisting_replacem… in handlePreexistingLazyComponentWithNoArgsReplacement()
486 ComponentStorageEntry& new_replacement) { in handlePreexistingLazyComponentWithNoArgsReplacement()
488 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in handlePreexistingLazyComponentWithNoArgsReplacement()
489 …if (preexisting_replacement.kind != ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_N… in handlePreexistingLazyComponentWithNoArgsReplacement()
499 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in handlePreexistingLazyComponentWithNoArgsReplacement()
500 if (new_replacement.kind != ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS || in handlePreexistingLazyComponentWithNoArgsReplacement()