Searched defs:ChildOp (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DOp.java77 static ChildOp createClosure(int id) {
81 static ChildOp createNonGreedyClosure() {
83 return new ChildOp(Op.NONGREEDYCLOSURE);
85 static ChildOp createQuestion(boolean nongreedy) {
87 return new ChildOp(nongreedy ? Op.NONGREEDYQUESTION : Op.QUESTION);
93 static ChildOp createLook(int type, Op next, Op branch) {
95 ChildOp op = new ChildOp(type);
108 static ChildOp createIndependent(Op next, Op branch) {
110 ChildOp o
190 static class ChildOp extends Op { class in class:Op
192 ChildOp(int type) { method in class:Op.ChildOp
[all...]

Completed in 986 milliseconds