Home | History | Annotate | Download | only in find

Lines Matching refs:methodName

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);
80 return "NewCriterion in method: " + methodName + " at location " + loc;