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

  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java 49 private OpMap m_ops;
85 * The prefix resolver to map prefixes to namespaces in the OpMap.
115 m_ops.setOp(OpMap.MAPINDEX_LENGTH,2);
191 m_ops.setOp(OpMap.MAPINDEX_LENGTH, 2);
215 m_ops.setOp(m_ops.getOp(OpMap.MAPINDEX_LENGTH), OpCodes.ENDOP);
216 m_ops.setOp(OpMap.MAPINDEX_LENGTH, m_ops.getOp(OpMap.MAPINDEX_LENGTH)+1);
749 int totalLen = m_ops.getOp(OpMap.MAPINDEX_LENGTH);
757 m_ops.setOp(OpMap.MAPINDEX_LENGTH,totalLen + length);
771 int totalLen = m_ops.getOp(OpMap.MAPINDEX_LENGTH)
    [all...]
Lexer.java 120 int initTokQueueSize = ((pat.length() < OpMap.MAXTOKENQUEUESIZE)
121 ? pat.length() : OpMap.MAXTOKENQUEUESIZE) * 5;
123 OpMap.BLOCKTOKENQUEUESIZE * 5,
124 OpMap.MAPINDEX_LENGTH);
OpMap.java 19 * $Id: OpMap.java 468655 2006-10-28 07:12:06Z minchau $
32 public class OpMap
252 * @param opMap The operations map.
256 public static int getNextOpPos(int[] opMap, int opPos)
258 return opPos + opMap[opPos + 1];
Compiler.java 73 public class Compiler extends OpMap
850 argLen = getOp(opPos + OpMap.MAPINDEX_LENGTH);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
OneStepIteratorForward.java 27 import org.apache.xpath.compiler.OpMap;
56 int firstStepPos = OpMap.getFirstChildPos(opPos);
BasicTestIterator.java 28 import org.apache.xpath.compiler.OpMap;
78 int firstStepPos = OpMap.getFirstChildPos(opPos);
OneStepIterator.java 30 import org.apache.xpath.compiler.OpMap;
60 int firstStepPos = OpMap.getFirstChildPos(opPos);
WalkingIterator.java 30 import org.apache.xpath.compiler.OpMap;
60 int firstStepPos = OpMap.getFirstChildPos(opPos);
DescendantIterator.java 32 import org.apache.xpath.compiler.OpMap;
59 int firstStepPos = OpMap.getFirstChildPos(opPos);
MatchPatternIterator.java 29 import org.apache.xpath.compiler.OpMap;
80 int firstStepPos = OpMap.getFirstChildPos(opPos);
UnionPathIterator.java 31 import org.apache.xpath.compiler.OpMap;
162 opPos = OpMap.getFirstChildPos(opPos);
WalkerFactory.java 31 import org.apache.xpath.compiler.OpMap;
164 int firstStepPos = OpMap.getFirstChildPos(opPos);
404 opPos = OpMap.getFirstChildPos(opPos);
455 int leftPos = OpMap.getFirstChildPos(op);
523 int leftPos = OpMap.getFirstChildPos(innerExprOpPos);
812 * @param stepOpCodePos The current op code position within the opmap.
963 * @param stepOpCodePos The current op code position within the opmap
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 42 /// The OpMap field from the record
43 uint8_t OpMap;
AsmWriterEmitter.cpp 633 std::map<StringRef, std::pair<int, int>> OpMap;
647 OpMap[Op] = std::make_pair(OpIdx, PrintMethodIdx);
650 bool isOpMapped(StringRef Op) { return OpMap.find(Op) != OpMap.end(); }
651 int getOpIndex(StringRef Op) { return OpMap[Op].first; }
652 std::pair<int, int> &getOpData(StringRef Op) { return OpMap[Op]; }
    [all...]
X86RecognizableInstr.cpp 189 OpMap = byteFromRec(Rec, "OpMapBits");
794 switch (OpMap) {
803 switch (OpMap) {
840 } // switch (OpMap)
    [all...]

Completed in 203 milliseconds