HomeSort by relevance Sort by last modified time
    Searched refs:stepType (Results 1 - 7 of 7) sorted by null

  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMap.java 213 int stepType = getOp(opPos);
215 if ((stepType >= OpCodes.AXES_START_TYPES)
216 && (stepType <= OpCodes.AXES_END_TYPES))
220 else if ((stepType >= OpCodes.FIRST_NODESET_OP)
221 && (stepType <= OpCodes.LAST_NODESET_OP))
230 stepType = getOp(newOpPos);
232 if (!((stepType >= OpCodes.AXES_START_TYPES)
233 && (stepType <= OpCodes.AXES_END_TYPES)))
243 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_UNKNOWN_STEP, new Object[]{String.valueOf(stepType)}));
244 //"Programmer's assertion in getNextStepPos: unknown stepType: " + stepType)
    [all...]
Compiler.java 827 int stepType = getOp(opPos);
829 if (OpCodes.ENDOP == stepType)
844 switch (stepType)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 66 int stepType = compiler.getOp(stepOpCodePos);
68 if (stepType != OpCodes.ENDOP)
73 firstWalker = createDefaultWalker(compiler, stepType, lpi, 0);
75 firstWalker.init(compiler, stepOpCodePos, stepType);
100 int stepType;
106 while (OpCodes.ENDOP != (stepType = compiler.getOp(stepOpCodePos)))
110 walker.init(compiler, stepOpCodePos, stepType);
305 int stepType = compiler.getOp(stepOpCodePos);
307 switch (stepType)
344 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_NULL_ERROR_HANDLER, new Object[]{Integer.toString(stepType)})); //"Programmer's assertion: unknown opcode:
    [all...]
FilterExprWalker.java 58 * @param stepType The type of step.
62 public void init(Compiler compiler, int opPos, int stepType)
66 super.init(compiler, opPos, stepType);
69 switch (stepType)
78 //if((OpCodes.OP_FUNCTION == stepType) && (m_expr instanceof org.apache.xalan.templates.FuncKey))
DescendantIterator.java 60 int stepType = compiler.getOp(firstStepPos);
62 boolean orSelf = (OpCodes.FROM_DESCENDANTS_OR_SELF == stepType);
64 if (OpCodes.FROM_SELF == stepType)
69 else if(OpCodes.FROM_ROOT == stepType)
AxesWalker.java 67 * @param stepType The type of location step.
71 public void init(Compiler compiler, int opPos, int stepType)
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 161 milliseconds