HomeSort by relevance Sort by last modified time
    Searched refs:BindState (Results 1 - 10 of 10) sorted by null

  /external/libweave/third_party/chromium/base/
callback_unittest.cc 31 // comparators and emptiness APIs. Use a BindState that is specialized
36 struct BindState<void(), void(), FakeInvoker>
39 BindState() : BindStateBase(&Destroy) {}
42 ~BindState() {}
44 delete static_cast<BindState*>(self);
49 struct BindState<void(), void(), FakeInvoker, FakeInvoker>
52 BindState() : BindStateBase(&Destroy) {}
55 ~BindState() {}
57 delete static_cast<BindState*>(self);
64 using FakeBindState1 = internal::BindState<void(), void(), FakeInvoker>
    [all...]
bind.h 44 // It is possible to move most of the static_assert into BindState<>, but it
52 typename internal::BindState<
82 // a scoped_refptr because BindState<> itself takes care of AddRef() for
91 using BindState = internal::BindState<
95 return Callback<typename BindState::UnboundRunType>(
96 new BindState(internal::MakeRunnable(functor), args...));
callback.h 249 // constructor that takes an BindState<>*. In the context of the constructor,
250 // the static type of this BindState<> pointer uniquely identifies the
254 // Callback's constructor takes the BindState<>* that has the full static type
257 // function, and upcasting the state of BindState<>* to a
261 // To BindState<> objects are created inside the Bind() functions.
266 // - Creating the BindState storing the bound parameters
360 struct BindState;
374 internal::BindState<Runnable, BindRunType, BoundArgsType...>* bind_state)
380 &internal::BindState<Runnable, BindRunType, BoundArgsType...>
bind_internal.h 62 // BindState<> -- Stores the curried parameters, and is the main entry point
64 // There are ARITY BindState types.
355 // BindState<>
367 struct BindState;
373 struct BindState<Runnable, R(Args...), BoundArgs...> final
376 using StorageType = BindState<Runnable, R(Args...), BoundArgs...>;
404 BindState(const Runnable& runnable, const BoundArgs&... bound_args)
415 ~BindState() {}
418 delete static_cast<BindState*>(self);
  /external/libchrome/base/
bind.h 44 // It is possible to move most of the static_assert into BindState<>, but it
52 typename internal::BindState<
82 // a scoped_refptr because BindState<> itself takes care of AddRef() for
91 using BindState = internal::BindState<
95 return Callback<typename BindState::UnboundRunType>(
96 new BindState(internal::MakeRunnable(functor), args...));
callback_unittest.cc 30 // comparators and emptiness APIs. Use a BindState that is specialized
35 struct BindState<void(), void(), FakeInvoker>
38 BindState() : BindStateBase(&Destroy) {}
41 ~BindState() {}
43 delete static_cast<BindState*>(self);
48 struct BindState<void(), void(), FakeInvoker, FakeInvoker>
51 BindState() : BindStateBase(&Destroy) {}
54 ~BindState() {}
56 delete static_cast<BindState*>(self);
63 using FakeBindState1 = internal::BindState<void(), void(), FakeInvoker>
    [all...]
callback.h 249 // constructor that takes an BindState<>*. In the context of the constructor,
250 // the static type of this BindState<> pointer uniquely identifies the
254 // Callback's constructor takes the BindState<>* that has the full static type
257 // function, and upcasting the state of BindState<>* to a
261 // To BindState<> objects are created inside the Bind() functions.
266 // - Creating the BindState storing the bound parameters
360 struct BindState;
374 internal::BindState<Runnable, BindRunType, BoundArgsType...>* bind_state)
380 &internal::BindState<Runnable, BindRunType, BoundArgsType...>
bind_internal.h 62 // BindState<> -- Stores the curried parameters, and is the main entry point
64 // There are ARITY BindState types.
355 // BindState<>
367 struct BindState;
373 struct BindState<Runnable, R(Args...), BoundArgs...> final
376 using StorageType = BindState<Runnable, R(Args...), BoundArgs...>;
404 BindState(const Runnable& runnable, const BoundArgs&... bound_args)
415 ~BindState() {}
418 delete static_cast<BindState*>(self);
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 71 struct BindState;
74 struct BindState<void(void*)> {
83 Callback(BindState<RunType> bind_state) {
84 BindState<RunType>::Run();
90 return Callback(BindState<void(void*)>());
  /external/webrtc/webrtc/p2p/base/
turnport.cc 135 enum BindState { STATE_UNBOUND, STATE_BINDING, STATE_BOUND };
146 BindState state() const { return state_; }
174 BindState state_;
    [all...]

Completed in 654 milliseconds