Home | History | Annotate | Download | only in util

Lines Matching refs:regularExpression

60     public StringMatcher parse(String regularExpression)
66 for (index = 0; index < regularExpression.length(); index++)
69 if (regularExpression.regionMatches(index, "L///;", 0, 5))
76 new OrMatcher(parse(regularExpression.substring(index + 5)),
85 if (regularExpression.regionMatches(index, "L***;", 0, 5))
90 createAnyTypeMatcher(parse(regularExpression.substring(index + 5)));
95 if (regularExpression.regionMatches(index, "**", 0, 2))
104 parse(regularExpression.substring(index + 2)));
109 else if (regularExpression.charAt(index) == '*')
118 parse(regularExpression.substring(index + 1)));
123 else if (regularExpression.charAt(index) == '?')
132 parse(regularExpression.substring(index + 1)));
137 else if (regularExpression.charAt(index) == '%')
146 parse(regularExpression.substring(index + 1)));
154 (StringMatcher)new FixedStringMatcher(regularExpression.substring(0, index), nextMatcher) :