Lines Matching defs:end

231  *     <td headers="matches">The end of a line</td></tr>
239 * <td headers="matches">The end of the previous match</td></tr>
241 * <td headers="matches">The end of the input but for the final
244 * <td headers="matches">The end of the input</td></tr>
431 * the end of a line of the input character sequence. The following are
457 * line terminators and only match at the beginning and the end, respectively,
460 * except at the end of input. When in {@link #MULTILINE} mode <tt>$</tt>
461 * matches just before a line terminator or the end of the input sequence.
741 * within a group; in the latter case, flags are restored at the end of the
810 * with <tt>#</tt> are ignored until the end of a line.
821 * just after or just before, respectively, a line terminator or the end of
823 * beginning and the end of the entire input sequence.
1138 * this pattern or is terminated by the end of the input sequence. The
1204 index = m.end();
1209 index = m.end();
1710 System.out.println("**** end contents prolog loop");
1714 System.out.println("**** end contents Loop body");
1718 System.out.println("**** end contents Curly body");
1722 System.out.println("**** end contents GroupCurly body");
1787 * Mark the end of pattern with a specific character.
1869 * xmode parse past comment to end of line.
1879 * xmode peek past comment to end of line.
1931 private boolean findSupplementary(int start, int end) {
1932 for (int i = start; i < end; i++) {
1958 private Node expr(Node end) {
1964 Node node = sequence(end);
1973 branchConn.next = end;
1975 if (node == end) {
1976 // if the node returned from sequence() is "end"
1987 if (prev == end) {
1990 // replace the "end" with "branchConn" at its tail.next
2007 private Node sequence(Node end) {
2111 return end;
2113 tail.next = end;
3484 * Node to anchor at the end of input. This is the absolute end, so this
3485 * should not match at the last newline before the end as $ will.
3511 // Perl does not match ^ at end of input even after newline
3542 // Perl does not match ^ at end of input even after newline
3570 * Node to anchor at the end of a line or the end of input based on the
3573 * When not in multiline mode, the $ can only match at the very end
3603 // end of input
3606 // If not multiline, fall through so that the end
3608 // at the very end so the end was hit; more input
3626 // Matched at current end so hit end
3628 // If a $ matches because of end of input, then more input
3640 * Node to anchor at the end of a line or the end of input based on the
3655 // match at very end or one before end
3666 // Matching because at the end or 1 before the end;
3669 // If a $ matches because of end of input, then more input
4457 * A Guard node at the end of each atom node in a Branch. It
5029 // Set end boundary
5060 // Set end boundary
5220 // Tried to access char past the end
5379 // and it replaced its Start() which always searches to the end