HomeSort by relevance Sort by last modified time
    Searched defs:methodName (Results 1 - 25 of 1283) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
Breakpoint.java 33 public String methodName;
41 methodName = new String();
54 methodName = method;
  /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)
  /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 + "'");
GetEnclosingClassChecker.java 61 String methodName = methodrefConstant.getName(clazz);
63 if (methodName.equals(ClassConstants.METHOD_NAME_CLASS_GET_ENCLOSING_CLASS) ||
64 methodName.equals(ClassConstants.METHOD_NAME_CLASS_GET_DECLARING_CLASS))
72 methodName + "'");
GetEnclosingMethodChecker.java 61 String methodName = methodrefConstant.getName(clazz);
63 if (methodName.equals(ClassConstants.METHOD_NAME_CLASS_GET_ENCLOSING_CONSTRUCTOR) ||
64 methodName.equals(ClassConstants.METHOD_NAME_CLASS_GET_ENCLOSING_METHOD))
72 methodName + "'");
GetSignatureChecker.java 63 String methodName = methodrefConstant.getName(clazz);
65 if (methodName.startsWith(ClassConstants.METHOD_NAME_GET_TYPE_PREFIX) ||
66 methodName.startsWith(ClassConstants.METHOD_NAME_GET_GENERIC_PREFIX))
74 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/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);
  /build/make/tools/
java-event-log-tags.py 134 methodName = javaName("write_" + t.tagname)
141 buffer.write("\n public static void %s(%s) {" % (methodName, argTypesNames))
  /development/tools/bugreport/src/com/android/bugreport/stacks/
JavaStackFrameSnapshot.java 33 public String methodName;
47 this.methodName = that.methodName;
  /external/javassist/src/main/javassist/bytecode/
EnclosingMethodAttribute.java 42 * @param methodName the name of the enclosing method.
46 String methodName, String methodDesc) {
49 int ni = cp.addNameAndTypeInfo(methodName, methodDesc);
101 public String methodName() {
131 methodName(), methodDescriptor());
  /external/proguard/src/proguard/classfile/util/
ExternalTypeEnumeration.java 102 public String methodName()
  /external/smali/deodexerant/
deodexerant.c 38 const char* methodName;
89 printf("%s->%s%s\n", item->classDescriptor, item->methodName, item->methodSignature);
  /external/testng/src/test/java/test/testng317/
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);
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);
  /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;
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
PSKKeyManagerProxy.java 78 String methodName = method.getName();
82 if ("getKey".equals(methodName)) {
88 } else if ("chooseServerKeyIdentityHint".equals(methodName)) {
94 } else if ("chooseClientKeyIdentity".equals(methodName)) {
  /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/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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
OptionalMethod.java 34 private final String methodName;
42 * @param methodName the name of the method
45 public OptionalMethod(Class<?> returnType, String methodName, Class... methodParams) {
47 this.methodName = methodName;
109 throw new AssertionError("Method " + methodName + " not supported for object " + target);
150 if (methodName != null) {
151 method = getPublicMethod(clazz, methodName, methodParams);
163 private static Method getPublicMethod(Class<?> clazz, String methodName, Class[] parameterTypes) {
166 method = clazz.getMethod(methodName, parameterTypes)
    [all...]
  /external/testng/src/main/java/org/testng/xml/dom/
Reflect.java 44 String methodName = toCamelCase(tagName, prefix);
45 if (m.getName().equals(methodName)) {
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationTypeUtil.java 87 final String methodName = executableType.toString().substring(0, argStart);
90 return methodName + "(" + args + ")" + getDescription(
  /libcore/ojluni/src/main/java/java/lang/
StackTraceElement.java 45 private String methodName;
55 * @param methodName the name of the method containing the execution point
66 * {@code methodName} is null
69 public StackTraceElement(String declaringClass, String methodName,
72 this.methodName = Objects.requireNonNull(methodName, "Method name is null");
131 return methodName;
175 result.append(getClassName()).append(".").append(methodName);
222 Objects.equals(methodName, e.methodName) &
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /cts/common/util/src/com/android/compatibility/common/util/
TestSuiteFilter.java 104 String methodName = String.format("%s#%s", className, parts[0]);
116 if (mExcludes.contains(methodName)) {
121 || mIncludes.contains(methodName)

Completed in 916 milliseconds

1 2 3 4 5 6 7 8 91011>>