Searched refs:ComponentFunctionArgs (Results 1 – 4 of 4) sorted by relevance
/external/google-fruit/include/fruit/impl/ |
D | component_function.defn.h | 26 template <typename ComponentType, typename... ComponentFunctionArgs> 27 inline ComponentFunction<ComponentType, ComponentFunctionArgs...>::ComponentFunction( in ComponentFunction() 28 ComponentType (*getComponent)(ComponentFunctionArgs...), ComponentFunctionArgs... args) in ComponentFunction() argument 31 …(void)IntCollector{0, fruit::impl::checkAcceptableComponentInstallArg<ComponentFunctionArgs>()...}; 34 template <typename ComponentType, typename... ComponentFunctionArgs> 36 inline ComponentFunction<ComponentType, ComponentFunctionArgs...> 37 ComponentFunction<ComponentType, ComponentFunctionArgs...>::create( in create() 38 ComponentType(*getComponent)(ComponentFunctionArgs...), ActualArgs&&... args) { in create() argument 39 …return ComponentFunction<ComponentType, ComponentFunctionArgs...>(getComponent, std::forward<Actua… in create() 42 template <typename ComponentType, typename... ComponentFunctionArgs> [all …]
|
D | component_functors.defn.h | 752 …template <typename Comp, typename... ComponentParams, typename... ComponentFunctionArgs, typename.… 753 …pe<fruit::ComponentFunction<fruit::Component<ComponentParams...>, ComponentFunctionArgs...>>, Comp…
|
/external/google-fruit/include/fruit/ |
D | component_function.h | 28 template <typename ComponentType, typename... ComponentFunctionArgs> 31 ComponentType (*getComponent)(ComponentFunctionArgs...); 32 std::tuple<ComponentFunctionArgs...> args_tuple; 37 …ComponentFunction(ComponentType (*getComponent)(ComponentFunctionArgs...), ComponentFunctionArgs..… 44 static ComponentFunction<ComponentType, ComponentFunctionArgs...> create( 45 ComponentType (*getComponent)(ComponentFunctionArgs...), ActualArgs&&... args);
|
D | fruit_forward_decls.h | 63 template <typename ComponentType, typename... ComponentFunctionArgs>
|