Searched refs:Delegate (Results 1 - 25 of 87) sorted by relevance

1234

/external/libchrome/base/threading/
H A Dsimple_thread.h15 // a new thread, and execute the Delegate's virtual Run() in this new thread
21 // Start() having been called (and a thread never created). The Delegate
29 // class MyThreadRunner : public DelegateSimpleThread::Delegate { ... };
59 class BASE_EXPORT SimpleThread : public PlatformThread::Delegate {
112 // Overridden from PlatformThread::Delegate:
127 class BASE_EXPORT Delegate { class in class:base::DelegateSimpleThread
129 Delegate() { } function in class:base::DelegateSimpleThread::Delegate
130 virtual ~Delegate() { }
134 DelegateSimpleThread(Delegate* delegate,
136 DelegateSimpleThread(Delegate* delegat
159 typedef DelegateSimpleThread::Delegate Delegate; typedef in class:base::DelegateSimpleThreadPool
[all...]
H A Dplatform_thread.h118 class BASE_EXPORT Delegate { class in class:base::PlatformThread
123 virtual ~Delegate() {}
159 // the Delegate object outlives the thread.
161 Delegate* delegate,
169 static bool CreateWithPriority(size_t stack_size, Delegate* delegate,
176 static bool CreateNonJoinable(size_t stack_size, Delegate* delegate);
/external/libchrome/base/message_loop/
H A Dmessage_pump.h20 class BASE_EXPORT Delegate { class in class:base::MessagePump
22 virtual ~Delegate() {}
108 virtual void Run(Delegate* delegate) = 0;
H A Dmessage_pump_mac.h92 void Run(Delegate* delegate) override;
93 virtual void DoRun(Delegate* delegate) = 0;
107 void SetDelegate(Delegate* delegate);
186 // (weak) Delegate passed as an argument to the innermost Run call.
187 Delegate* delegate_;
226 void DoRun(Delegate* delegate) override;
245 void DoRun(Delegate* delegate) override;
268 void DoRun(Delegate* delegate) override;
273 virtual void Attach(Delegate* delegate);
288 void DoRun(Delegate* delegat
[all...]
H A Dmessage_pump_default.h22 void Run(Delegate* delegate) override;
H A Dmessage_pump_glib.h40 void Run(Delegate* delegate) override;
/external/sfntly/cpp/src/test/
H A Dplatform_thread.h45 class Delegate { class in class:sfntly::PlatformThread
47 virtual ~Delegate() {}
60 // the Delegate object outlives the thread.
61 static bool Create(Delegate* delegate, PlatformThreadHandle* thread_handle);
H A Dplatform_thread.cc24 PlatformThread::Delegate* delegate =
25 static_cast<PlatformThread::Delegate*>(params);
31 bool PlatformThread::Create(Delegate* delegate,
58 PlatformThread::Delegate* delegate =
59 static_cast<PlatformThread::Delegate*>(params);
65 bool PlatformThread::Create(Delegate* delegate,
/external/pdfium/core/fxcodec/codec/
H A Dicodec_bmpmodule.h19 class Delegate { class in class:ICodec_BmpModule
44 Delegate* GetDelegate() const { return m_pDelegate; }
45 void SetDelegate(Delegate* pDelegate) { m_pDelegate = pDelegate; }
48 Delegate* m_pDelegate;
H A Dicodec_pngmodule.h19 class Delegate { class in class:ICodec_PngModule
40 Delegate* GetDelegate() const { return m_pDelegate; }
41 void SetDelegate(Delegate* delegate) { m_pDelegate = delegate; }
44 Delegate* m_pDelegate;
H A Dicodec_gifmodule.h20 class Delegate { class in class:ICodec_GifModule
61 Delegate* GetDelegate() const { return m_pDelegate; }
62 void SetDelegate(Delegate* pDelegate) { m_pDelegate = pDelegate; }
65 Delegate* m_pDelegate;
/external/libchrome/components/timers/
H A Dalarm_timer_chromeos.cc25 // This class represents the IO thread that the AlarmTimer::Delegate may use for
93 class AlarmTimer::Delegate class in class:timers::AlarmTimer
94 : public base::RefCountedThreadSafe<AlarmTimer::Delegate>,
97 // Construct a Delegate for the AlarmTimer. It should be safe to call
99 explicit Delegate(base::Closure on_timer_fired_callback);
123 friend class base::RefCountedThreadSafe<Delegate>;
124 ~Delegate() override;
159 DISALLOW_COPY_AND_ASSIGN(Delegate);
162 AlarmTimer::Delegate::Delegate(bas function in class:timers::AlarmTimer::Delegate
[all...]
H A Dalarm_timer_chromeos.h66 // Delegate that will manage actually setting the timer.
67 class Delegate;
68 scoped_refptr<Delegate> delegate_;
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DCVSymbolVisitor.h24 CVSymbolVisitor(SymbolVisitorDelegate *Delegate) : Delegate(Delegate) {} argument
53 uint32_t RecordOffset = Delegate ? Delegate->getRecordOffset(Data) : 0;
95 SymbolVisitorDelegate *Delegate; member in class:llvm::codeview::CVSymbolVisitor
/external/libmojo/base/message_loop/
H A Dmessage_pump_android.h28 void Run(Delegate* delegate) override;
33 virtual void Start(Delegate* delegate);
H A Dmessage_pump_android.cc28 base::MessagePump::Delegate* delegate =
29 reinterpret_cast<base::MessagePump::Delegate*>(native_delegate);
95 void MessagePumpForUI::Run(Delegate* delegate) {
100 void MessagePumpForUI::Start(Delegate* delegate) {
/external/pdfium/testing/
H A Dembedder_test_mock_delegate.h11 class EmbedderTestMockDelegate : public EmbedderTest::Delegate {
H A Dembedder_test.h32 class Delegate { class in class:EmbedderTest
34 virtual ~Delegate() {}
72 void SetDelegate(Delegate* delegate) {
117 Delegate* delegate_;
118 std::unique_ptr<Delegate> default_delegate_;
/external/jcommander/src/test/java/com/beust/jcommander/
H A DParametersDelegateTest.java124 class Delegate {
130 public Delegate delegate = new Delegate();
144 class Delegate {
150 public Delegate delegate = new Delegate();
183 class Delegate {
189 public Delegate d1 = new Delegate();
191 public Delegate d
[all...]
/external/jmdns/src/javax/jmdns/
H A DJmDNS.java25 public static interface Delegate { interface in class:JmDNS
422 public abstract Delegate getDelegate();
431 public abstract Delegate setDelegate(Delegate value);
/external/libchrome/base/trace_event/
H A Dtrace_sampling_thread.h19 class TraceSamplingThread : public PlatformThread::Delegate {
24 // Implementation of PlatformThread::Delegate:
/external/libmojo/mojo/edk/system/
H A Dbroker_host.h18 class BrokerHost : public Channel::Delegate,
29 // Channel::Delegate:
H A Dchannel.h183 // Delegate methods are called from the I/O task runner with which the Channel
185 class Delegate { class in class:mojo::edk::Channel
187 virtual ~Delegate() {}
205 Delegate* delegate,
213 // Delegate methods will no longer be invoked after this call.
216 // Begin processing I/O events. Delegate methods must only be invoked after
225 // Delegate::OnChannelError.
233 explicit Channel(Delegate* delegate);
283 Delegate* delegate_;
/external/llvm/include/llvm/CodeGen/
H A DLiveRangeEdit.h37 class LiveRangeEdit : private MachineRegisterInfo::Delegate {
40 class Delegate { class in class:llvm::LiveRangeEdit
57 virtual ~Delegate() {}
67 Delegate *const TheDelegate;
128 Delegate *delegate = nullptr,
/external/libchrome/base/synchronization/
H A Dwaitable_event_watcher.h63 : public win::ObjectWatcher::Delegate {

Completed in 2457 milliseconds

1234