Searched refs:baseStr (Results 1 – 2 of 2) sorted by relevance
32 String baseStr = "*** This is a very nice string!!!"; in basicTest() local36 testStr = baseStr.substring(4, baseStr.length() - 3); in basicTest()71 String baseStr = "The quick brown fox jumps over the lazy dog!"; in indexTest() local74 subStr = baseStr.substring(5, baseStr.length() - 4); in indexTest()78 baseStr.indexOf('T') + ":" + in indexTest()81 baseStr.indexOf('!') + ":" + in indexTest()84 baseStr.indexOf('x') + ":" + in indexTest()88 baseStr.indexOf('x', 17) + ":" + in indexTest()89 baseStr.indexOf('x', 18) + ":" + in indexTest()90 baseStr.indexOf('x', 19) + ":" + in indexTest()[all …]
3516 final String baseStr = base.getAbsolutePath(); in getRelativePath() local3522 if (pathStr.startsWith(baseStr)) { in getRelativePath()3523 return pathStr.substring(baseStr.length()); in getRelativePath()3526 throw new IOException("File: " + pathStr + " outside base: " + baseStr); in getRelativePath()