Searched refs:lastDot (Results 1 – 4 of 4) sorted by relevance
82 int lastDot = string.lastIndexOf('.', cursor); in getWord() local83 if (lastDot >= position.x && lastDot < position.y - 1) { in getWord()86 position.x = lastDot + 1; in getWord()
338 int lastDot = fqcn.lastIndexOf('.');339 if (lastDot < 0) {342 String name = fqcn.substring(lastDot, fqcn.length());
684 int lastDot = name.lastIndexOf('.');685 if (lastDot != -1) {686 name = name.substring(lastDot + 1);
512 int lastDot = sourceClass.lastIndexOf('.', index); in addInheritedProperties() local513 if (lastDot != -1) { in addInheritedProperties()514 sourceClass = sourceClass.substring(lastDot + 1); in addInheritedProperties()