Searched refs:OP_BRANCH (Results 1 - 4 of 4) sorted by relevance
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/ |
H A D | REProgram.java | 119 if (lenInstruction >= RE.nodeSize && instruction[0 + RE.offsetOpcode] == RE.OP_BRANCH)
|
H A D | RECompiler.java | 1099 nodeInsert(RE.OP_BRANCH, 0, ret); // branch before X 1100 setNextOfEnd(ret, node (RE.OP_BRANCH, 0)); // inserted branch to option 1109 nodeInsert(RE.OP_BRANCH, 0, ret); // branch before X 1110 setNextOfEnd(ret + RE.nodeSize, node(RE.OP_BRANCH, 0)); // end of X points to an option 1113 setNextOfEnd(ret, node(RE.OP_BRANCH, 0)); // the other option is 1122 branch = node(RE.OP_BRANCH, 0); // a new branch 1125 setNextOfEnd(branch, node(RE.OP_BRANCH, 0)); // the other option 1168 int ret = node(RE.OP_BRANCH, 0); 1292 if ( instruction[ currentNode + RE.offsetOpcode ] == RE.OP_BRANCH )
|
H A D | RE.java | 339 static final char OP_BRANCH = '|'; // node match this alternative or the next one field in class:RE 1287 case OP_BRANCH: 1290 if (instruction[next + offsetOpcode] != OP_BRANCH) 1311 while (nextBranch != 0 && (instruction[node + offsetOpcode] == OP_BRANCH));
|
H A D | REDebugCompiler.java | 48 hashOpcode.put(new Integer(RE.OP_BRANCH), "OP_BRANCH");
|
Completed in 29 milliseconds