Searched refs:re (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
H A DOldRuntimeExceptionTest.java27 RuntimeException re = new RuntimeException(message, npe);
28 assertEquals(message, re.getMessage());
29 assertEquals(npe, re.getCause());
31 re = new RuntimeException(null, npe);
32 assertNull(re.getMessage());
34 re = new RuntimeException(message, null);
35 assertNull(re.getCause());
40 RuntimeException re = new RuntimeException(npe);
41 assertEquals(npe, re.getCause());
43 re
[all...]
/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...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DSSLContextSpiTest.java60 } catch (RuntimeException re) {
61 String str = re.getMessage();
79 } catch (RuntimeException re) {
80 String str = re.getMessage();
110 } catch (RuntimeException re) {
111 String str = re.getMessage();
121 } catch (RuntimeException re) {
122 String str = re.getMessage();
132 } catch (RuntimeException re) {
133 String str = re
[all...]
/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/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/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/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java381 * Return after any text token when we're looking for a single
405 * when we're looking for a single token. Otherwise they're skipped.
1009 // we're looking for "<?xml " with case insensitivity
1316 * If we're lucky (which we usually are), we'll return a single slice of
/libcore/json/src/test/java/org/json/
H A DJSONTokenerTest.java384 // we're mixing Java escaping like \" and JavaScript escaping like \\\"
397 // we're mixing Java escaping like \\ and JavaScript escaping like \\u
/libcore/
H A DJavaLibrary.mk75 # We compile android_icu4j along with core-libart because we're implementing parts of core-libart
H A Dopenjdk_java_files.mk1345 # NOTE: Files in java/lang/invoke are listed here because they're not being made public

Completed in 285 milliseconds