Searched refs:dotIndex (Results 1 – 3 of 3) sorted by relevance
155 int dotIndex = filename.lastIndexOf('.'); in stripLastExtension() local156 if (dotIndex > 0) { // > 0 instead of != -1: Treat dot files (e.g. .profile) differently in stripLastExtension()157 return filename.substring(0, dotIndex); in stripLastExtension()173 int dotIndex = filename.indexOf('.'); in stripAllExtensions() local174 if (dotIndex > 0) { // > 0 instead of != -1: Treat dot files (e.g. .profile) differently in stripAllExtensions()175 return filename.substring(0, dotIndex); in stripAllExtensions()
520 int dotIndex = layoutName.indexOf('.'); in getLayoutName() local521 if (dotIndex != -1) { in getLayoutName()522 layoutName = layoutName.substring(0, dotIndex); in getLayoutName()
792 int dotIndex = realFqcn.lastIndexOf('.'); in loadRule() local793 String baseName = realFqcn.substring(dotIndex+1); in loadRule()