OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BindInstance
(Results
1 - 5
of
5
) sorted by null
/external/google-fruit/include/fruit/impl/
bindings.h
50
struct
BindInstance
{};
53
* A variant of
BindInstance
that binds a constant reference.
component.defn.h
108
inline PartialComponent<fruit::impl::
BindInstance
<C, C>, Bindings...>
109
PartialComponent<Bindings...>::
bindInstance
(C& instance) {
110
using Op = OpFor<fruit::impl::
BindInstance
<C, C>>;
118
PartialComponent<Bindings...>::
bindInstance
(const C& instance) {
126
inline PartialComponent<fruit::impl::
BindInstance
<AnnotatedC, C>, Bindings...>
127
PartialComponent<Bindings...>::
bindInstance
(C& instance) {
128
using Op = OpFor<fruit::impl::
BindInstance
<AnnotatedC, C>>;
136
PartialComponent<Bindings...>::
bindInstance
(const C& instance) {
component_functors.defn.h
[
all
...]
/external/google-fruit/include/fruit/
component.h
179
* You can bind an interface to a type bound using a constant binding (see the
bindInstance
method that takes a const&
186
* .
bindInstance
(my_implementation)
198
* .
bindInstance
(cFactory);
342
* .
bindInstance
(*request);
355
* It's also possible to bind constants, see the documentation of the
bindInstance
() method taking a const& for
359
PartialComponent<fruit::impl::
BindInstance
<C, C>, Bindings...>
bindInstance
(C& instance);
369
* .
bindInstance
(my_expensive_class);
396
PartialComponent<fruit::impl::BindConstInstance<C, C>, Bindings...>
bindInstance
(const C& instance);
402
PartialComponent<fruit::impl::BindConstInstance<C, C>, Bindings...>
bindInstance
(C&&) = delete
[
all
...]
/external/google-fruit/include/fruit/impl/component_storage/
partial_component_storage.defn.h
80
class PartialComponentStorage<
BindInstance
<C, C1>, PreviousBindings...> {
120
class PartialComponentStorage<
BindInstance
<fruit::Annotated<Annotation, C>, C1>, PreviousBindings...> {
Completed in 129 milliseconds