Searched refs:apiType (Results 1 – 1 of 1) sorted by relevance
214 private static boolean compareType(String apiType, String testType) { in compareType() argument215 return apiType.equals(testType) || in compareType()216 isGenericType(apiType) && !testType.equals(VOID) || in compareType()217 isGenericArrayType(apiType) && isArrayType(testType) || in compareType()218 isVarArg(apiType) && isArrayType(testType) && in compareType()219 apiType.startsWith(testType.substring(0, testType.indexOf("["))); in compareType()