• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:ComponentStorageEntry

41 …const std::vector<ComponentStorageEntry, ArenaAllocator<ComponentStorageEntry>>& entries_to_proces…  in printLazyComponentInstallationLoop()  argument
42 const ComponentStorageEntry& last_entry) { in printLazyComponentInstallationLoop()
45 for (const ComponentStorageEntry& entry : entries_to_process) { in printLazyComponentInstallationLoop()
47 case ComponentStorageEntry::Kind::COMPONENT_WITH_ARGS_END_MARKER: in printLazyComponentInstallationLoop()
49 last_entry.kind == ComponentStorageEntry::Kind::LAZY_COMPONENT_WITH_ARGS && in printLazyComponentInstallationLoop()
56 case ComponentStorageEntry::Kind::COMPONENT_WITHOUT_ARGS_END_MARKER: in printLazyComponentInstallationLoop()
58 last_entry.kind == ComponentStorageEntry::Kind::LAZY_COMPONENT_WITH_NO_ARGS && in printLazyComponentInstallationLoop()
71 case ComponentStorageEntry::Kind::LAZY_COMPONENT_WITH_ARGS: in printLazyComponentInstallationLoop()
75 case ComponentStorageEntry::Kind::LAZY_COMPONENT_WITH_NO_ARGS: in printLazyComponentInstallationLoop()
100 …const ComponentStorageEntry& replaced_component_entry, const ComponentStorageEntry& replacement_co… in printIncompatibleComponentReplacementsError()
101 const ComponentStorageEntry& replacement_component_entry2) { in printIncompatibleComponentReplacementsError()
106 case ComponentStorageEntry::Kind::REPLACED_LAZY_COMPONENT_WITH_ARGS: in printIncompatibleComponentReplacementsError()
110 case ComponentStorageEntry::Kind::REPLACED_LAZY_COMPONENT_WITH_NO_ARGS: in printIncompatibleComponentReplacementsError()
120 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in printIncompatibleComponentReplacementsError()
124 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in printIncompatibleComponentReplacementsError()
134 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in printIncompatibleComponentReplacementsError()
138 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in printIncompatibleComponentReplacementsError()
166 …const ComponentStorageEntry& replaced_component_entry, const ComponentStorageEntry& replacement_co… in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
171 case ComponentStorageEntry::Kind::REPLACED_LAZY_COMPONENT_WITH_ARGS: in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
175 case ComponentStorageEntry::Kind::REPLACED_LAZY_COMPONENT_WITH_NO_ARGS: in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
185 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
189 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in printComponentReplacementFailedBecauseTargetAlreadyExpanded()
227 const ComponentStorageEntry& multibinding_entry = i->first; in addMultibindings()
228 const ComponentStorageEntry& multibinding_vector_creator_entry = i->second; in addMultibindings()
230ComponentStorageEntry::Kind::MULTIBINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_NO_ALLOCATION || in addMultibindings()
232ComponentStorageEntry::Kind::MULTIBINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_ALLOCATION || in addMultibindings()
233 … multibinding_entry.kind == ComponentStorageEntry::Kind::MULTIBINDING_FOR_CONSTRUCTED_OBJECT); in addMultibindings()
234 …FruitAssert(multibinding_vector_creator_entry.kind == ComponentStorageEntry::Kind::MULTIBINDING_VE… in addMultibindings()
241 case ComponentStorageEntry::Kind::MULTIBINDING_FOR_CONSTRUCTED_OBJECT: { in addMultibindings()
248 … case ComponentStorageEntry::Kind::MULTIBINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_NO_ALLOCATION: { in addMultibindings()
256 case ComponentStorageEntry::Kind::MULTIBINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_ALLOCATION: { in addMultibindings()
274 FixedSizeVector<ComponentStorageEntry>&& toplevel_entries, in normalizeBindingsWithUndoableBindingCompression()
278 std::vector<ComponentStorageEntry, ArenaAllocator<ComponentStorageEntry>>& bindings_vector, in normalizeBindingsWithUndoableBindingCompression() argument
314 FixedSizeVector<ComponentStorageEntry>&& toplevel_entries, in normalizeBindingsWithPermanentBindingCompression()
317 std::vector<ComponentStorageEntry, ArenaAllocator<ComponentStorageEntry>>& bindings_vector, in normalizeBindingsWithPermanentBindingCompression() argument
327 FixedSizeVector<ComponentStorageEntry>&& toplevel_entries, MemoryPool& memory_pool, in normalizeBindingsAndAddTo()
330 std::vector<ComponentStorageEntry, ArenaAllocator<ComponentStorageEntry>>& new_bindings_vector, in normalizeBindingsAndAddTo() argument
340 HashMapWithArenaAllocator<TypeId, ComponentStorageEntry> binding_data_map = in normalizeBindingsAndAddTo()
341 … createHashMapWithArenaAllocator<TypeId, ComponentStorageEntry>(20 /* capacity */, memory_pool); in normalizeBindingsAndAddTo()
347 [](ComponentStorageEntry) {}, in normalizeBindingsAndAddTo() argument
348 …[&multibindings_vector](ComponentStorageEntry multibinding, ComponentStorageEntry multibinding_vec… in normalizeBindingsAndAddTo()
392 for (const ComponentStorageEntry& entry : new_bindings_vector) { in normalizeBindingsAndAddTo()
394 case ComponentStorageEntry::Kind::BINDING_FOR_CONSTRUCTED_OBJECT: in normalizeBindingsAndAddTo()
397 case ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_NO_ALLOCATION: in normalizeBindingsAndAddTo()
398 case ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_ALLOCATION: in normalizeBindingsAndAddTo()
399 case ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_WITH_UNKNOWN_ALLOCATION: { in normalizeBindingsAndAddTo()
428 ComponentStorageEntry c_binding; in normalizeBindingsAndAddTo()
430 …c_binding.kind = ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_WITH_UNKNOWN_ALLOCAT… in normalizeBindingsAndAddTo()
433 ComponentStorageEntry i_binding; in normalizeBindingsAndAddTo()
435 …i_binding.kind = ComponentStorageEntry::Kind::BINDING_FOR_OBJECT_TO_CONSTRUCT_THAT_NEEDS_NO_ALLOCA… in normalizeBindingsAndAddTo()
453ComponentStorageEntry& replaced_component_entry, const ComponentStorageEntry& preexisting_replacem… in handlePreexistingLazyComponentWithArgsReplacement()
454 ComponentStorageEntry& new_replacement) { in handlePreexistingLazyComponentWithArgsReplacement()
456 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in handlePreexistingLazyComponentWithArgsReplacement()
457 …if (preexisting_replacement.kind != ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_N… in handlePreexistingLazyComponentWithArgsReplacement()
468 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in handlePreexistingLazyComponentWithArgsReplacement()
469 …if (preexisting_replacement.kind != ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_A… in handlePreexistingLazyComponentWithArgsReplacement()
487ComponentStorageEntry& replaced_component_entry, const ComponentStorageEntry& preexisting_replacem… in handlePreexistingLazyComponentWithNoArgsReplacement()
488 ComponentStorageEntry& new_replacement) { in handlePreexistingLazyComponentWithNoArgsReplacement()
490 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_NO_ARGS: in handlePreexistingLazyComponentWithNoArgsReplacement()
491 …if (preexisting_replacement.kind != ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_N… in handlePreexistingLazyComponentWithNoArgsReplacement()
501 case ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS: in handlePreexistingLazyComponentWithNoArgsReplacement()
502 if (new_replacement.kind != ComponentStorageEntry::Kind::REPLACEMENT_LAZY_COMPONENT_WITH_ARGS || in handlePreexistingLazyComponentWithNoArgsReplacement()