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

/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPath.java180 public XPathExpression compile(String expression) method in interface:XPath
/libcore/ojluni/src/main/java/java/util/regex/
H A DPattern.java57 * Pattern p = Pattern.{@link #compile compile}("a*b");
389 * and leads to a compile-time error; in order to match the string
539 * <tt>"\\u2014"</tt>, while not equal, compile into the same pattern, which
777 * RegExp r1 = RegExp.compile("abc", Pattern.I|Pattern.M);
778 * RegExp r2 = RegExp.compile("(?im)abc", 0);
949 public static Pattern compile(String regex) { method in class:Pattern
974 public static Pattern compile(String regex, int flags) throws PatternSyntaxException { method in class:Pattern
1035 * Pattern.compile(regex).matcher(input).matches()</pre></blockquote>
1050 Pattern p = Pattern.compile(rege
1331 private void compile() throws PatternSyntaxException { method in class:Pattern
[all...]
/libcore/ojluni/src/main/java/java/text/
H A DSimpleDateFormat.java686 // Verify and compile the given pattern.
687 compiledPattern = compile(pattern);
778 private char[] compile(String pattern) { method in class:SimpleDateFormat
2592 compiledPattern = compile(pattern);
2608 compiledPattern = compile(p);
2690 compiledPattern = compile(pattern);

Completed in 174 milliseconds