Home
last modified time | relevance | path

Searched refs:newKey (Results 1 – 2 of 2) sorted by relevance

/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DBST.java92 public BST find_tree(String newKey) { in find_tree() argument
93 return find_tree(newKey, true); in find_tree()
96 public BSTItem find(String newKey) { in find() argument
97 return find(newKey, true); in find()
101 public BST find_tree(String newKey, boolean exactMatch) { in find_tree() argument
108 int comp = data.compare(newKey, exactMatch); in find_tree()
114 rv = left.find_tree(newKey, exactMatch); in find_tree()
117 rv = right.find_tree(newKey, exactMatch); in find_tree()
126 public BSTItem find(String newKey, boolean exactMatch) { in find() argument
128 newKey); in find()
[all …]
H A DBSTItem.java45 public BSTItem(String newKey) { in BSTItem() argument
46 this(newKey, null); in BSTItem()
49 public BSTItem(String newKey, Object obj) { in BSTItem() argument
50 key = newKey.toLowerCase(); in BSTItem()