Lines Matching refs:methodName
71 * methodName. This method must be called with monotonically increasing
74 * @param methodName the name of the method
77 public static void addCastToMethod(String methodName, Integer offset) {
78 List< Integer> offsetList = methodNameToCastOffsets.get(methodName);
81 methodNameToCastOffsets.put(methodName, offsetList);
83 if (methodName.equals(prevMethodName) && offset-prevOffset == 3) {
92 prevMethodName = methodName;
102 * @param methodName the name of the method
107 public static Integer getMethodCastIndex(String methodName, Integer offset) {
108 List<Integer> offsetList = methodNameToCastOffsets.get(methodName);