Home
last modified time | relevance | path

Searched +defs:result +defs:delegate (Results 1 – 25 of 1293) sorted by relevance

12345678910>>...52

/aosp_15_r20/external/guava/guava-tests/test/com/google/common/reflect/
H A DInvokableTest.java258 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class); in testConstructor_parameters() local
272 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class); in testConstructor_call() local
279 Invokable<?, Prepender> delegate = in testConstructor_returning() local
287 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class); in testConstructor_invalidReturning() local
292 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_returnType() local
297 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_exceptionTypes() local
302 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_typeParameters() local
309 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_parameters() local
323 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_call() local
325 Iterable<String> result = in testStaticMethod_call() local
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/reflect/
H A DInvokableTest.java258 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class); in testConstructor_parameters() local
272 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class); in testConstructor_call() local
279 Invokable<?, Prepender> delegate = in testConstructor_returning() local
287 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class); in testConstructor_invalidReturning() local
292 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_returnType() local
297 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_exceptionTypes() local
302 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_typeParameters() local
309 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_parameters() local
323 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); in testStaticMethod_call() local
325 Iterable<String> result = in testStaticMethod_call() local
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/pki/
H A Dpath_builder_unittest.cc149 std::string *result) { in ReadTestPem()
159 std::shared_ptr<const ParsedCertificate> *result) { in ReadTestCert()
230 auto result = path_builder.Run(); in TEST_F() local
254 auto result = path_builder.Run(); in TEST_F() local
289 auto result = path_builder.Run(); in TEST_F() local
318 auto result = path_builder.Run(); in TEST_F() local
345 auto result = path_builder.Run(); in TEST_F() local
379 auto result = path_builder.Run(); in TEST_F() local
413 auto result = path_builder.Run(); in TEST_F() local
443 auto result = path_builder.Run(); in TEST_F() local
[all …]
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/
H A DMultimaps.java660 Multimap<K, V> unmodifiableMultimap(Multimap<K, V> delegate) { in unmodifiableMultimap()
674 public static <K, V> Multimap<K, V> unmodifiableMultimap(ImmutableMultimap<K, V> delegate) { in unmodifiableMultimap()
680 final Multimap<K, V> delegate; field in Multimaps.UnmodifiableMultimap
687 UnmodifiableMultimap(final Multimap<K, V> delegate) { in UnmodifiableMultimap()
692 protected Multimap<K, V> delegate() { in delegate() method in Multimaps.UnmodifiableMultimap
703 Map<K, Collection<V>> result = map; in asMap() local
716 Collection<Entry<K, V>> result = entries; in entries() local
730 Multiset<K> result = keys; in keys() local
739 Set<K> result = keySet; in keySet() local
778 Collection<V> result = values; in values() local
[all …]
H A DAbstractBiMap.java58 private transient Map<K, V> delegate; field in AbstractBiMap
76 protected Map<K, V> delegate() { in delegate() method in AbstractBiMap
215 Set<K> result = keySet; in keySet() local
222 protected Set<K> delegate() { in delegate() method in AbstractBiMap.KeySet
264 Set<V> result = valueSet; in values() local
273 protected Set<V> delegate() { in delegate() method in AbstractBiMap.ValueSet
303 Set<Entry<K, V>> result = entrySet; in entrySet() local
308 private final Entry<K, V> delegate; field in AbstractBiMap.BiMapEntry
310 BiMapEntry(Entry<K, V> delegate) { in BiMapEntry()
315 protected Entry<K, V> delegate() { in delegate() method in AbstractBiMap.BiMapEntry
[all …]
H A DTreeRangeSet.java55 TreeRangeSet<C> result = create(); in create() local
70 TreeRangeSet<C> result = create(); in create() local
84 Set<Range<C>> result = asRanges; in asRanges() local
90 Set<Range<C>> result = asDescendingSetOfRanges; in asDescendingSetOfRanges() local
98 final Collection<Range<C>> delegate; field in TreeRangeSet.AsRanges
100 AsRanges(Collection<Range<C>> delegate) { in AsRanges()
105 protected Collection<Range<C>> delegate() { in delegate() method in TreeRangeSet.AsRanges
280 RangeSet<C> result = complement; in complement() local
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/
H A DMultimaps.java659 Multimap<K, V> unmodifiableMultimap(Multimap<K, V> delegate) { in unmodifiableMultimap()
673 public static <K, V> Multimap<K, V> unmodifiableMultimap(ImmutableMultimap<K, V> delegate) { in unmodifiableMultimap()
679 final Multimap<K, V> delegate; field in Multimaps.UnmodifiableMultimap
686 UnmodifiableMultimap(final Multimap<K, V> delegate) { in UnmodifiableMultimap()
691 protected Multimap<K, V> delegate() { in delegate() method in Multimaps.UnmodifiableMultimap
702 Map<K, Collection<V>> result = map; in asMap() local
715 Collection<Entry<K, V>> result = entries; in entries() local
734 Multiset<K> result = keys; in keys() local
743 Set<K> result = keySet; in keySet() local
782 Collection<V> result = values; in values() local
[all …]
H A DAbstractBiMap.java59 private transient Map<K, V> delegate; field in AbstractBiMap
77 protected Map<K, V> delegate() { in delegate() method in AbstractBiMap
239 Set<K> result = keySet; in keySet() local
246 protected Set<K> delegate() { in delegate() method in AbstractBiMap.KeySet
288 Set<V> result = valueSet; in values() local
297 protected Set<V> delegate() { in delegate() method in AbstractBiMap.ValueSet
327 Set<Entry<K, V>> result = entrySet; in entrySet() local
332 private final Entry<K, V> delegate; field in AbstractBiMap.BiMapEntry
334 BiMapEntry(Entry<K, V> delegate) { in BiMapEntry()
339 protected Entry<K, V> delegate() { in delegate() method in AbstractBiMap.BiMapEntry
[all …]
H A DTreeRangeSet.java55 TreeRangeSet<C> result = create(); in create() local
70 TreeRangeSet<C> result = create(); in create() local
84 Set<Range<C>> result = asRanges; in asRanges() local
90 Set<Range<C>> result = asDescendingSetOfRanges; in asDescendingSetOfRanges() local
98 final Collection<Range<C>> delegate; field in TreeRangeSet.AsRanges
100 AsRanges(Collection<Range<C>> delegate) { in AsRanges()
105 protected Collection<Range<C>> delegate() { in delegate() method in TreeRangeSet.AsRanges
280 RangeSet<C> result = complement; in complement() local
/aosp_15_r20/external/aws-sdk-java-v2/utils/src/main/java/software/amazon/awssdk/utils/
H A DUnmodifiableMapOfLists.java40 private final Map<T, List<U>> delegate; field in UnmodifiableMapOfLists
42 UnmodifiableMapOfLists(Map<T, List<U>> delegate) { in UnmodifiableMapOfLists()
179 private final Set<? extends Entry<T, ? extends List<U>>> delegate; field in UnmodifiableMapOfLists.UnmodifiableEntrySet
181 private UnmodifiableEntrySet(Set<? extends Entry<T, ? extends List<U>>> delegate) { in UnmodifiableEntrySet()
213 Object[] result = delegate.toArray(); in toArray() local
227 Object[] result = delegate.toArray(a); in toArray() local
287 private final Iterator<? extends Entry<T, ? extends List<U>>> delegate; field in UnmodifiableMapOfLists.UnmodifiableEntryIterator
289 … private UnmodifiableEntryIterator(Iterator<? extends Entry<T, ? extends List<U>>> delegate) { in UnmodifiableEntryIterator()
306 private final Collection<? extends List<U>> delegate; field in UnmodifiableMapOfLists.UnmodifiableCollection
308 private UnmodifiableCollection(Collection<? extends List<U>> delegate) { in UnmodifiableCollection()
[all …]
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
H A DDispatchedTask.kt51 internal abstract val delegate: Continuation<T> constant in kotlinx.coroutines.DispatchedTask
84 val delegate = delegate as DispatchedContinuation<T> in getSuccessfulResult() constant
112 val result = runCatching { taskContext.afterTask() } in getSuccessfulResult() constant
150 val delegate = this.delegate in dispatch() constant
172 …val result = if (exception != null) Result.failure(exception) else Result.success(getSuccessfulRes… in resume() constant
/aosp_15_r20/external/perfetto/src/trace_processor/util/
H A Ddebug_annotation_parser.cc32 std::string result = raw_name; in SanitizeDebugAnnotationName() local
54 ProtoToArgsParser::Delegate& delegate, in ParseDebugAnnotationName()
55 std::string& result) { in ParseDebugAnnotationName()
75 ProtoToArgsParser::Delegate& delegate, in ParseDebugAnnotationValue()
174 ProtoToArgsParser::Delegate& delegate) { in Parse()
191 ProtoToArgsParser::Delegate& delegate) { in ParseNestedValueArgs()
222 ParseResult result = in ParseNestedValueArgs() local
238 ParseResult result = in ParseNestedValueArgs() local
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/test_tools/
H A Dfake_proof_source_handle.cc37 std::optional<ComputeSignatureResult>* result) in ResultSavingSignatureCallback()
52 ProofSource* delegate, const QuicSocketAddress& server_address, in ComputeSignatureNow()
55 std::optional<ComputeSignatureResult> result; in ComputeSignatureNow() local
67 ProofSource* delegate, ProofSourceHandleCallback* callback, in FakeProofSourceHandle()
159 ComputeSignatureResult result = in ComputeSignature() local
194 ProofSource* delegate, ProofSourceHandleCallback* callback, Action action, in SelectCertOperation()
227 ProofSource* delegate, ProofSourceHandleCallback* callback, Action action, in ComputeSignatureOperation()
237 ComputeSignatureResult result = ComputeSignatureNow( in Run() local
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/
H A DTestValueInstantiator.java178 public Object createUsingDelegate(DeserializationContext ctxt, Object delegate) { in createUsingDelegate()
215 public Object createUsingDelegate(DeserializationContext ctxt, Object delegate) { in createUsingDelegate()
254 public Object createUsingDelegate(DeserializationContext ctxt, Object delegate) { in createUsingDelegate()
327 …public Object createUsingDelegate(DeserializationContext ctxt, Object delegate) throws IOException… in createUsingDelegate()
353 MyList result = mapper.readValue("[]", MyList.class); in testCustomListInstantiator() local
363 MyMap result = mapper.readValue("{ \"a\":\"b\" }", MyMap.class); in testCustomMapInstantiator() local
388 MyList result = mapper.readValue("123", MyList.class); in testDelegateListInstantiator() local
398 MyMap result = mapper.readValue("123", MyMap.class); in testDelegateMapInstantiator() local
450 MyMap result = mapper.readValue("{\"name\":\"bob\", \"x\":\"y\"}", MyMap.class); in testPropertyBasedMapInstantiator() local
476 MysteryBean result = mapper.readValue(quote("abc"), MysteryBean.class); in testBeanFromString() local
[all …]
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/fuchsia/host/fidl/
H A Dhost_server_test.cc203 std::optional<ConnectResult> result; in ConnectFakePeer() local
234 void TestRestoreBonds(fhost::BondingDelegatePtr& delegate, in TestRestoreBonds()
240 [&](fhost::BondingDelegate_RestoreBonds_Result result) { in TestRestoreBonds()
621 host_server()->WatchState([&](fhost::Host_WatchState_Result result) { in TEST_F()
647 host_client()->WatchState([&](fhost::Host_WatchState_Result result) { in TEST_F()
658 host_client()->WatchState([&](fhost::Host_WatchState_Result result) { in TEST_F()
680 host_client()->WatchState([&](fhost::Host_WatchState_Result result) { in TEST_F()
726 host_client()->WatchState([&](fhost::Host_WatchState_Result result) { in TEST_F()
734 host_client()->WatchState([&](fhost::Host_WatchState_Result result) { in TEST_F()
755 host_server()->WatchState([&](fhost::Host_WatchState_Result result) { in TEST_F()
[all …]
H A Dgatt_server_server.cc82 Result result; member
151 LocalServiceDelegatePtr delegate, in LocalServiceImpl()
171 LocalServiceDelegate* delegate() { return delegate_.get(); } in delegate() function in bthost::GattServerServer::LocalServiceImpl
188 indication_cb = [](bt::att::Result<> result) { in NotifyValue()
238 fidl::InterfaceHandle<LocalServiceDelegate> delegate, in PublishService()
390 auto* delegate = iter->second->delegate(); in OnReadRequest() local
409 auto* delegate = iter->second->delegate(); in OnWriteRequest() local
436 auto* delegate = iter->second->delegate(); in OnCharacteristicConfig() local
/aosp_15_r20/cts/tests/tests/telephony/current/src/android/telephony/ims/cts/
H A DSipDelegateManagerTest.java137 public TestSipDelegate delegate; field in SipDelegateManagerTest.TransportInterfaces
595 Boolean result = ShellIdentityUtils.invokeThrowableMethodWithShellPermissions( in testFeatureImsNotSupported() local
646 Boolean result = null; in testIsSupportedWithSipTransportCapable() local
670 Boolean result = callUntilImsServiceIsAvailable(() -> in testIsSupportedWithSipTransportCapableCarrierConfigNotSet() local
700 Boolean result = callUntilImsServiceIsAvailable(() -> in testIsSupportedWithSipTransportCapableOnlyRcs() local
727 Boolean result = callUntilImsServiceIsAvailable(() -> in testIsSupportedWithSipTransportCapableButNotImplemented() local
752 Boolean result = callUntilImsServiceIsAvailable(() -> in testIsSupportedWithSipTransportImplementedButNotCapable() local
776 Boolean result = callUntilImsServiceIsAvailable(() -> in testIsSupportedWithSipTransportNotImplementedNotCapable() local
846 TestSipDelegate delegate = createSipDelegateConnectionAndVerify(manager, delegateConn, in testImsServiceDisconnected() local
1086 TestSipDelegate delegate = getSipDelegate(transportImpl, Collections.emptySet(), 0); in testCreateDelegateMessagingAppChangesToApp() local
[all …]
/aosp_15_r20/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger_middleware/
H A DSoundTriggerMiddlewareLogging.java113 @NonNull ISoundTriggerMiddlewareInternal delegate) { in SoundTriggerMiddlewareLogging()
122 @NonNull ISoundTriggerMiddlewareInternal delegate) { in SoundTriggerMiddlewareLogging()
132 SoundTriggerModuleDescriptor[] result = mDelegate.listModules(); in listModules() local
157 ModuleLogging result = new ModuleLogging(); in attach() local
191 void attach(@NonNull ISoundTriggerModule delegate, EventLogger eventLogger) { in attach()
199 int result = mDelegate.loadModel(model); in loadModel() local
215 int result = mDelegate.loadPhraseModel(model); in loadPhraseModel() local
247 var result = mDelegate.startRecognition(modelHandle, config); in startRecognition() local
309 int result = mDelegate.getModelParameter(modelHandle, modelParam); in getModelParameter() local
326 ModelParameterRange result = mDelegate.queryModelParameterSupport(modelHandle, in queryModelParameterSupport() local
[all …]
/aosp_15_r20/external/openscreen/osp/impl/quic/testing/
H A Dfake_quic_connection.cc16 FakeQuicStream::FakeQuicStream(Delegate* delegate, uint64_t id) in FakeQuicStream()
50 Delegate* delegate) in FakeQuicConnection()
59 auto result = std::make_unique<FakeQuicStream>( in MakeIncomingStream() local
77 QuicStream::Delegate* delegate) { in MakeOutgoingStream()
78 auto result = std::make_unique<FakeQuicStream>(delegate, next_stream_id_++); in MakeOutgoingStream() local
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/am/
H A DAccessCheckDelegateHelper.java79 AccessCheckDelegate delegate = getAccessCheckDelegateLPr(false); in startDelegateShellPermissionIdentity() local
112 AccessCheckDelegate delegate = getAccessCheckDelegateLPr(false); in stopDelegateShellPermissionIdentity() local
135 AccessCheckDelegate delegate = getAccessCheckDelegateLPr(false); in getDelegatedShellPermissions() local
144 void addOverridePermissionState(int originatingUid, int uid, String permission, int result) { in addOverridePermissionState()
163 AccessCheckDelegate delegate = in addOverridePermissionState() local
183 AccessCheckDelegate delegate = getAccessCheckDelegateLPr(false); in removeOverridePermissionState() local
209 AccessCheckDelegate delegate = getAccessCheckDelegateLPr(false); in clearOverridePermissionStates() local
235 AccessCheckDelegate delegate = getAccessCheckDelegateLPr(false); in clearAllOverridePermissionStates() local
258 AccessCheckDelegate delegate = getAccessCheckDelegateLPr(false); in onInstrumentationFinished() local
/aosp_15_r20/libcore/support/src/test/java/org/apache/harmony/testframework/
H A DWrapperTester.java39 public abstract OutputStream create(OutputStream delegate) throws Exception; in create()
58 TestSuite result = new TestSuite(); in createTests() local
82 private ClosableByteArrayOutputStream delegate; field in WrapperTester.WrapperSinkTester
113 FailOnFlushOutputStream delegate = new FailOnFlushOutputStream(); in wrapperTestFlushThrowsViaFlushSuppressed() local
122 FailOnFlushOutputStream delegate = new FailOnFlushOutputStream(); in wrapperTestFlushThrowsViaCloseSuppressed() local
131 FailOnFlushOutputStream delegate = new FailOnFlushOutputStream(); in wrapperTestFlushThrowsViaFlush() local
147 FailOnFlushOutputStream delegate = new FailOnFlushOutputStream(); in wrapperTestFlushThrowsViaClose() local
169 FailOnCloseOutputStream delegate = new FailOnCloseOutputStream(); in wrapperTestCloseThrows() local
181 FailOnCloseOutputStream delegate = new FailOnCloseOutputStream(); in wrapperTestCloseThrowsSuppressed() local
H A DCharWrapperTester.java38 public abstract Writer create(Writer delegate) throws Exception; in create()
57 TestSuite result = new TestSuite(); in createTests() local
81 private ClosableStringWriter delegate; field in CharWrapperTester.WrapperSinkTester
112 FailOnFlushWriter delegate = new FailOnFlushWriter(); in wrapperTestFlushThrowsViaFlushSuppressed() local
121 FailOnFlushWriter delegate = new FailOnFlushWriter(); in wrapperTestFlushThrowsViaCloseSuppressed() local
130 FailOnFlushWriter delegate = new FailOnFlushWriter(); in wrapperTestFlushThrowsViaFlush() local
146 FailOnFlushWriter delegate = new FailOnFlushWriter(); in wrapperTestFlushThrowsViaClose() local
168 FailOnCloseWriter delegate = new FailOnCloseWriter(); in wrapperTestCloseThrows() local
180 FailOnCloseWriter delegate = new FailOnCloseWriter(); in wrapperTestCloseThrowsSuppressed() local
/aosp_15_r20/external/zxing/core/src/main/java/com/google/zxing/multi/
H A DByQuadrantReader.java41 private final Reader delegate; field in ByQuadrantReader
43 public ByQuadrantReader(Reader delegate) { in ByQuadrantReader()
70 Result result = delegate.decode(image.crop(halfWidth, 0, halfWidth, halfHeight), hints); in decode() local
78 Result result = delegate.decode(image.crop(0, halfHeight, halfWidth, halfHeight), hints); in decode() local
86 … Result result = delegate.decode(image.crop(halfWidth, halfHeight, halfWidth, halfHeight), hints); in decode() local
96 Result result = delegate.decode(center, hints); in decode() local
/aosp_15_r20/external/aws-sdk-java-v2/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/s3express/
H A DS3ExpressAuthSchemeProvider.java32 private final S3AuthSchemeProvider delegate; field in S3ExpressAuthSchemeProvider
34 private S3ExpressAuthSchemeProvider(S3AuthSchemeProvider delegate) { in S3ExpressAuthSchemeProvider()
38 public static S3ExpressAuthSchemeProvider create(S3AuthSchemeProvider delegate) { in create()
45 List<AuthSchemeOption> result = new ArrayList<>(options.size()); in resolveAuthScheme() local
54 public S3AuthSchemeProvider delegate() { in delegate() method in S3ExpressAuthSchemeProvider
/aosp_15_r20/external/grpc-grpc-java/examples/example-orca/src/main/java/io/grpc/examples/orca/
H A DCustomBackendMetricsLoadBalancerProvider.java61 private LoadBalancer delegate; field in CustomBackendMetricsLoadBalancerProvider.CustomBackendMetricsLoadBalancer
70 public LoadBalancer delegate() { in delegate() method in CustomBackendMetricsLoadBalancerProvider.CustomBackendMetricsLoadBalancer
108 public LoadBalancer.Helper delegate() { in delegate() method in CustomBackendMetricsLoadBalancerProvider.CustomBackendMetricsLoadBalancer.CustomBackendMetricsLoadBalancerHelper
114 private LoadBalancer.SubchannelPicker delegate; field in CustomBackendMetricsLoadBalancerProvider.CustomBackendMetricsLoadBalancer.MayReportLoadPicker
116 public MayReportLoadPicker(LoadBalancer.SubchannelPicker delegate) { in MayReportLoadPicker()
122 LoadBalancer.PickResult result = delegate.pickSubchannel(args); in pickSubchannel() local

12345678910>>...52