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

/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java1715 } else if (node instanceof Curly) {
1717 printObjectTree(((Curly)node).atom);
1718 System.out.println("**** end contents Curly body");
2886 } else if (node instanceof Curly) {
2887 Curly curly = (Curly) node;
2907 else // Reluctant Curly
3051 return new Curly(prev, 0, MAX_REPS, LAZY);
3054 return new Curly(prev, 0, MAX_REPS, POSSESSIVE);
3056 return new Curly(pre
4110 static final class Curly extends Node { class in class:Pattern
4116 Curly(Node node, int cmin, int cmax, int type) { method in class:Pattern.Curly
[all...]

Completed in 135 milliseconds