Home
last modified time | relevance | path

Searched refs:methodNameAndParameters (Results 1 – 1 of 1) sorted by relevance

/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
DBodyDeclarationLocators.java119 String methodNameAndParameters = typeAndMethod.get(1); in fromStringForm() local
120 int parameterStartIndex = methodNameAndParameters.indexOf('('); in fromStringForm()
122 throw new IllegalArgumentException("No '(' found in " + methodNameAndParameters); in fromStringForm()
124 String methodName = methodNameAndParameters.substring(0, parameterStartIndex); in fromStringForm()
125 String parametersString = methodNameAndParameters.substring(parameterStartIndex); in fromStringForm()