Lines Matching defs:word
335 String word = scanWord(ss);
336 int lastDot = word.lastIndexOf('.');
338 return Query.attr(word);
340 return Query.attr(word.substring(0, lastDot),
341 word.substring(lastDot + 1));
357 String word = s.substring(0, stop);
359 return word;
362 private static boolean matchWord(String[] ss, String word)
365 if (s.startsWith(word)) {
366 int len = word.length();