Searched refs:BindState (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/base/
H A Dbind.h49 // It is possible to move most of the COMPILE_ASSERT asserts into BindState<>,
58 typename internal::BindState<
68 typedef internal::BindState<RunnableType, RunType, void()> BindState; typedef
71 return Callback<typename BindState::UnboundRunType>(
72 new BindState(internal::MakeRunnable(functor)));
77 typename internal::BindState<
103 // a scoped_refptr because BindState<> itself takes care of AddRef() for
113 typedef internal::BindState<RunnableType, RunType,
114 void(typename internal::CallbackParamTraits<P1>::StorageType)> BindState; typedef
165 typename internal::CallbackParamTraits<P2>::StorageType)> BindState; typedef
221 typename internal::CallbackParamTraits<P3>::StorageType)> BindState; typedef
282 typename internal::CallbackParamTraits<P4>::StorageType)> BindState; typedef
350 typename internal::CallbackParamTraits<P5>::StorageType)> BindState; typedef
423 typename internal::CallbackParamTraits<P6>::StorageType)> BindState; typedef
501 typename internal::CallbackParamTraits<P7>::StorageType)> BindState; typedef
[all...]
H A Dcallback_unittest.cc27 struct BindState;
30 // comparators and emptiness APIs. Use a BindState that is specialized
35 struct BindState<void(void), void(void), void(FakeInvoker)> struct in namespace:base::internal
42 struct BindState<void(void), void(void), struct in namespace:base::internal
52 typedef internal::BindState<void(void), void(void), void(FakeInvoker)>
54 typedef internal::BindState<void(void), void(void),
H A Dcallback.h254 // constructor that takes an BindState<>*. In the context of the constructor,
255 // the static type of this BindState<> pointer uniquely identifies the
259 // Callback's constructor takes the BindState<>* that has the full static type
262 // function, and upcasting the state of BindState<>* to a
266 // To BindState<> objects are created inside the Bind() functions.
271 // - Creating the BindState storing the bound parameters
367 struct BindState;
380 Callback(internal::BindState<Runnable, BindRunType,
388 &internal::BindState<Runnable, BindRunType, BoundArgsType>
420 Callback(internal::BindState<Runnabl
[all...]
H A Dbind_internal.h77 // BindState<> -- Stores the curried parameters, and is the main entry point
79 // There are ARITY BindState types.
2519 // BindState<>
2532 struct BindState;
2535 struct BindState<Runnable, RunType, void()> : public BindStateBase { struct in namespace:base::internal
2538 typedef Invoker<0, BindState, RunType> InvokerType;
2540 explicit BindState(const Runnable& runnable) function in struct:base::internal::BindState
2544 virtual ~BindState() { }
2550 struct BindState<Runnable, RunType, void(P1)> : public BindStateBase { struct in namespace:base::internal
2553 typedef Invoker<1, BindState, RunTyp
2559 BindState(const Runnable& runnable, const P1& p1) function in struct:base::internal::BindState
2573 struct BindState<Runnable, RunType, void(P1, P2)> : public BindStateBase { struct in namespace:base::internal
2583 BindState(const Runnable& runnable, const P1& p1, const P2& p2) function in struct:base::internal::BindState
2600 struct BindState<Runnable, RunType, void(P1, P2, P3)> : public BindStateBase { struct in namespace:base::internal
2611 BindState(const Runnable& runnable, const P1& p1, const P2& p2, const P3& p3) function in struct:base::internal::BindState
2630 struct BindState<Runnable, RunType, void(P1, P2, P3, struct in namespace:base::internal
2643 BindState(const Runnable& runnable, const P1& p1, const P2& p2, const P3& p3, function in struct:base::internal::BindState
2665 struct BindState<Runnable, RunType, void(P1, P2, P3, P4, struct in namespace:base::internal
2679 BindState(const Runnable& runnable, const P1& p1, const P2& p2, const P3& p3, function in struct:base::internal::BindState
2703 struct BindState<Runnable, RunType, void(P1, P2, P3, P4, P5, struct in namespace:base::internal
2718 BindState(const Runnable& runnable, const P1& p1, const P2& p2, const P3& p3, function in struct:base::internal::BindState
2744 struct BindState<Runnable, RunType, void(P1, P2, P3, P4, P5, P6, struct in namespace:base::internal
2760 BindState(const Runnable& runnable, const P1& p1, const P2& p2, const P3& p3, function in struct:base::internal::BindState
[all...]
/external/clang/test/Parser/
H A DDelayedTemplateParsing.cpp71 struct BindState;
74 struct BindState<void(void*)> { struct in namespace:PR11931
83 Callback(BindState<RunType> bind_state) {
84 BindState<RunType>::Run();
90 return Callback(BindState<void(void*)>());
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dturnport.cc144 enum BindState { STATE_UNBOUND, STATE_BINDING, STATE_BOUND }; enum in class:cricket::TurnEntry
152 BindState state() const { return state_; }
173 BindState state_;

Completed in 566 milliseconds