Searched refs:indexOfLastDot (Results 1 – 4 of 4) sorted by relevance
277 int indexOfLastDot = tempName.length(); in recursivelyComputeLevelString() local278 while ((levelString == null) && (indexOfLastDot > -1)) { in recursivelyComputeLevelString()279 tempName = tempName.substring(0, indexOfLastDot); in recursivelyComputeLevelString()281 indexOfLastDot = String.valueOf(tempName).lastIndexOf("."); in recursivelyComputeLevelString()
193 int indexOfLastDot = hostname.lastIndexOf('.'); in findMatchingPins() local198 if (indexOfFirstDot != indexOfLastDot) { in findMatchingPins()
195 int indexOfLastDot = hostname.lastIndexOf('.'); in findMatchingPins() local200 if (indexOfFirstDot != indexOfLastDot) { in findMatchingPins()
1059 int indexOfLastDot = testPath.lastIndexOf('.'); in pathToIdentifier() local1060 String className = testPath.substring(0, indexOfLastDot); in pathToIdentifier()1061 String testName = testPath.substring(indexOfLastDot+1); in pathToIdentifier()