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

/external/proguard/src/proguard/util/
H A DFixedStringMatcher.java32 private final StringMatcher nextMatcher; field in class:FixedStringMatcher
41 public FixedStringMatcher(String fixedString, StringMatcher nextMatcher) argument
44 this.nextMatcher = nextMatcher;
53 (nextMatcher == null ||
54 nextMatcher.matches(string.substring(fixedString.length())));
H A DClassNameParser.java63 StringMatcher nextMatcher = new EmptyStringMatcher();
75 nextMatcher =
79 settableMatcher.setMatcher(nextMatcher);
89 nextMatcher =
99 nextMatcher =
113 nextMatcher =
127 nextMatcher =
141 nextMatcher =
154 (StringMatcher)new FixedStringMatcher(regularExpression.substring(0, index), nextMatcher) :
155 (StringMatcher)nextMatcher;
166 createAnyTypeMatcher(StringMatcher nextMatcher) argument
[all...]
H A DVariableStringMatcher.java35 private final StringMatcher nextMatcher; field in class:VariableStringMatcher
42 StringMatcher nextMatcher)
48 this.nextMatcher = nextMatcher;
74 if (nextMatcher.matches(string.substring(index)))
86 return nextMatcher.matches(string.substring(maximumLength));
38 VariableStringMatcher(char[] allowedCharacters, char[] disallowedCharacters, int minimumLength, int maximumLength, StringMatcher nextMatcher) argument
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...

Completed in 94 milliseconds