HomeSort by relevance Sort by last modified time
    Searched refs:Delegate (Results 26 - 50 of 135) sorted by null

12 3 4 5 6

  /external/libchrome/base/trace_event/
trace_sampling_thread.h 19 class TraceSamplingThread : public PlatformThread::Delegate {
24 // Implementation of PlatformThread::Delegate:
  /external/libchrome/components/timers/
alarm_timer_chromeos.h 57 // Will be called by the delegate to indicate that the timer has fired and
64 // Delegate that will manage actually setting the timer.
65 class Delegate;
66 scoped_refptr<Delegate> delegate_;
74 // supports being woken up from suspend until the delegate actually tries to
  /external/llvm/include/llvm/CodeGen/
LiveRangeEdit.h 37 class LiveRangeEdit : private MachineRegisterInfo::Delegate {
40 class Delegate {
57 virtual ~Delegate() {}
67 Delegate *const TheDelegate;
121 Delegate *delegate = nullptr)
124 TheDelegate(delegate), FirstNew(newRegs.size()),
211 /// eraseVirtReg - Notify the delegate that Reg is no longer in use, and try
  /system/bt/service/ipc/binder/
remote_callback_map.h 43 // The Delegate interface is used to notify when a registered callback is
46 class Delegate {
48 virtual ~Delegate() = default;
61 // An optional |delegate| can be passed which will be assocated with the given
62 // key/value pair. |delegate| must outlive this map.
65 Delegate* delegate = nullptr);
89 Delegate* delegate);
100 Delegate* delegate_; // wea
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
LinearLayoutManagerSavedStateTest.java 53 mPostLayoutOperation.mLayoutManagerDelegate = new Delegate<WrappedLinearLayoutManager>() {
59 mPostLayoutOperation.mTestAdapterDelegate = new Delegate<TestAdapter>() {
65 mPostRestoreOperation.mLayoutManagerDelegate = new Delegate<WrappedLinearLayoutManager>() {
71 mPostRestoreOperation.mTestAdapterDelegate = new Delegate<TestAdapter>() {
352 private Delegate<WrappedLinearLayoutManager> mLayoutManagerDelegate;
353 private Delegate<TestAdapter> mTestAdapterDelegate;
387 private Delegate<WrappedLinearLayoutManager> mLayoutManagerDelegate;
388 private Delegate<TestAdapter> mTestAdapterDelegate;
415 private interface Delegate<T> {
  /external/libchrome/base/message_loop/
message_pump_default.cc 25 void MessagePumpDefault::Run(Delegate* delegate) {
33 bool did_work = delegate->DoWork();
37 did_work |= delegate->DoDelayedWork(&delayed_work_time_);
44 did_work = delegate->DoIdleWork();
65 // other than service each delegate method.
message_pump_libevent.h 120 Watcher *delegate);
126 void Run(Delegate* delegate) override;
  /external/libchrome/base/synchronization/
waitable_event_watcher.h 63 : public win::ObjectWatcher::Delegate {
lock_unittest.cc 18 class BasicLockTestThread : public PlatformThread::Delegate {
93 class TryLockTestThread : public PlatformThread::Delegate {
151 class MutexLockTestThread : public PlatformThread::Delegate {
  /external/libchrome/base/threading/
simple_thread.cc 69 DelegateSimpleThread::DelegateSimpleThread(Delegate* delegate,
72 delegate_(delegate) {
75 DelegateSimpleThread::DelegateSimpleThread(Delegate* delegate,
79 delegate_(delegate) {
86 DCHECK(delegate_) << "Tried to call Run without a delegate (called twice?)";
129 void DelegateSimpleThreadPool::AddWork(Delegate* delegate, int repeat_count) {
132 delegates_.push(delegate);
    [all...]
simple_thread_unittest.cc 15 class SetIntRunner : public DelegateSimpleThread::Delegate {
27 class WaitEventRunner : public DelegateSimpleThread::Delegate {
41 class SeqRunner : public DelegateSimpleThread::Delegate {
53 class VerifyPoolRunner : public DelegateSimpleThread::Delegate {
platform_thread_posix.cc 40 : delegate(NULL), joinable(false), priority(ThreadPriority::NORMAL) {}
42 PlatformThread::Delegate* delegate; member in struct:base::__anon15266::ThreadParams
50 PlatformThread::Delegate* delegate = nullptr; local
55 delegate = thread_params->delegate;
67 delegate->ThreadMain();
79 PlatformThread::Delegate* delegate,
    [all...]
thread_collision_warner_unittest.cc 148 class QueueUser : public base::DelegateSimpleThread::Delegate {
205 class QueueUser : public base::DelegateSimpleThread::Delegate {
264 class QueueUser : public base::DelegateSimpleThread::Delegate {
337 class QueueUser : public base::DelegateSimpleThread::Delegate {
  /system/bt/service/ipc/
ipc_handler_linux.h 39 IPCManager::Delegate* delegate);
56 // Notifies the delegate that we started or stoppedlistening for incoming
ipc_manager.cpp 38 bool IPCManager::Start(Type type, Delegate* delegate) {
46 linux_handler_ = new IPCHandlerLinux(adapter_, delegate);
59 binder_handler_ = new IPCHandlerBinder(adapter_, delegate);
  /libcore/ojluni/src/main/java/java/text/
FieldPosition.java 198 * with the FieldPosition. When the delegate is notified of the same
203 return new Delegate();
277 private class Delegate implements Format.FieldDelegate {
  /libcore/ojluni/src/main/java/java/security/
MessageDigest.java 193 MessageDigest delegate = local
194 new Delegate((MessageDigestSpi)objs[0], algorithm);
195 delegate.provider = (Provider)objs[1];
196 return delegate;
248 MessageDigest delegate = local
249 new Delegate((MessageDigestSpi)objs[0], algorithm);
250 delegate.provider = (Provider)objs[1];
251 return delegate;
296 MessageDigest delegate = local
297 new Delegate((MessageDigestSpi)objs[0], algorithm)
    [all...]
KeyPairGenerator.java 186 kpg = new Delegate(spi, algorithm);
238 return new Delegate(instance, t, algorithm);
338 // empty, overridden in Delegate
382 // of Delegate, in which case initialize(keysize, random) is
454 // of Delegate, in which case initialize(params, random) is
503 // of Delegate, in which case generateKeyPair is
548 private static final class Delegate extends KeyPairGenerator {
550 // The provider implementation (delegate)
567 Delegate(KeyPairGeneratorSpi spi, String algorithm) {
572 Delegate(Instance instance, Iterator<Service> serviceIterator
    [all...]
  /system/bt/service/
gatt_server.h 41 // Delegate interface is used to handle incoming requests and confirmations
43 class Delegate {
45 Delegate() = default;
46 virtual ~Delegate() = default;
74 // immediately as this is a "Prepared Write Request". Instead, the Delegate
90 // immediately as this is a "Prepared Write Request". Instead, the Delegate
101 // is true, then the Delegate should commit all previously prepared writes.
102 // Otherwise, all prepared writes should be aborted. The Delegate should
110 DISALLOW_COPY_AND_ASSIGN(Delegate);
116 // Assigns a delegate to this instance. |delegate| must out-live thi
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarDrawerToggle.java 67 * Allows an implementing Activity to return an {@link ActionBarDrawerToggle.Delegate} to use
73 * @return Delegate to use for ActionBarDrawableToggles, or null if the Activity
77 Delegate getDrawerToggleDelegate();
80 public interface Delegate {
114 private final Delegate mActivityImpl;
502 * Delegate if SDK version is between honeycomb and JBMR2
504 private static class HoneycombDelegate implements Delegate {
553 * Delegate if SDK version is JB MR2 or newer
555 private static class JellybeanMr2Delegate implements Delegate {
612 static class ToolbarCompatDelegate implements Delegate {
    [all...]
  /external/sfntly/cpp/src/test/
lock_test.cc 27 class BasicLockTestThread : public PlatformThread::Delegate {
104 class TryLockTestThread : public PlatformThread::Delegate {
163 class MutexLockTestThread : public PlatformThread::Delegate {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoPageBottomControls.java 34 public interface Delegate {
41 private Delegate mDelegate;
60 public PhotoPageBottomControls(Delegate delegate, Context context, RelativeLayout layout) {
61 mDelegate = delegate;
  /external/pdfium/testing/
embedder_test_timer_handling_delegate.h 16 class EmbedderTestTimerHandlingDelegate : public EmbedderTest::Delegate {
  /frameworks/support/v4/java/android/support/v4/media/
VolumeProviderCompat.java 168 mControlType, mMaxVolume, mCurrentVolume, new VolumeProviderCompatApi21.Delegate() {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailTable.java 34 * Interface that the voicemail content provider uses to delegate database level operations
37 public interface Delegate {
50 * A helper interface that an implementation of {@link Delegate} uses to access common

Completed in 316 milliseconds

12 3 4 5 6