Home
last modified time | relevance | path

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

/external/google-fruit/include/fruit/
Dnormalized_component.h104 class NormalizedComponent {
114 explicit NormalizedComponent(Component<Params...> (*)(FormalArgs...), Args&&... args);
116NormalizedComponent(NormalizedComponent&& storage) noexcept : storage(std::move(storage.storage)) … in NormalizedComponent() function
117 NormalizedComponent(const NormalizedComponent&) = delete;
119 NormalizedComponent& operator=(NormalizedComponent&&) = delete;
120 NormalizedComponent& operator=(const NormalizedComponent&) = delete;
123 NormalizedComponent(fruit::impl::ComponentStorage&& storage, fruit::impl::MemoryPool memory_pool);
Dinjector.h117 Injector(const NormalizedComponent<NormalizedComponentParams...>& normalized_component,
125 Injector(NormalizedComponent<NormalizedComponentParams...>&& normalized_component,
Dfruit_forward_decls.h55 class NormalizedComponent; variable
Dcomponent.h71 friend class NormalizedComponent; variable
/external/google-fruit/include/fruit/impl/
Dnormalized_component.defn.h29 inline NormalizedComponent<Params...>::NormalizedComponent(Component<Params...> (*getComponent)(For… in NormalizedComponent() function
31 : NormalizedComponent(std::move(fruit::Component<Params...>( in NormalizedComponent()
37 inline NormalizedComponent<Params...>::NormalizedComponent(fruit::impl::ComponentStorage&& storage, in NormalizedComponent() function
Dinjector.defn.h94 inline Injector<P...>::Injector(const NormalizedComponent<NormalizedComponentParams...>& normalized… in Injector()
/external/google-fruit/examples/server/
Dserver.cpp43 …const NormalizedComponent<Required<Request>, RequestDispatcher> requestDispatcherNormalizedCompone… in run()
68 …const NormalizedComponent<Required<Request>, RequestDispatcher>& requestDispatcherNormalizedCompon… in worker_thread_main()
/external/google-fruit/examples/testing/
Dcached_greeter_test_with_normalized_component.cpp35 …static fruit::NormalizedComponent<fruit::Annotated<Cached, Greeter>> normalizedComponent(getMainCo… in createInjector()