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

/libcore/tools/upstream/
H A Doj_upstream_comparison.py52 import re namespace
63 match = re.match("\s+ojluni/src/main/java/(.+\.java)\s*\\\s*", line)
/libcore/tools/docs/crypto/
H A Dupdate_crypto_support.py29 import re namespace
113 name = re.sub('WITH', 'with', name, flags=re.I)
114 name = re.sub('DESEDE', 'DESede', name, flags=re.I)
115 name = re.sub('HMAC', 'Hmac', name, flags=re.I)
/libcore/ojluni/src/main/java/java/util/regex/
H A DPattern.java1167 public static String[] fastSplit(String re, String input, int limit) { argument
1169 int len = re.length();
1173 char ch = re.charAt(0);
1175 // We're looking for a single non-metacharacter. Easy.
1177 // We're looking for a quoted character.
1179 ch = re.charAt(1);
/libcore/ojluni/src/main/java/sun/misc/
H A DRegexpPool.java49 * @param re The regular expression to add to the pool.
58 public void add(String re, Object ret) throws REException { argument
59 add(re, ret, false);
66 * @param re The regular expression to be replaced in the pool.
74 public void replace(String re, Object ret) { argument
76 add(re, ret, true);
84 * @param re The regular expression to be deleted from the pool.
88 public Object delete(String re) { argument
92 int len = re.length() - 1;
96 if (!re
165 add(String re, Object ret, boolean replace) argument
268 String re = null; field in class:RegexpNode
[all...]

Completed in 99 milliseconds