Home | History | Annotate | Download | only in tree

Lines Matching refs:newText

184             String newText = key.substring(numberOfMatchingCharacters, key.length());
186 if (child.getKey().startsWith(newText.charAt(0) + "")) {
188 insert(newText, child, value);
196 n.setKey(newText);
297 String newText = key.substring(numberOfMatchingCharacters, key.length());
299 if (child.getKey().startsWith(newText.charAt(0) + "")) {
300 result = searchPefix(newText, child);
357 String newText = prefix.substring(numberOfMatchingCharacters, prefix.length());
360 if (child.getKey().startsWith(newText.charAt(0) + "")) {
361 visit(newText, visitor, node, child);