Home
last modified time | relevance | path

Searched refs:invokeMethod (Results 1 – 25 of 47) sorted by relevance

12

/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/reflect/
DMethodUtilsTest.java410 assertEquals("foo()", MethodUtils.invokeMethod(testBean, "foo", in testInvokeMethod()
412 assertEquals("foo()", MethodUtils.invokeMethod(testBean, "foo")); in testInvokeMethod()
413 assertEquals("foo()", MethodUtils.invokeMethod(testBean, "foo", in testInvokeMethod()
415 assertEquals("foo()", MethodUtils.invokeMethod(testBean, "foo", in testInvokeMethod()
417 assertEquals("foo(String)", MethodUtils.invokeMethod(testBean, "foo", in testInvokeMethod()
419 assertEquals("foo(Object)", MethodUtils.invokeMethod(testBean, "foo", in testInvokeMethod()
421 assertEquals("foo(Object)", MethodUtils.invokeMethod(testBean, "foo", in testInvokeMethod()
423 assertEquals("foo(Integer)", MethodUtils.invokeMethod(testBean, "foo", in testInvokeMethod()
425 assertEquals("foo(int)", MethodUtils.invokeMethod(testBean, "foo", in testInvokeMethod()
427 assertEquals("foo(long)", MethodUtils.invokeMethod(testBean, "foo", in testInvokeMethod()
[all …]
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DTestThread.java140 assertEquals(false, invokeMethod("hasQueuedThread", this)); in callAndAssertBlocks()
143 assertEquals(true, invokeMethod("hasQueuedThread", this)); in callAndAssertBlocks()
161 assertEquals(true, invokeMethod("hasWaiters", conditionLikeObject)); in callAndAssertWaits()
212 private Object invokeMethod(String methodName, Object... arguments) throws Exception { in invokeMethod() method in TestThread
240 result = invokeMethod(request.methodName, request.arguments); in run()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DTestThread.java140 assertEquals(false, invokeMethod("hasQueuedThread", this)); in callAndAssertBlocks()
143 assertEquals(true, invokeMethod("hasQueuedThread", this)); in callAndAssertBlocks()
161 assertEquals(true, invokeMethod("hasWaiters", conditionLikeObject)); in callAndAssertWaits()
212 private Object invokeMethod(String methodName, Object... arguments) throws Exception { in invokeMethod() method in TestThread
240 result = invokeMethod(request.methodName, request.arguments); in run()
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/reflect/
DMethodUtils.java96 …public static Object invokeMethod(final Object object, final String methodName) throws NoSuchMetho… in invokeMethod() method in MethodUtils
98 return invokeMethod(object, methodName, ArrayUtils.EMPTY_OBJECT_ARRAY, null); in invokeMethod()
119 …public static Object invokeMethod(final Object object, final boolean forceAccess, final String met… in invokeMethod() method in MethodUtils
121 return invokeMethod(object, forceAccess, methodName, ArrayUtils.EMPTY_OBJECT_ARRAY, null); in invokeMethod()
146 public static Object invokeMethod(final Object object, final String methodName, in invokeMethod() method in MethodUtils
150 return invokeMethod(object, methodName, args, ClassUtils.toClass(args)); in invokeMethod()
176 …public static Object invokeMethod(final Object object, final boolean forceAccess, final String met… in invokeMethod() method in MethodUtils
180 return invokeMethod(object, forceAccess, methodName, args, ClassUtils.toClass(args)); in invokeMethod()
202 …public static Object invokeMethod(final Object object, final boolean forceAccess, final String met… in invokeMethod() method in MethodUtils
250 public static Object invokeMethod(final Object object, final String methodName, in invokeMethod() method in MethodUtils
[all …]
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/event/
DEventUtils.java49 MethodUtils.invokeMethod(eventSource, "add" + listenerType.getSimpleName(), listener); in addEventListener()
112 return MethodUtils.invokeMethod(target, methodName, parameters); in invoke()
114 return MethodUtils.invokeMethod(target, methodName); in invoke()
/external/robolectric/sandbox/src/main/java/org/robolectric/internal/bytecode/
DRobolectricGeneratorAdapter.java69 public void invokeMethod(String internalClassName, MethodNode method) { in invokeMethod() method in RobolectricGeneratorAdapter
70 invokeMethod(internalClassName, method.name, method.desc); in invokeMethod()
73 void invokeMethod(String internalClassName, String methodName, String methodDesc) { in invokeMethod() method in RobolectricGeneratorAdapter
/external/junit/src/main/java/org/junit/internal/runners/statements/
DRunBefores.java24 invokeMethod(before); in evaluate()
32 protected void invokeMethod(FrameworkMethod method) throws Throwable { in invokeMethod() method in RunBefores
DRunAfters.java33 invokeMethod(each); in evaluate()
45 protected void invokeMethod(FrameworkMethod method) throws Throwable { in invokeMethod() method in RunAfters
/external/testng/src/main/java/org/testng/internal/
DMethodInvocationHelper.java40 protected static Object invokeMethod(Method thisMethod, Object instance, Object[] parameters) in invokeMethod() method in MethodInvocationHelper
137 Object[][] originalResult = (Object[][]) invokeMethod(dataProvider, instance, parameters); in invokeDataProvider()
155 result = (Iterator<Object[]>) invokeMethod(dataProvider, instance, parameters); in invokeDataProvider()
197 invokeMethod(thisMethod, testInstance, parameters); in invokeHookable()
293 invokeMethod(thisMethod, instance, parameters); in invokeConfigurable()
DInvokeMethodRunnable.java54 MethodInvocationHelper.invokeMethod(m, m_instance, m_parameters); in runOne()
/external/aws-sdk-java-v2/test/protocol-tests-core/src/main/java/software/amazon/awssdk/protocol/runners/
DMarshallingTestRunner.java62 clientReflector.invokeMethod(testCase, shapeModelReflector.createShapeObject()); in runTest()
64 clientReflector.invokeMethod(testCase, in runTest()
/external/dagger2/java/dagger/internal/codegen/writing/
DInjectionMethods.java112 return invokeMethod(methodName, arguments.build(), enclosingClass, requestingClass); in invoke()
229 return invokeMethod(methodName, arguments, enclosingClass, generatedTypeName); in invoke()
233 private static CodeBlock invokeMethod( in invokeMethod() method
DSimpleMethodRequestRepresentation.java96 : invokeMethod(requestingClass); in getDependencyExpression()
99 private Expression invokeMethod(ClassName requestingClass) { in invokeMethod() method in SimpleMethodRequestRepresentation
/external/escapevelocity/src/main/java/com/google/escapevelocity/
DReferenceNode.java113 return invokeMethod(method, lhsValue, ImmutableList.of()); in evaluate()
252 return invokeMethod(Iterables.getOnlyElement(compatibleMethods), lhsValue, argValues); in evaluate()
323 Object invokeMethod(Method method, Object target, List<Object> argValues) { in invokeMethod() method in ReferenceNode
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DInterfaceType.java193 default Value invokeMethod(ThreadReference thread, Method method, in invokeMethod() method
DClassType.java240 Value invokeMethod(ThreadReference thread, Method method, in invokeMethod() method
DObjectReference.java272 Value invokeMethod(ThreadReference thread, Method method, in invokeMethod() method
/external/caliper/caliper/src/main/java/com/google/caliper/options/
DCommandLineParser.java178 invokeMethod(injectee, injectionMap.leftoversMethod, leftovers); in parseAndInject()
335 invokeMethod(injectee, method, convert(parser, valueText)); in inject()
418 private static void invokeMethod(Object injectee, Method method, Object value) in invokeMethod() method in CommandLineParser
/external/junit/src/main/java/org/junit/runners/parameterized/
DBlockJUnit4ClassRunnerWithParameters.java166 protected void invokeMethod(FrameworkMethod method) throws Throwable { in invokeMethod() method in BlockJUnit4ClassRunnerWithParameters.RunBeforeParams
184 protected void invokeMethod(FrameworkMethod method) throws Throwable { in invokeMethod() method in BlockJUnit4ClassRunnerWithParameters.RunAfterParams
/external/sdk-platform-java/gapic-generator-java/src/main/java/com/google/api/generator/gapic/composer/samplecode/
DSampleComposer.java105 List<AssignmentExpr> sampleVariableAssignments, Statement invokeMethod) { in composeMainBody() argument
111 body.add(invokeMethod); in composeMainBody()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DObjectReferenceImpl.java380 public Value invokeMethod(ThreadReference threadIntf, Method methodIntf, in invokeMethod() method in ObjectReferenceImpl
396 return type.invokeMethod(thread, method, origArguments, options); in invokeMethod()
399 return type.invokeMethod(thread, method, origArguments, options); in invokeMethod()
/external/aws-sdk-java-v2/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/
DDelegatingAsyncClientClass.java98 .addMethod(invokeMethod()); in addAdditionalMethods()
118 private MethodSpec invokeMethod() { in invokeMethod() method in DelegatingAsyncClientClass
/external/angle/build/android/incremental_install/java/org/chromium/incrementalinstall/
DBootstrapApplication.java57 Reflect.invokeMethod( in attachBaseContext()
270 Reflect.invokeMethod( in enableContentProviders()
/external/cronet/stable/build/android/incremental_install/java/org/chromium/incrementalinstall/
DBootstrapApplication.java57 Reflect.invokeMethod( in attachBaseContext()
270 Reflect.invokeMethod( in enableContentProviders()
/external/cronet/tot/build/android/incremental_install/java/org/chromium/incrementalinstall/
DBootstrapApplication.java57 Reflect.invokeMethod( in attachBaseContext()
270 Reflect.invokeMethod( in enableContentProviders()

12