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

/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java1961 Node branchConn = null;
1971 if (branchConn == null) {
1972 branchConn = new BranchConn();
1973 branchConn.next = end;
1981 // the "tail.next" of each atom goes to branchConn
1982 nodeTail.next = branchConn;
1990 // replace the "end" with "branchConn" at its tail.next
1992 firstTail.next = branchConn;
1994 prev = new Branch(prev, node, branchConn);
4482 Branch(Node first, Node second, Node branchConn) { argument
[all...]

Completed in 45 milliseconds