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

/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java335 * <a href="#UNIX_LINES">d</a> <a href="#MULTILINE">m</a> <a href="#DOTALL">s</a>
341 * <a href="#MULTILINE">m</a> <a href="#DOTALL">s</a> <a href="#UNICODE_CASE">u</a >
458 * of the entire input sequence. If {@link #MULTILINE} mode is activated then
460 * except at the end of input. When in {@link #MULTILINE} mode <tt>$</tt>
828 public static final int MULTILINE = 0x08; field in class:Pattern
1034 * {@link #CASE_INSENSITIVE}, {@link #MULTILINE}, {@link #DOTALL},
2051 if (has(MULTILINE)) {
2063 node = new UnixDollar(has(MULTILINE));
2065 node = new Dollar(has(MULTILINE));
2950 flags |= MULTILINE;
[all...]

Completed in 44 milliseconds