Lines Matching defs:ipos
85 private int ipos;
94 this.ipos = name.indexOf(INNERCLASS_PREFIX);
170 int idot = ipos;
224 return (ipos > 0);
245 if (ipos > 0 && name.charAt(ipos-1) == '.') {
246 if (ipos+1 == name.length()) {
248 return Identifier.lookup(name.substring(0,ipos-1));
250 String n = name.substring(ipos+1);
251 String t = name.substring(0,ipos);