HomeSort by relevance Sort by last modified time
    Searched full:methodname (Results 1 - 25 of 1575) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/xmlrpcpp/test/
echo.xml 3 <methodName>echo</methodName>
countTheEntities.xml 3 <methodName>validator1.countTheEntities</methodName>
easyStructTest.xml 3 <methodName>validator1.easyStructTest</methodName>
  /external/testng/src/main/java/org/testng/internal/thread/
TestNGThread.java 9 public TestNGThread(String methodName) {
10 super("TestNGInvoker-" + methodName + "()");
13 public TestNGThread(Runnable target, String methodName) {
14 super(target, "TestNGInvoker-" + methodName + "()");
  /external/testng/src/test/java/test/methodinterceptors/multipleinterceptors/
MethodNameFilterInterceptor.java 13 private final String methodName;
15 protected MethodNameFilterInterceptor(String methodName) {
16 this.methodName = methodName;
25 if (!name.equals(methodName)) {
29 method.setDescription(methodName);
31 method.setDescription(currentDescription + methodName);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
TestThread.java 90 public void callAndAssertReturns(String methodName, Object... arguments) throws Exception {
91 checkNotNull(methodName);
93 sendRequest(methodName, arguments);
94 assertSame(null, getResponse(methodName).getResult());
101 public void callAndAssertReturns(boolean expected, String methodName, Object... arguments)
103 checkNotNull(methodName);
105 sendRequest(methodName, arguments);
106 assertEquals(expected, getResponse(methodName).getResult());
113 public void callAndAssertReturns(int expected, String methodName, Object... arguments)
115 checkNotNull(methodName);
    [all...]
  /external/testng/src/test/java/test/testng317/
ClassB.java 33 String methodName = sTrace[1].getMethodName();
35 System.out.printf("*********** executing --- %s %s\n", className, methodName);
37 VerifyTest.m_methods.add(className + "." + methodName);
ClassA.java 46 String methodName = sTrace[1].getMethodName();
48 System.out.printf("*********** executing --- %s %s\n", className, methodName);
50 VerifyTest.m_methods.add(className + "." + methodName);
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
BenchmarkSpec.java 45 private String methodName;
51 this.methodName = "";
57 this.methodName = builder.methodName;
65 public String methodName() {
66 return methodName;
79 && this.methodName.equals(that.methodName)
101 .add("methodName", methodName)
    [all...]
  /external/testng/src/test/java/test/tmp/
TestFixture.java 9 public static int printGlobalCallSequence(String methodName) {
11 System.err.println("*** " + methodName + ": globalCallSequence=" + globalCallSequence);
  /external/mockito/src/main/java/org/mockito/internal/invocation/
SerializableMethod.java 19 private final String methodName;
31 methodName = method.getName();
40 return methodName;
68 method = declaringClass.getDeclaredMethod(methodName, parameterTypes);
73 "Please report this as a defect with an example of how to reproduce it.", declaringClass, methodName);
78 "Please report this as a defect with an example of how to reproduce it.", declaringClass, methodName);
102 if (methodName == null) {
103 if (other.methodName != null)
105 } else if (!methodName.equals(other.methodName))
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
MethodLocator.java 35 private final String methodName;
39 public MethodLocator(TypeLocator typeLocator, String methodName, List<String> parameterTypes) {
41 this.methodName = methodName;
55 && methodDeclaration.getName().getFullyQualifiedName().equals(methodName)
71 if (methodDeclaration.getName().getFullyQualifiedName().equals(methodName)) {
86 return typeLocator.getStringFormTarget() + "#" + methodName
94 ", methodName='" + methodName + '\'' +
  /external/testng/src/test/java/test/invokedmethodlistener/
InvokedMethodNameListener.java 23 String methodName = method.getTestMethod().getMethodName();
26 testMethods.add(methodName);
29 configurationMethods.add(methodName);
32 testMethodsFromTM.add(methodName);
42 configurationMethodsFromTM.add(methodName);
  /external/proguard/src/proguard/
GetAnnotationChecker.java 63 String methodName = methodrefConstant.getName(clazz);
65 if (methodName.equals(ClassConstants.METHOD_NAME_GET_ANNOTATION) ||
66 methodName.equals(ClassConstants.METHOD_NAME_GET_ANNOTATIONS) ||
67 methodName.equals(ClassConstants.METHOD_NAME_GET_DECLARED_ANNOTATIONS) ||
68 methodName.equals(ClassConstants.METHOD_NAME_GET_PARAMETER_ANNOTATIONS))
76 methodName + "'");
  /external/junit-params/src/test/java/junitparams/
FilterableTest.java 76 private Request requestSingleMethodRun(Class<SampleTestCase> clazz, String methodName) {
77 return Request.aClass(clazz).filterWith(new SingleMethodFilter(methodName));
81 private final String methodName;
83 public SingleMethodFilter(String methodName) {
84 this.methodName = methodName;
89 return description.getDisplayName().contains(methodName);
94 return methodName;
  /external/testng/src/main/java/org/testng/junit/
JUnitTestMethod.java 18 protected JUnitTestMethod(JUnitTestClass owner, String methodName, Method method, Object instance) {
19 super(methodName, method, null, instance);
  /external/javassist/src/main/javassist/convert/
TransformAccessArrayField.java 128 String methodName = getMethodName(opcode);
129 if (methodName != null) {
149 int methodref = cp.addMethodrefInfo(mi, methodName, signature);
166 String methodName = null;
169 methodName = names.objectRead();
172 methodName = names.byteOrBooleanRead();
175 methodName = names.charRead();
178 methodName = names.doubleRead();
181 methodName = names.floatRead();
184 methodName = names.intRead()
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
ClassHandler.java 16 Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable;
ShadowWrangler.java 87 public Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable {
88 InvocationPlan invocationPlan = new InvocationPlan(clazz, methodName, instance, paramTypes);
90 reportNoShadowMethodFound(clazz, methodName, paramTypes);
95 throw new I18nException("Method " + methodName + " on class " + clazz.getName() + " is not i18n-safe.");
124 private void reportNoShadowMethodFound(Class clazz, String methodName, String[] paramTypes) {
126 System.out.println("No Shadow method found for " + clazz.getSimpleName() + "." + methodName + "(" +
289 private String methodName;
296 public InvocationPlan(Class clazz, String methodName, Object instance, String... paramTypes) {
299 this.methodName = methodName;
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
MethodNameInvoker.java 56 * @param methodName
61 * The same kind of value that would normally be returned by calling {@code methodName}
64 * @throws IllegalArgumentException if {@code methodName} does not exist on the target class
68 public <K> K invoke(String methodName, Object... params) {
69 checkNotNull(methodName, "methodName must not be null");
71 Method targetMethod = mMethods.get(methodName);
75 if (method.getName().equals(methodName) &&
78 mMethods.put(methodName, targetMethod);
85 "Method " + methodName + " does not exist on class " + mTargetClass)
    [all...]
  /libcore/support/src/test/java/tests/io/
MockOs.java 86 * {@code methodName}. If empty, calls will be handled by the delegate.
88 public Deque<InvocationHandler> getHandlers(String methodName) {
90 Deque<InvocationHandler> result = threadFaults.get(methodName);
93 threadFaults.put(methodName, result);
102 public void enqueueNormal(String methodName, int count) {
103 Deque<InvocationHandler> handlers = getHandlers(methodName);
109 public void enqueueFault(String methodName) {
110 enqueueFault(methodName, OsConstants.EIO);
113 public void enqueueFault(String methodName, final int errno) {
114 getHandlers(methodName).add(new InvocationHandler()
    [all...]
  /external/vogar/src/vogar/target/junit/
JUnitUtils.java 36 String methodName = description.getMethodName();
37 return getTestName(className, methodName);
43 public static String getTestName(String className, String methodName) {
44 if (methodName == null) {
47 return className + "#" + methodName;
  /packages/apps/Contacts/tests/src/com/android/contacts/
RunMethodInstrumentation.java 49 private String methodName;
60 methodName = arguments.getString("method");
64 Log.d(TAG, "Running " + className + "." + methodName);
81 if (className == null || methodName == null) {
98 invokeMethod(args, className, methodName);
108 private void invokeMethod(Bundle args, String className, String methodName) throws
127 method = clazz.getMethod(methodName, Context.class, Bundle.class);
138 method = clazz.getMethod(methodName, Context.class);
148 method = clazz.getMethod(methodName);
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
BusinessLogicHostTestBase.java 57 String methodName = mTestCase.getMethodName();
58 if (methodName.contains(PARAM_START)) {
60 methodName = methodName.substring(0, methodName.lastIndexOf(PARAM_START));
62 String testName = String.format("%s#%s", this.getClass().getName(), methodName);
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
ReflectiveTypeFinder.java 31 private final String methodName;
35 public ReflectiveTypeFinder(String methodName, int expectedNumberOfParameters, int typedParameter) {
36 this.methodName = methodName;
49 throw new Error("Cannot determine correct type for " + methodName + "() method.");
57 return method.getName().equals(methodName)

Completed in 440 milliseconds

1 2 3 4 5 6 7 8 91011>>