Home
last modified time | relevance | path

Searched defs:delegate (Results 1 – 25 of 489) sorted by relevance

12345678910>>...20

/external/guava/guava/src/com/google/common/util/concurrent/
DForwardingListenableFuture.java43 protected abstract ListenableFuture<V> delegate(); in delegate() method in ForwardingListenableFuture
63 private final ListenableFuture<V> delegate; field in ForwardingListenableFuture.SimpleForwardingListenableFuture
65 protected SimpleForwardingListenableFuture(ListenableFuture<V> delegate) { in SimpleForwardingListenableFuture()
70 protected final ListenableFuture<V> delegate() { in delegate() method in ForwardingListenableFuture.SimpleForwardingListenableFuture
DForwardingCheckedFuture.java55 protected abstract CheckedFuture<V, X> delegate(); in delegate() method in ForwardingCheckedFuture
67 private final CheckedFuture<V, X> delegate; field in ForwardingCheckedFuture.SimpleForwardingCheckedFuture
69 protected SimpleForwardingCheckedFuture(CheckedFuture<V, X> delegate) { in SimpleForwardingCheckedFuture()
74 protected final CheckedFuture<V, X> delegate() { in delegate() method in ForwardingCheckedFuture.SimpleForwardingCheckedFuture
DForwardingFuture.java44 @Override protected abstract Future<V> delegate(); in delegate() method in ForwardingFuture
84 private final Future<V> delegate; field in ForwardingFuture.SimpleForwardingFuture
86 protected SimpleForwardingFuture(Future<V> delegate) { in SimpleForwardingFuture()
91 protected final Future<V> delegate() { in delegate() method in ForwardingFuture.SimpleForwardingFuture
DJdkFutureAdapters.java107 private final Future<V> delegate; field in JdkFutureAdapters.ListenableFutureAdapter
109 ListenableFutureAdapter(Future<V> delegate) { in ListenableFutureAdapter()
113 ListenableFutureAdapter(Future<V> delegate, Executor adapterExecutor) { in ListenableFutureAdapter()
119 protected Future<V> delegate() { in delegate() method in JdkFutureAdapters.ListenableFutureAdapter
/external/guava/guava/src/com/google/common/collect/
DConstraints.java87 private final Collection<E> delegate; field in Constraints.ConstrainedCollection
91 Collection<E> delegate, Constraint<? super E> constraint) { in ConstrainedCollection()
95 @Override protected Collection<E> delegate() { in delegate() method in Constraints.ConstrainedCollection
126 private final Set<E> delegate; field in Constraints.ConstrainedSet
129 public ConstrainedSet(Set<E> delegate, Constraint<? super E> constraint) { in ConstrainedSet()
133 @Override protected Set<E> delegate() { in delegate() method in Constraints.ConstrainedSet
164 final SortedSet<E> delegate; field in Constraints.ConstrainedSortedSet
168 SortedSet<E> delegate, Constraint<? super E> constraint) { in ConstrainedSortedSet()
172 @Override protected SortedSet<E> delegate() { in delegate() method in Constraints.ConstrainedSortedSet
217 final List<E> delegate; field in Constraints.ConstrainedList
[all …]
DRegularImmutableBiMap.java29 final transient ImmutableMap<K, V> delegate; field in RegularImmutableBiMap
32 RegularImmutableBiMap(ImmutableMap<K, V> delegate) { in RegularImmutableBiMap()
43 RegularImmutableBiMap(ImmutableMap<K, V> delegate, in RegularImmutableBiMap()
49 @Override ImmutableMap<K, V> delegate() { in delegate() method in RegularImmutableBiMap
DWellBehavedMap.java35 private final Map<K, V> delegate; field in WellBehavedMap
38 private WellBehavedMap(Map<K, V> delegate) { in WellBehavedMap()
48 static <K, V> WellBehavedMap<K, V> wrap(Map<K, V> delegate) { in wrap()
52 @Override protected Map<K, V> delegate() { in delegate() method in WellBehavedMap
DImmutableEnumSet.java42 private final transient EnumSet<E> delegate; field in ImmutableEnumSet
44 ImmutableEnumSet(EnumSet<E> delegate) { in ImmutableEnumSet()
106 final EnumSet<E> delegate; field in ImmutableEnumSet.EnumSerializedForm
107 EnumSerializedForm(EnumSet<E> delegate) { in EnumSerializedForm()
DSynchronized.java59 final Object delegate; field in Synchronized.SynchronizedObject
62 SynchronizedObject(Object delegate, @Nullable Object mutex) { in SynchronizedObject()
67 Object delegate() { in delegate() method in Synchronized.SynchronizedObject
103 Collection<E> delegate, @Nullable Object mutex) { in SynchronizedCollection()
108 @Override Collection<E> delegate() { in delegate() method in Synchronized.SynchronizedCollection
211 SynchronizedSet(Set<E> delegate, @Nullable Object mutex) { in SynchronizedSet()
215 @Override Set<E> delegate() { in delegate() method in Synchronized.SynchronizedSet
244 SynchronizedSortedSet(SortedSet<E> delegate, @Nullable Object mutex) { in SynchronizedSortedSet()
248 @Override SortedSet<E> delegate() { in delegate() method in Synchronized.SynchronizedSortedSet
305 SynchronizedList(List<E> delegate, @Nullable Object mutex) { in SynchronizedList()
[all …]
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
DWrapperTester.java39 public abstract OutputStream create(OutputStream delegate) throws Exception; in create()
81 private ClosableByteArrayOutputStream delegate; field in WrapperTester.WrapperSinkTester
108 FailOnFlushOutputStream delegate = new FailOnFlushOutputStream(); in wrapperTestFlushThrowsViaFlushSuppressed() local
117 FailOnFlushOutputStream delegate = new FailOnFlushOutputStream(); in wrapperTestFlushThrowsViaCloseSuppressed() local
126 FailOnFlushOutputStream delegate = new FailOnFlushOutputStream(); in wrapperTestFlushThrowsViaFlush() local
142 FailOnFlushOutputStream delegate = new FailOnFlushOutputStream(); in wrapperTestFlushThrowsViaClose() local
164 FailOnCloseOutputStream delegate = new FailOnCloseOutputStream(); in wrapperTestCloseThrows() local
176 FailOnCloseOutputStream delegate = new FailOnCloseOutputStream(); in wrapperTestCloseThrowsSuppressed() local
DCharWrapperTester.java38 public abstract Writer create(Writer delegate) throws Exception; in create()
80 private ClosableStringWriter delegate; field in CharWrapperTester.WrapperSinkTester
107 FailOnFlushWriter delegate = new FailOnFlushWriter(); in wrapperTestFlushThrowsViaFlushSuppressed() local
116 FailOnFlushWriter delegate = new FailOnFlushWriter(); in wrapperTestFlushThrowsViaCloseSuppressed() local
125 FailOnFlushWriter delegate = new FailOnFlushWriter(); in wrapperTestFlushThrowsViaFlush() local
141 FailOnFlushWriter delegate = new FailOnFlushWriter(); in wrapperTestFlushThrowsViaClose() local
163 FailOnCloseWriter delegate = new FailOnCloseWriter(); in wrapperTestCloseThrows() local
175 FailOnCloseWriter delegate = new FailOnCloseWriter(); in wrapperTestCloseThrowsSuppressed() local
/external/guava/guava/src/com/google/common/base/
DSuppliers.java85 public static <T> Supplier<T> memoize(Supplier<T> delegate) { in memoize()
93 final Supplier<T> delegate; field in Suppliers.MemoizingSupplier
99 MemoizingSupplier(Supplier<T> delegate) { in MemoizingSupplier()
141 Supplier<T> delegate, long duration, TimeUnit unit) { in memoizeWithExpiration()
147 final Supplier<T> delegate; field in Suppliers.ExpiringMemoizingSupplier
154 Supplier<T> delegate, long duration, TimeUnit unit) { in ExpiringMemoizingSupplier()
214 public static <T> Supplier<T> synchronizedSupplier(Supplier<T> delegate) { in synchronizedSupplier()
220 final Supplier<T> delegate; field in Suppliers.ThreadSafeSupplier
222 ThreadSafeSupplier(Supplier<T> delegate) { in ThreadSafeSupplier()
/external/guava/guava/src/com/google/common/cache/
DForwardingLoadingCache.java44 protected abstract LoadingCache<K, V> delegate(); in delegate() method in ForwardingLoadingCache
80 private final LoadingCache<K, V> delegate; field in ForwardingLoadingCache.SimpleForwardingLoadingCache
82 protected SimpleForwardingLoadingCache(LoadingCache<K, V> delegate) { in SimpleForwardingLoadingCache()
87 protected final LoadingCache<K, V> delegate() { in delegate() method in ForwardingLoadingCache.SimpleForwardingLoadingCache
/external/guava/guava-tests/test/com/google/common/io/
DCheckCloseSupplier.java42 private final InputSupplier<? extends T> delegate; field in CheckCloseSupplier.Input
44 public Input(InputSupplier<? extends T> delegate) { in Input()
55 private final OutputSupplier<? extends T> delegate; field in CheckCloseSupplier.Output
57 public Output(OutputSupplier<? extends T> delegate) { in Output()
/external/chromium/chrome/browser/instant/
Dinstant_loader_manager_unittest.cc62 InstantLoaderDelegateImpl delegate; in TEST_F() local
75 InstantLoaderDelegateImpl delegate; in TEST_F() local
88 InstantLoaderDelegateImpl delegate; in TEST_F() local
102 InstantLoaderDelegateImpl delegate; in TEST_F() local
117 InstantLoaderDelegateImpl delegate; in TEST_F() local
132 InstantLoaderDelegateImpl delegate; in TEST_F() local
158 InstantLoaderDelegateImpl delegate; in TEST_F() local
171 InstantLoaderDelegateImpl delegate; in TEST_F() local
195 InstantLoaderDelegateImpl delegate; in TEST_F() local
222 InstantLoaderDelegateImpl delegate; in TEST_F() local
[all …]
/external/chromium/chrome/browser/chromeos/login/
Dview_screen.h55 explicit DefaultViewScreen(WizardScreenDelegate* delegate) in DefaultViewScreen()
57 DefaultViewScreen(WizardScreenDelegate* delegate, int width, int height) in DefaultViewScreen()
67 ViewScreen<V>::ViewScreen(WizardScreenDelegate* delegate) in ViewScreen()
75 ViewScreen<V>::ViewScreen(WizardScreenDelegate* delegate, int width, int height) in ViewScreen()
/external/chromium/chrome/browser/ui/gtk/infobars/
Dinfobar_container_gtk.cc31 InfoBarDelegate* delegate = in AnimateClosingForDelegate() local
48 InfoBarDelegate* delegate = in ClosingForDelegate() local
108 void InfoBarContainerGtk::RemoveDelegate(InfoBarDelegate* delegate) { in RemoveDelegate()
143 InfoBarDelegate* delegate = tab_contents_->GetInfoBarDelegateAt(i); in UpdateInfoBars() local
148 void InfoBarContainerGtk::ShowArrowForDelegate(InfoBarDelegate* delegate, in ShowArrowForDelegate()
178 void InfoBarContainerGtk::AddInfoBar(InfoBarDelegate* delegate, bool animate) { in AddInfoBar()
193 void InfoBarContainerGtk::RemoveInfoBar(InfoBarDelegate* delegate, in RemoveInfoBar()
/external/chromium/chrome/browser/policy/
Ddevice_management_service_browsertest.cc100 DeviceRegisterResponseDelegateMock delegate; in IN_PROC_BROWSER_TEST_F() local
113 DevicePolicyResponseDelegateMock delegate; in IN_PROC_BROWSER_TEST_F() local
129 DeviceUnregisterResponseDelegateMock delegate; in IN_PROC_BROWSER_TEST_F() local
151 DeviceRegisterResponseDelegateMock delegate; in IN_PROC_BROWSER_TEST_F() local
164 DevicePolicyResponseDelegateMock delegate; in IN_PROC_BROWSER_TEST_F() local
177 DeviceUnregisterResponseDelegateMock delegate; in IN_PROC_BROWSER_TEST_F() local
/external/chromium/base/threading/
Dplatform_thread_posix.cc41 PlatformThread::Delegate* delegate; member
47 PlatformThread::Delegate* delegate = thread_params->delegate; in ThreadFunc() local
56 PlatformThread::Delegate* delegate, in CreateThread()
201 bool PlatformThread::Create(size_t stack_size, Delegate* delegate, in Create()
208 bool PlatformThread::CreateNonJoinable(size_t stack_size, Delegate* delegate) { in CreateNonJoinable()
Dplatform_thread_win.cc27 PlatformThread::Delegate* delegate; member
33 PlatformThread::Delegate* delegate = thread_params->delegate; in ThreadFunc() local
45 PlatformThread::Delegate* delegate, in CreateThreadInternal()
116 bool PlatformThread::Create(size_t stack_size, Delegate* delegate, in Create()
123 bool PlatformThread::CreateNonJoinable(size_t stack_size, Delegate* delegate) { in CreateNonJoinable()
/external/chromium/base/files/
Dfile_path_watcher_browsertest.cc47 void OnChange(TestDelegate* delegate) { in OnChange()
54 void Register(TestDelegate* delegate) { in Register()
67 void RecordChange(TestDelegate* delegate) { in RecordChange()
120 FilePathWatcher::Delegate* delegate, in SetupWatchTask()
177 FilePathWatcher::Delegate* delegate) WARN_UNUSED_RESULT { in SetupWatch()
207 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() local
219 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() local
233 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() local
245 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() local
289 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() local
[all …]
/external/webkit/Source/WebKit/win/
DWebDownloadCurl.cpp59 …, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate) in init()
64 void WebDownload::init(const KURL& url, IWebDownloadDelegate* delegate) in init()
73 /* [in] */ IWebDownloadDelegate* delegate) in initWithRequest()
81 /* [in] */ IWebDownloadDelegate* delegate) in initToResumeWithBundle()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DReserializingTestCollectionGenerator.java36 private final TestCollectionGenerator<E> delegate; field in ReserializingTestCollectionGenerator
38 ReserializingTestCollectionGenerator(TestCollectionGenerator<E> delegate) { in ReserializingTestCollectionGenerator()
43 TestCollectionGenerator<E> delegate) { in newInstance()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DSynchronized.java56 final Object delegate; field in Synchronized.SynchronizedObject
59 SynchronizedObject(Object delegate, @Nullable Object mutex) { in SynchronizedObject()
64 Object delegate() { in delegate() method in Synchronized.SynchronizedObject
90 Collection<E> delegate, @Nullable Object mutex) { in SynchronizedCollection()
95 @Override Collection<E> delegate() { in delegate() method in Synchronized.SynchronizedCollection
198 SynchronizedSet(Set<E> delegate, @Nullable Object mutex) { in SynchronizedSet()
202 @Override Set<E> delegate() { in delegate() method in Synchronized.SynchronizedSet
231 SynchronizedSortedSet(SortedSet<E> delegate, @Nullable Object mutex) { in SynchronizedSortedSet()
235 @Override SortedSet<E> delegate() { in delegate() method in Synchronized.SynchronizedSortedSet
292 SynchronizedList(List<E> delegate, @Nullable Object mutex) { in SynchronizedList()
[all …]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
DNamedThreadFactory.java50 private ThreadFactory delegate; field in NamedThreadFactory
62 public NamedThreadFactory( String name, ThreadFactory delegate ) in NamedThreadFactory()
67 public NamedThreadFactory( String name, boolean daemon, ThreadFactory delegate ) in NamedThreadFactory()

12345678910>>...20