HomeSort by relevance Sort by last modified time
    Searched full:regularexpression (Results 1 - 25 of 27) sorted by null

1 2

  /external/proguard/src/proguard/util/
ListParser.java 52 public StringMatcher parse(String regularExpression)
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)
99 return isNegated(regularExpression) ?
100 new NotMatcher(stringParser.parse(regularExpression.substring(1))) :
101 stringParser.parse(regularExpression);
108 private boolean isNegated(String regularExpression)
    [all...]
ClassNameParser.java 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)))
    [all...]
FileNameParser.java 40 public StringMatcher parse(String regularExpression)
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) :
NameParser.java 39 public StringMatcher parse(String regularExpression)
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) :
StringParser.java 34 public StringMatcher parse(String regularExpression);
  /external/proguard/src/proguard/classfile/visitor/
ClassNameFilter.java 43 * @param regularExpression the regular expression against which class names
48 public ClassNameFilter(String regularExpression,
51 this(new ListParser(new ClassNameParser()).parse(regularExpression),
58 * @param regularExpression the regular expression against which class names
63 public ClassNameFilter(List regularExpression,
66 this(new ListParser(new ClassNameParser()).parse(regularExpression),
MemberDescriptorFilter.java 42 * @param regularExpression the regular expression against which member
47 public MemberDescriptorFilter(String regularExpression,
50 this(new ClassNameParser().parse(regularExpression), memberVisitor);
MemberNameFilter.java 42 * @param regularExpression the regular expression against which member
47 public MemberNameFilter(String regularExpression,
50 this(new NameParser().parse(regularExpression), memberVisitor);
  /external/proguard/src/proguard/io/
NameFilter.java 39 public NameFilter(String regularExpression,
42 this(regularExpression, acceptedDataEntryReader, null);
50 public NameFilter(String regularExpression,
54 super(new DataEntryNameFilter(new ListParser(new FileNameParser()).parse(regularExpression)),
  /external/icu4c/i18n/
uregex.cpp 32 struct RegularExpression: public UMemory {
34 RegularExpression();
35 ~RegularExpression();
50 RegularExpression::RegularExpression() {
62 RegularExpression::~RegularExpression() {
85 static UBool validateRE(const RegularExpression *re, UBool requiresText, UErrorCode *status) {
125 RegularExpression *re = new RegularExpression;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
uregex.cpp 31 struct RegularExpression: public UMemory {
33 RegularExpression();
34 ~RegularExpression();
49 RegularExpression::RegularExpression() {
61 RegularExpression::~RegularExpression() {
84 static UBool validateRE(const RegularExpression *re, UErrorCode *status, UBool requiresText = TRUE) {
124 RegularExpression *re = new RegularExpression;
    [all...]
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotationTypeFilter.java 45 * @param regularExpression the regular expression against which annotation
50 public AnnotationTypeFilter(String regularExpression,
53 this.regularExpressionMatcher = new ListParser(new ClassNameParser()).parse(regularExpression);
  /external/proguard/src/proguard/retrace/
ReTrace.java 57 private final String regularExpression;
70 * @param regularExpression the regular expression for parsing the lines in
77 public ReTrace(String regularExpression,
81 this(regularExpression, verbose, mappingFile, null);
88 * @param regularExpression the regular expression for parsing the lines in
97 public ReTrace(String regularExpression,
102 this.regularExpression = regularExpression;
119 StringBuffer expressionBuffer = new StringBuffer(regularExpression.length() + 32);
125 int nextIndex = regularExpression.indexOf('%', index)
    [all...]
  /libcore/libart/src/main/java/java/lang/
String.java     [all...]
  /libcore/luni/src/main/java/java/util/regex/
Pattern.java 359 * Returns a compiled form of the given {@code regularExpression}, as modified by the
373 public static Pattern compile(String regularExpression, int flags) throws PatternSyntaxException {
374 return new Pattern(regularExpression, flags);
415 * Tests whether the given {@code regularExpression} matches the given {@code input}.
416 * Equivalent to {@code Pattern.compile(regularExpression).matcher(input).matches()}.
423 public static boolean matches(String regularExpression, CharSequence input) {
424 return new Matcher(new Pattern(regularExpression, 0), input).matches();
  /prebuilts/tools/common/m2/internal/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
xercesImpl-2.6.2-sources.jar 
  /libcore/libdvm/src/main/java/java/lang/
String.java     [all...]
  /external/proguard/lib/
retrace.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
retrace.jar 
  /external/chromium_org/third_party/icu/source/tools/genrb/
wrtxml.cpp 445 fprintf(stderr, "Warning: Could not output comments to XLIFF file. ICU has been built without RegularExpression support.\n");
523 fprintf(stderr, "Warning: Could not output comments to XLIFF file. ICU has been built without RegularExpression support.\n");
    [all...]
  /external/icu4c/tools/genrb/
wrtxml.cpp 447 fprintf(stderr, "Warning: Could not output comments to XLIFF file. ICU has been built without RegularExpression support.\n");
525 fprintf(stderr, "Warning: Could not output comments to XLIFF file. ICU has been built without RegularExpression support.\n");
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
urename.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
  /prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 

Completed in 333 milliseconds

1 2