Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
DAdtUtils.java155 int dotIndex = filename.lastIndexOf('.'); in stripLastExtension() local
156 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() local
174 if (dotIndex > 0) { // > 0 instead of != -1: Treat dot files (e.g. .profile) differently in stripAllExtensions()
175 return filename.substring(0, dotIndex); in stripAllExtensions()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
DResourceHelper.java520 int dotIndex = layoutName.indexOf('.'); in getLayoutName() local
521 if (dotIndex != -1) { in getLayoutName()
522 layoutName = layoutName.substring(0, dotIndex); in getLayoutName()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
DRulesEngine.java792 int dotIndex = realFqcn.lastIndexOf('.'); in loadRule() local
793 String baseName = realFqcn.substring(dotIndex+1); in loadRule()