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

/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.java1171 public static String[] fastSplit(String re, String input, int limit) { argument
1173 int len = re.length();
1177 char ch = re.charAt(0);
1179 // We're looking for a single non-metacharacter. Easy.
1181 // We're looking for a quoted character.
1183 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 64 milliseconds