Home
last modified time | relevance | path

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

/cts/tools/utils/
DDescriptionGenerator.java372 int dotIndex = suiteName.indexOf('.'); in appendSuiteToElement() local
373 String name = dotIndex == -1 ? suiteName : suiteName.substring(0, dotIndex); in appendSuiteToElement()
382 if (dotIndex == -1) { in appendSuiteToElement()
385 testSuite.mName = suiteName.substring(dotIndex + 1, suiteName.length()); in appendSuiteToElement()
491 int dotIndex; in appendSuiteToElementImpl() local
492 while ((dotIndex = suiteName.indexOf('.')) != -1) { in appendSuiteToElementImpl()
493 String name = suiteName.substring(0, dotIndex); in appendSuiteToElementImpl()
499 suiteName = suiteName.substring(dotIndex + 1, suiteName.length()); in appendSuiteToElementImpl()