Home | History | Annotate | Download | only in axes

Lines Matching refs:opPos

151    * @param opPos The position of this iterator in the 
156 public UnionPathIterator(Compiler compiler, int opPos)
162 opPos = OpMap.getFirstChildPos(opPos);
164 loadLocationPaths(compiler, opPos, 0);
172 * @param opPos The position of this iterator in the
179 public static LocPathIterator createUnionIterator(Compiler compiler, int opPos)
186 UnionPathIterator upi = new UnionPathIterator(compiler, opPos);
304 * @param opPos The position of this iterator in the
311 Compiler compiler, int opPos) throws javax.xml.transform.TransformerException
313 LocPathIterator lpi = (LocPathIterator)WalkerFactory.newDTMIterator(compiler, opPos,
323 * @param opPos The position of this iterator in the
329 protected void loadLocationPaths(Compiler compiler, int opPos, int count)
334 int steptype = compiler.getOp(opPos);
338 loadLocationPaths(compiler, compiler.getNextOpPos(opPos), count + 1);
340 m_exprs[count] = createDTMIterator(compiler, opPos);
354 loadLocationPaths(compiler, compiler.getNextOpPos(opPos), count + 1);
365 iter.m_firstWalker.init(compiler, opPos, steptype);