HomeSort by relevance Sort by last modified time
    Searched defs:nextMatcher (Results 1 - 7 of 7) sorted by null

  /external/proguard/src/proguard/util/
FixedStringMatcher.java 32 private final StringMatcher nextMatcher;
41 public FixedStringMatcher(String fixedString, StringMatcher nextMatcher)
44 this.nextMatcher = nextMatcher;
53 (nextMatcher == null ||
54 nextMatcher.matches(string.substring(fixedString.length())));
VariableStringMatcher.java 35 private final StringMatcher nextMatcher;
42 StringMatcher nextMatcher)
48 this.nextMatcher = nextMatcher;
74 if (nextMatcher.matches(string.substring(index)))
86 return nextMatcher.matches(string.substring(maximumLength));
ClassNameParser.java 63 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;
    [all...]
FileNameParser.java 43 StringMatcher nextMatcher = new EmptyStringMatcher();
53 nextMatcher =
67 nextMatcher =
81 nextMatcher =
94 (StringMatcher)new FixedStringMatcher(regularExpression.substring(0, index), nextMatcher) :
95 (StringMatcher)nextMatcher;
NameParser.java 42 StringMatcher nextMatcher = new EmptyStringMatcher();
52 nextMatcher =
66 nextMatcher =
79 (StringMatcher)new FixedStringMatcher(regularExpression.substring(0, index), nextMatcher) :
80 (StringMatcher)nextMatcher;
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 

Completed in 322 milliseconds