/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
D | DelegatedData.java | 50 protected Data getDelegate() { in getDelegate() method in DelegatedData 56 data = ((DelegatedData) data).getDelegate(); in unwrap() 63 return getDelegate().getName(); in getName() 68 return getDelegate().getValue(); in getValue() 73 return getDelegate().getIntValue(); in getIntValue() 78 return getDelegate().getBooleanValue(); in getBooleanValue() 83 getDelegate().setValue(value); in setValue() 88 return getDelegate().getFullPath(); in getFullPath() 93 getDelegate().setAttribute(key, value); in setAttribute() 98 return getDelegate().getAttribute(key); in getAttribute() [all …]
|
D | UnmodifiableData.java | 81 return new UnmodifiableIterator(getDelegate().getChildren().iterator()); in newChildIterator()
|
/external/guava/guava/src/com/google/common/collect/ |
D | FluentIterable.java | 127 private Iterable<E> getDelegate() { in getDelegate() method in FluentIterable 337 return Iterables.toString(getDelegate()); 346 return Iterables.size(getDelegate()); 356 return Iterables.contains(getDelegate(), target); 377 return from(Iterables.cycle(getDelegate())); 393 return FluentIterable.concat(getDelegate(), other); 406 return FluentIterable.concat(getDelegate(), Arrays.asList(elements)); 416 return from(Iterables.filter(getDelegate(), predicate)); 434 return from(Iterables.filter(getDelegate(), type)); 443 return Iterables.any(getDelegate(), predicate); [all …]
|
D | AbstractMapBasedMultimap.java | 335 this.ancestorDelegate = (ancestor == null) ? null : ancestor.getDelegate(); in WrappedCollection() 348 if (ancestor.getDelegate() != ancestorDelegate) { in refreshIfEmpty() 416 Collection<V> getDelegate() { in getDelegate() method in AbstractMapBasedMultimap.WrappedCollection 621 return (SortedSet<V>) getDelegate(); in getSortedSetDelegate() 751 return (List<V>) getDelegate(); in getListDelegate() 762 int newSize = getDelegate().size(); in addAll() 786 boolean wasEmpty = getDelegate().isEmpty(); in add()
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | FluentIterable.java | 130 private Iterable<E> getDelegate() { in getDelegate() method in FluentIterable 340 return Iterables.toString(getDelegate()); 349 return Iterables.size(getDelegate()); 359 return Iterables.contains(getDelegate(), target); 380 return from(Iterables.cycle(getDelegate())); 396 return FluentIterable.concat(getDelegate(), other); 409 return FluentIterable.concat(getDelegate(), Arrays.asList(elements)); 419 return from(Iterables.filter(getDelegate(), predicate)); 437 return from(Iterables.filter(getDelegate(), type)); 446 return Iterables.any(getDelegate(), predicate); [all …]
|
D | AbstractMapBasedMultimap.java | 334 this.ancestorDelegate = (ancestor == null) ? null : ancestor.getDelegate(); in WrappedCollection() 347 if (ancestor.getDelegate() != ancestorDelegate) { in refreshIfEmpty() 415 Collection<V> getDelegate() { in getDelegate() method in AbstractMapBasedMultimap.WrappedCollection 615 return (SortedSet<V>) getDelegate(); in getSortedSetDelegate() 745 return (List<V>) getDelegate(); in getListDelegate() 756 int newSize = getDelegate().size(); in addAll() 780 boolean wasEmpty = getDelegate().isEmpty(); in add()
|
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/testing/ |
D | OpaqueProvider.java | 110 delegate.initSign(opaqueKey.getDelegate()); in engineInitSign() 207 delegate.init(opmode, ((DelegatingPrivateKey) key).getDelegate(), random); in engineInit() 223 delegate.init(opmode, ((DelegatingPrivateKey) key).getDelegate(), params, random); in engineInit() 231 delegate.init(opmode, ((DelegatingPrivateKey) key).getDelegate(), params, random); in engineInit() 259 private interface DelegatingPrivateKey { PrivateKey getDelegate(); } in getDelegate() method 270 public PrivateKey getDelegate() { in getDelegate() method in OpaqueProvider.OpaqueDelegatingECPrivateKey 337 public PrivateKey getDelegate() { in getDelegate() method in OpaqueProvider.OpaqueDelegatingRSAPrivateKey
|
/external/conscrypt/testing/src/main/java/org/conscrypt/testing/ |
D | OpaqueProvider.java | 105 delegate.initSign(opaqueKey.getDelegate()); in engineInitSign() 196 delegate.init(opmode, ((DelegatingPrivateKey) key).getDelegate(), random); in engineInit() 212 delegate.init(opmode, ((DelegatingPrivateKey) key).getDelegate(), params, random); in engineInit() 220 delegate.init(opmode, ((DelegatingPrivateKey) key).getDelegate(), params, random); in engineInit() 248 private interface DelegatingPrivateKey { PrivateKey getDelegate(); } in getDelegate() method 259 public PrivateKey getDelegate() { in getDelegate() method in OpaqueProvider.OpaqueDelegatingECPrivateKey 326 public PrivateKey getDelegate() { in getDelegate() method in OpaqueProvider.OpaqueDelegatingRSAPrivateKey
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
D | AutoConfiguredLoadBalancerFactory.java | 106 getDelegate().handleResolvedAddressGroups(servers, attributes); in handleResolvedAddressGroups() 111 getDelegate().handleNameResolutionError(error); in handleNameResolutionError() 116 getDelegate().handleSubchannelState(subchannel, stateInfo); in handleSubchannelState() 126 LoadBalancer getDelegate() { in getDelegate() method in AutoConfiguredLoadBalancerFactory.AutoConfiguredLoadBalancer
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
D | AutoConfiguredLoadBalancerFactoryTest.java | 70 assertThat(lb.getDelegate().getClass().getName()).contains("PickFirst"); in defaultIsPickFirst() 128 LoadBalancer oldDelegate = lb.getDelegate(); in handleResolvedAddressGroups_keepOldBalancer() 132 assertThat(lb.getDelegate()).isSameAs(oldDelegate); in handleResolvedAddressGroups_keepOldBalancer()
|
/external/dagger2/java/dagger/internal/ |
D | DelegateFactory.java | 66 Provider<T> getDelegate() { in getDelegate() method in DelegateFactory
|
D | AbstractMapFactory.java | 72 return putAll(asDelegateFactory.getDelegate()); in putAll()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowAssetInputStream.java | 41 abstract InputStream getDelegate(); in getDelegate() method in ShadowAssetInputStream
|
D | ShadowArscAssetInputStream.java | 24 InputStream getDelegate() { in getDelegate() method in ShadowArscAssetInputStream
|
D | ShadowLegacyAssetInputStream.java | 23 InputStream getDelegate() { in getDelegate() method in ShadowLegacyAssetInputStream
|
D | ShadowBitmapFactory.java | 110 if (sais.getDelegate() != null) { in decodeStream() 111 is = sais.getDelegate(); in decodeStream()
|
/external/mockito/src/main/java/org/mockito/internal/verification/ |
D | VerificationWrapperInOrderWrapper.java | 45 … wrapInOrder(verificationWrapper, verificationOverTime.getDelegate(), inOrder), in wrapInOrder()
|
D | VerificationOverTimeImpl.java | 140 public VerificationMode getDelegate() { in getDelegate() method in VerificationOverTimeImpl
|
/external/guice/core/src/com/google/inject/spi/ |
D | MembersInjectorLookup.java | 83 public MembersInjector<T> getDelegate() { in getDelegate() method in MembersInjectorLookup
|
D | ProviderLookup.java | 93 public Provider<T> getDelegate() { in getDelegate() method in ProviderLookup
|
/external/dagger2/java/dagger/producers/internal/ |
D | DelegateProducer.java | 65 CancellableProducer<T> getDelegate() { in getDelegate() method in DelegateProducer
|
D | AbstractMapProducer.java | 84 return putAll(asDelegateProducer.getDelegate()); in putAll()
|
/external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/ |
D | CacheAdapter.java | 42 public ResponseCache getDelegate() { in getDelegate() method in CacheAdapter
|
/external/okhttp/repackaged/okhttp-android-support/src/main/java/com/android/okhttp/internal/huc/ |
D | CacheAdapter.java | 44 public ResponseCache getDelegate() { in getDelegate() method in CacheAdapter
|
/external/easymock/src/org/easymock/internal/ |
D | ObjectMethodsFilter.java | 86 public MockInvocationHandler getDelegate() { in getDelegate() method in ObjectMethodsFilter
|