Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DNewProjectCreator.java1244 int lastDotIndex = activityName.lastIndexOf('.'); in addSampleCode() local
1246 if (lastDotIndex != -1) { in addSampleCode()
1249 if (lastDotIndex > 0) { in addSampleCode()
1255 packageName += activityName.substring(0, lastDotIndex); in addSampleCode()
1257 packageName = activityName.substring(0, lastDotIndex); in addSampleCode()
1261 activityName = activityName.substring(lastDotIndex + 1); in addSampleCode()