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

/external/proguard/src/proguard/util/
H A DStringParser.java34 public StringMatcher parse(String regularExpression); argument
H A DFileNameParser.java40 public StringMatcher parse(String regularExpression) argument
46 for (index = 0; index < regularExpression.length(); index++)
49 if (regularExpression.regionMatches(index, "**", 0, 2))
58 parse(regularExpression.substring(index + 2)));
63 else if (regularExpression.charAt(index) == '*')
72 parse(regularExpression.substring(index + 1)));
77 else if (regularExpression.charAt(index) == '?')
86 parse(regularExpression.substring(index + 1)));
94 (StringMatcher)new FixedStringMatcher(regularExpression.substring(0, index), nextMatcher) :
H A DNameParser.java39 public StringMatcher parse(String regularExpression) argument
45 for (index = 0; index < regularExpression.length(); index++)
48 if (regularExpression.charAt(index) == '*')
57 parse(regularExpression.substring(index + 1)));
62 else if (regularExpression.charAt(index) == '?')
71 parse(regularExpression.substring(index + 1)));
79 (StringMatcher)new FixedStringMatcher(regularExpression.substring(0, index), nextMatcher) :
H A DClassNameParser.java60 public StringMatcher parse(String regularExpression) argument
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
[all...]
H A DListParser.java52 public StringMatcher parse(String regularExpression) argument
55 return parse(ListUtil.commaSeparatedList(regularExpression));
73 String regularExpression = (String)regularExpressions.get(index);
75 StringMatcher entryMatcher = parseEntry(regularExpression);
81 isNegated(regularExpression) ?
96 private StringMatcher parseEntry(String regularExpression) argument
99 return isNegated(regularExpression) ?
100 new NotMatcher(stringParser.parse(regularExpression.substring(1))) :
101 stringParser.parse(regularExpression);
108 private boolean isNegated(String regularExpression) argument
[all...]
/external/proguard/src/proguard/io/
H A DNameFilter.java39 public NameFilter(String regularExpression, argument
42 this(regularExpression, acceptedDataEntryReader, null);
50 public NameFilter(String regularExpression, argument
54 super(new DataEntryNameFilter(new ListParser(new FileNameParser()).parse(regularExpression)),
/external/proguard/src/proguard/classfile/visitor/
H A DClassNameFilter.java43 * @param regularExpression the regular expression against which class names
48 public ClassNameFilter(String regularExpression, argument
51 this(new ListParser(new ClassNameParser()).parse(regularExpression),
58 * @param regularExpression the regular expression against which class names
63 public ClassNameFilter(List regularExpression, argument
66 this(new ListParser(new ClassNameParser()).parse(regularExpression),
H A DMemberDescriptorFilter.java42 * @param regularExpression the regular expression against which member
47 public MemberDescriptorFilter(String regularExpression, argument
50 this(new ClassNameParser().parse(regularExpression), memberVisitor);
H A DMemberNameFilter.java42 * @param regularExpression the regular expression against which member
47 public MemberNameFilter(String regularExpression, argument
50 this(new ListParser(new NameParser()).parse(regularExpression),
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DAnnotationTypeFilter.java44 * @param regularExpression the regular expression against which annotation
49 public AnnotationTypeFilter(String regularExpression, argument
52 this.regularExpressionMatcher = new ListParser(new ClassNameParser()).parse(regularExpression);
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DAttributeNameFilter.java47 * @param regularExpression the regular expression against which attribute
52 public AttributeNameFilter(String regularExpression, argument
55 this(new ListParser(new NameParser()).parse(regularExpression),
62 * @param regularExpression the regular expression against which attribute
67 public AttributeNameFilter(List regularExpression, argument
70 this(new ListParser(new NameParser()).parse(regularExpression),
/external/proguard/src/proguard/retrace/
H A DReTrace.java54 private final String regularExpression; field in class:ReTrace
67 * @param regularExpression the regular expression for parsing the lines in
74 public ReTrace(String regularExpression, argument
78 this(regularExpression, verbose, mappingFile, null);
85 * @param regularExpression the regular expression for parsing the lines in
94 public ReTrace(String regularExpression, argument
99 this.regularExpression = regularExpression;
116 StringBuffer expressionBuffer = new StringBuffer(regularExpression.length() + 32);
122 int nextIndex = regularExpression
[all...]
/external/proguard/lib/
H A Dretrace.jarMETA-INF/ META-INF/MANIFEST.MF proguard/retrace/ReTrace$MethodInfo.class ReTrace.java ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 654 milliseconds