Searched refs:stepType (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DOpMap.java215 int stepType = getOp(opPos);
217 if ((stepType >= OpCodes.AXES_START_TYPES)
218 && (stepType <= OpCodes.AXES_END_TYPES))
222 else if ((stepType >= OpCodes.FIRST_NODESET_OP)
223 && (stepType <= OpCodes.LAST_NODESET_OP))
232 stepType = getOp(newOpPos);
234 if (!((stepType >= OpCodes.AXES_START_TYPES)
235 && (stepType <= OpCodes.AXES_END_TYPES)))
245 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_UNKNOWN_STEP, new Object[]{String.valueOf(stepType)}));
246 //"Programmer's assertion in getNextStepPos: unknown stepType
[all...]
H A DCompiler.java829 int stepType = getOp(opPos);
831 if (OpCodes.ENDOP == stepType)
846 switch (stepType)
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DWalkerFactory.java68 int stepType = compiler.getOp(stepOpCodePos);
70 if (stepType != OpCodes.ENDOP)
75 firstWalker = createDefaultWalker(compiler, stepType, lpi, 0);
77 firstWalker.init(compiler, stepOpCodePos, stepType);
102 int stepType;
108 while (OpCodes.ENDOP != (stepType = compiler.getOp(stepOpCodePos)))
112 walker.init(compiler, stepOpCodePos, stepType);
307 int stepType = compiler.getOp(stepOpCodePos);
309 switch (stepType)
346 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_NULL_ERROR_HANDLER, new Object[]{Integer.toString(stepType)})); //"Programme
475 mightBeProximate(Compiler compiler, int opPos, int stepType) argument
1129 analyzePredicate(Compiler compiler, int opPos, int stepType) argument
[all...]
H A DFilterExprWalker.java60 * @param stepType The type of step.
64 public void init(Compiler compiler, int opPos, int stepType) argument
68 super.init(compiler, opPos, stepType);
71 switch (stepType)
80 //if((OpCodes.OP_FUNCTION == stepType) && (m_expr instanceof com.sun.org.apache.xalan.internal.templates.FuncKey))
H A DDescendantIterator.java63 int stepType = compiler.getOp(firstStepPos);
65 boolean orSelf = (OpCodes.FROM_DESCENDANTS_OR_SELF == stepType);
67 if (OpCodes.FROM_SELF == stepType)
72 else if(OpCodes.FROM_ROOT == stepType)
H A DAxesWalker.java69 * @param stepType The type of location step.
73 public void init(Compiler compiler, int opPos, int stepType) argument

Completed in 30 milliseconds