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.java55 * Pattern p = Pattern.{@link #compile compile}("a*b");
387 * and leads to a compile-time error; in order to match the string
536 * <tt>"\\u2014"</tt>, while not equal, compile into the same pattern, which
774 * RegExp r1 = RegExp.compile("abc", Pattern.I|Pattern.M);
775 * RegExp r2 = RegExp.compile("(?im)abc", 0);
945 public static Pattern compile(String regex) { method in class:Pattern
970 public static Pattern compile(String regex, int flags) throws PatternSyntaxException { method in class:Pattern
1031 * Pattern.compile(regex).matcher(input).matches()</pre></blockquote>
1046 Pattern p = Pattern.compile(rege
1327 private void compile() throws PatternSyntaxException { method in class:Pattern
[all...]
/libcore/ojluni/src/main/java/java/text/
H A DSimpleDateFormat.java683 // Verify and compile the given pattern.
684 compiledPattern = compile(pattern);
775 private char[] compile(String pattern) { method in class:SimpleDateFormat
2556 compiledPattern = compile(pattern);
2572 compiledPattern = compile(p);
2654 compiledPattern = compile(pattern);

Completed in 113 milliseconds