Searched defs:walker (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DWalkingIterator.java85 * Get the analysis bits for this walker, as defined in the WalkerFactory.
93 AxesWalker walker = m_firstWalker;
95 while (null != walker)
97 int bit = walker.getAnalysisBits();
99 walker = walker.getNextWalker();
208 * Get the head of the walker list.
210 * @return The head of the walker list, or null
220 * Set the head of the walker list.
222 * @param walker Shoul
225 setFirstWalker(AxesWalker walker) argument
237 setLastUsedWalker(AxesWalker walker) argument
[all...]
H A DAxesWalker.java67 * walker in the op map.
103 * Do a deep clone of this walker, including next and previous walkers.
175 * Detaches the walker from the set which it iterated over, releasing
202 * Get the analysis bits for this walker, as defined in the WalkerFactory.
232 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_SETTING_WALKER_ROOT_TO_NULL, null)); //"\n !!!! Error! Setting the root of a walker to null!!!");
258 * Set the next walker in the location step chain.
261 * @param walker Reference to AxesWalker derivative, or may be null.
263 public void setNextWalker(AxesWalker walker) argument
265 m_nextWalker = walker;
269 * Get the next walker i
286 setPrevWalker(AxesWalker walker) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DdebugLoop.c259 struct PacketList *walker; local
275 walker = (struct PacketList *)cmdQueue;
276 while (walker->next != NULL)
277 walker = walker->next;
279 walker->next = pL;

Completed in 31 milliseconds