Home
last modified time | relevance | path

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

/cts/tools/vm-tests-tf/build/src/util/build/
DBuildCTSHostSources.java142 int lastDot = modPackage.lastIndexOf('.'); in openCTSHostFileFor() local
143 if (lastDot > 0) { in openCTSHostFileFor()
144 String lastPackageComponent = modPackage.substring(lastDot + 1); in openCTSHostFileFor()
147 modPackage = modPackage.substring(0, lastDot); in openCTSHostFileFor()
/cts/tests/tests/database/src/android/database/sqlite/cts/
DSQLiteDatabaseTest.java1691 int lastDot = fullVersionStr.lastIndexOf('.'); in testSqliteLibraryVersion() local
1694 lastDot > 0); in testSqliteLibraryVersion()
1695 String majorMinor = fullVersionStr.substring(0, lastDot); in testSqliteLibraryVersion()
1699 int patchLevel = Integer.valueOf(fullVersionStr.substring(lastDot + 1)); in testSqliteLibraryVersion()