Searched refs:dotIndex (Results 1 – 3 of 3) sorted by relevance
156 int dotIndex = filename.lastIndexOf('.'); in stripLastExtension() local157 if (dotIndex > 0) { // > 0 instead of != -1: Treat dot files (e.g. .profile) differently in stripLastExtension()158 return filename.substring(0, dotIndex); in stripLastExtension()174 int dotIndex = filename.indexOf('.'); in stripAllExtensions() local175 if (dotIndex > 0) { // > 0 instead of != -1: Treat dot files (e.g. .profile) differently in stripAllExtensions()176 return filename.substring(0, dotIndex); in stripAllExtensions()
519 int dotIndex = layoutName.indexOf('.'); in getLayoutName() local520 if (dotIndex != -1) { in getLayoutName()521 layoutName = layoutName.substring(0, dotIndex); in getLayoutName()
792 int dotIndex = realFqcn.lastIndexOf('.'); in loadRule() local793 String baseName = realFqcn.substring(dotIndex+1); in loadRule()