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

  /external/proguard/src/proguard/io/
DataEntryNameFilter.java 23 import proguard.util.StringMatcher;
27 * a given StringMatcher.
34 private final StringMatcher stringMatcher;
39 * @param stringMatcher the string matcher that will be applied to the names
42 public DataEntryNameFilter(StringMatcher stringMatcher)
44 this.stringMatcher = stringMatcher;
52 return dataEntry != null && stringMatcher.matches(dataEntry.getName())
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
AttributeNameFilter.java 27 import proguard.util.StringMatcher;
39 private final StringMatcher stringMatcher;
45 * @param stringMatcher the string matcher that will check the attribute
50 public AttributeNameFilter(StringMatcher stringMatcher,
53 this.stringMatcher = stringMatcher;
343 return stringMatcher.matches(attribute.getAttributeName(clazz));