Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidDoubleClickStrategy.java82 int lastDot = string.lastIndexOf('.', cursor); in getWord() local
83 if (lastDot >= position.x && lastDot < position.y - 1) { in getWord()
86 position.x = lastDot + 1; in getWord()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
DAndroidPackageRenameParticipant.java338 int lastDot = fqcn.lastIndexOf('.');
339 if (lastDot < 0) {
342 String name = fqcn.substring(lastDot, fqcn.length());
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DDescriptorsUtils.java684 int lastDot = name.lastIndexOf('.');
685 if (lastDot != -1) {
686 name = name.substring(lastDot + 1);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DBaseViewRule.java512 int lastDot = sourceClass.lastIndexOf('.', index); in addInheritedProperties() local
513 if (lastDot != -1) { in addInheritedProperties()
514 sourceClass = sourceClass.substring(lastDot + 1); in addInheritedProperties()