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

1 2 3 4 5 6 7 8 91011>>

  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
MethodBoundCriterion.java 10 private final String methodName;
15 public MethodBoundCriterion(String methodName, BoundLocation boundLoc) {
16 this.methodName = methodName;
18 this.sigMethodCriterion = Criteria.inMethod(methodName);
43 return "MethodBoundCriterion: method: " + methodName + " bound boundLoc: " + boundLoc;
ReturnTypeCriterion.java 11 private final String methodName;
15 public ReturnTypeCriterion(String className, String methodName) {
16 this.methodName = methodName;
18 this.sigMethodCriterion = methodName.isEmpty() ? null
19 : Criteria.isSigMethod(methodName);
68 return "ReturnTypeCriterion for method: " + methodName;
CallCriterion.java 10 private final String methodName;
13 public CallCriterion(String methodName, RelativeLocation loc) {
14 this.methodName = methodName;
39 MethodCallScanner.getMethodCallIndex(methodName, loc.offset);
58 return "CallCriterion: in method: " + methodName + " location: " + loc;
CastCriterion.java 14 private final String methodName;
17 public CastCriterion(String methodName, RelativeLocation loc) {
18 this.methodName = methodName.substring(0, methodName.lastIndexOf(")") + 1);
42 int indexInClass = CastScanner.getMethodCastIndex(methodName, loc.offset);
64 return "CastCriterion: in method: " + methodName + " location: " + loc;
InstanceOfCriterion.java 12 private final String methodName;
15 public InstanceOfCriterion(String methodName, RelativeLocation loc) {
16 this.methodName = methodName.substring(0, methodName.lastIndexOf(")") + 1);
66 int indexInClass = InstanceOfScanner.getMethodInstanceOfIndex(methodName, loc.offset);
89 return "InstanceOfCriterion: in method: " + methodName + " location: " + loc;
IsCriterion.java 55 String methodName = ((MethodTree)tree).getName().toString();
56 return methodName.equals(name);
LambdaCriterion.java 11 private final String methodName;
14 public LambdaCriterion(String methodName, RelativeLocation loc) {
15 this.methodName = methodName;
61 int indexInClass = LambdaScanner.getMethodLambdaExpressionIndex(methodName, loc.offset);
MemberReferenceCriterion.java 10 private final String methodName;
13 public MemberReferenceCriterion(String methodName, RelativeLocation loc) {
14 this.methodName = methodName;
40 MemberReferenceScanner.getMemberReferenceIndex(methodName,
60 return "MemberReferenceCriterion: in method: " + methodName + " location: " + loc;
NewCriterion.java 14 private final String methodName;
19 public NewCriterion(String methodName, RelativeLocation loc) {
20 this.methodName = methodName.substring(0, methodName.lastIndexOf(")") + 1);
22 if (!(methodName.startsWith("init for field") ||
23 methodName.startsWith("static init number")
24 || methodName.startsWith("instance init number"))) {
26 this.inMethodCriterion = Criteria.inMethod(methodName);
62 int indexInClass = NewScanner.getMethodNewIndex(methodName, loc.offset)
    [all...]
ParamCriterion.java 13 private final String methodName;
16 public ParamCriterion(String methodName, Integer pos) {
17 this.methodName = methodName.substring(0, methodName.indexOf(")") + 1);
68 return "ParamCriterion for method: " + methodName + " at position: " +
ReceiverCriterion.java 9 private final String methodName; // no return type
12 public ReceiverCriterion(String methodName) {
13 this.methodName = methodName;
14 isSigMethodCriterion = Criteria.isSigMethod(methodName);
78 return "ReceiverCriterion for method: " + methodName;
TypeArgumentCriterion.java 12 private final String methodName;
15 public TypeArgumentCriterion(String methodName, RelativeLocation loc) {
16 this.methodName = methodName;
59 return "TypeArgumentCriterion: in method: " + methodName
  /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 141 methodName = javaName("write_" + t.tagname)
148 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/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/
PSKKeyManagerProxy.java 70 String methodName = method.getName();
74 if ("getKey".equals(methodName)) {
80 } else if ("chooseServerKeyIdentityHint".equals(methodName)) {
86 } else if ("chooseClientKeyIdentity".equals(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()

Completed in 430 milliseconds

1 2 3 4 5 6 7 8 91011>>