Lines Matching refs:pos
17 int pos;
36 * @param pos The position at which the name is added.
40 add(int pos, Name name) {
41 if (pos > MAX_POINTER)
46 entry.pos = pos;
50 System.err.println("Adding " + name + " at " + pos);
62 int pos = -1;
65 pos = entry.pos;
68 System.err.println("Looking for " + name + ", found " + pos);
69 return pos;