/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
Compiler.java | 108 * @param opPos The current position in the xpath.m_opMap array. 114 public Expression compile(int opPos) throws TransformerException 117 int op = getOp(opPos); 124 expr = compile(opPos + 2); break; 126 expr = or(opPos); break; 128 expr = and(opPos); break; 130 expr = notequals(opPos); break; 132 expr = equals(opPos); break; 134 expr = lte(opPos); break; 136 expr = lt(opPos); break [all...] |
OpMap.java | 171 * @param opPos index into op map. 172 * @return the op that corresponds to the opPos argument. 174 public int getOp(int opPos) 176 return m_opMap.elementAt(opPos); 182 * @param opPos index into op map. 185 public void setOp(int opPos, int value) 187 m_opMap.setElementAt(value,opPos); 194 * @param opPos An op position of an operation for which there is a size 198 public int getNextOpPos(int opPos) 200 return opPos + m_opMap.elementAt(opPos + 1) [all...] |
XPathParser.java | 805 int opPos = m_ops.getOp(OpMap.MAPINDEX_LENGTH); 812 insertOp(opPos, 2, OpCodes.OP_OR); 815 m_ops.setOp(opPos + OpMap.MAPINDEX_LENGTH, 816 m_ops.getOp(OpMap.MAPINDEX_LENGTH) - opPos); 832 int opPos = m_ops.getOp(OpMap.MAPINDEX_LENGTH); 839 insertOp(opPos, 2, OpCodes.OP_AND); 842 m_ops.setOp(opPos + OpMap.MAPINDEX_LENGTH, 843 m_ops.getOp(OpMap.MAPINDEX_LENGTH) - opPos); 865 int opPos = m_ops.getOp(OpMap.MAPINDEX_LENGTH); 868 addPos = opPos; [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
AttributeIterator.java | 40 * @param opPos The position within the op map, which contains the 45 AttributeIterator(Compiler compiler, int opPos, int analysis) 48 super(compiler, opPos, analysis);
|
SelfIteratorNoPredicate.java | 41 * @param opPos The position within the op map, which contains the 47 SelfIteratorNoPredicate(Compiler compiler, int opPos, int analysis) 50 super(compiler, opPos, analysis, false);
|
OneStepIteratorForward.java | 47 * @param opPos The position within the op map, which contains the 52 OneStepIteratorForward(Compiler compiler, int opPos, int analysis) 55 super(compiler, opPos, analysis); 56 int firstStepPos = OpMap.getFirstChildPos(opPos);
|
BasicTestIterator.java | 68 * @param opPos The position of this iterator in the 73 protected BasicTestIterator(Compiler compiler, int opPos, int analysis) 76 super(compiler, opPos, analysis, false); 78 int firstStepPos = OpMap.getFirstChildPos(opPos); 103 * @param opPos The position of this iterator in the 112 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) 115 super(compiler, opPos, analysis, shouldLoadWalkers);
|
UnionPathIterator.java | 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.TransformerExceptio [all...] |
WalkerFactory.java | 152 * @param opPos The position of the operation code for this itterator. 159 Compiler compiler, int opPos, 164 int firstStepPos = OpMap.getFirstChildPos(opPos); 178 iter = new SelfIteratorNoPredicate(compiler, opPos, analysis); 191 iter = new ChildIterator(compiler, opPos, analysis); 199 iter = new ChildTestIterator(compiler, opPos, analysis); 210 iter = new AttributeIterator(compiler, opPos, analysis); 222 iter = new OneStepIteratorForward(compiler, opPos, analysis); 231 iter = new OneStepIterator(compiler, opPos, analysis); 256 iter = new DescendantIterator(compiler, opPos, analysis) [all...] |
ChildIterator.java | 43 * @param opPos The position within the op map, which contains the 49 ChildIterator(Compiler compiler, int opPos, int analysis) 52 super(compiler, opPos, analysis, false);
|
ChildTestIterator.java | 49 * @param opPos The position within the op map, which contains the 54 ChildTestIterator(Compiler compiler, int opPos, int analysis) 57 super(compiler, opPos, analysis);
|
WalkingIteratorSorted.java | 60 * @param opPos The position of this iterator in the 69 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) 72 super(compiler, opPos, analysis, shouldLoadWalkers);
|
FilterExprWalker.java | 57 * @param opPos positive opcode position for this step. 62 public void init(Compiler compiler, int opPos, int stepType) 66 super.init(compiler, opPos, stepType); 76 m_expr = compiler.compile(opPos); 86 m_expr = compiler.compile(opPos + 2);
|
OneStepIterator.java | 51 * @param opPos The position within the op map, which contains the 56 OneStepIterator(Compiler compiler, int opPos, int analysis) 59 super(compiler, opPos, analysis); 60 int firstStepPos = OpMap.getFirstChildPos(opPos);
|
WalkingIterator.java | 46 * @param opPos The position of this iterator in the 55 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) 58 super(compiler, opPos, analysis, shouldLoadWalkers); 60 int firstStepPos = OpMap.getFirstChildPos(opPos);
|
DescendantIterator.java | 48 * @param opPos The position within the op map, which contains the 53 DescendantIterator(Compiler compiler, int opPos, int analysis) 57 super(compiler, opPos, analysis, false); 59 int firstStepPos = OpMap.getFirstChildPos(opPos);
|
MatchPatternIterator.java | 67 * @param opPos The position of this iterator in the 74 MatchPatternIterator(Compiler compiler, int opPos, int analysis) 78 super(compiler, opPos, analysis, false); 80 int firstStepPos = OpMap.getFirstChildPos(opPos);
|
LocPathIterator.java | 83 * @param opPos The position of this iterator in the 88 protected LocPathIterator(Compiler compiler, int opPos, int analysis) 91 this(compiler, opPos, analysis, true); 101 * @param opPos The position of this iterator in the 110 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
|
AxesWalker.java | 66 * @param opPos The op code position of this location step. 71 public void init(Compiler compiler, int opPos, int stepType) 75 initPredicateInfo(compiler, opPos);
|
PredicatedNodeTest.java | 155 * @param opPos The op code position of this location step. 159 protected void initPredicateInfo(Compiler compiler, int opPos) 163 int pos = compiler.getFirstPredicateOpPos(opPos);
|