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.java156 int dotIndex = filename.lastIndexOf('.'); in stripLastExtension() local
157 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() local
175 if (dotIndex > 0) { // > 0 instead of != -1: Treat dot files (e.g. .profile) differently in stripAllExtensions()
176 return filename.substring(0, dotIndex); in stripAllExtensions()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
DResourceHelper.java519 int dotIndex = layoutName.indexOf('.'); in getLayoutName() local
520 if (dotIndex != -1) { in getLayoutName()
521 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()