Home
last modified time | relevance | path

Searched refs:newline (Results 26 – 47 of 47) sorted by relevance

12

/PHP-5.5/ext/pcre/pcrelib/
H A DHACKING171 OP_ANY match any one character other than newline
172 OP_ALLANY match any one character, including newline
178 OP_CIRCM ^ multiline mode (start of data or after newline)
191 OP_EODN match end of data or newline at end: \Z
193 OP_DOLL $ (end of data, or before final newline)
194 OP_DOLLM $ multiline mode (end of data or before newline)
196 OP_ANYNL match any Unicode newline sequence
H A DREADME255 of the preceding, or any of the Unicode newline sequences as indicating the
257 of PCRE can change the selection at run time. The default newline indicator
259 newline indicator by adding --enable-newline-is-cr or --enable-newline-is-lf
260 or --enable-newline-is-crlf or --enable-newline-is-anycrlf or
261 --enable-newline-is-any to the "configure" command, respectively.
263 If you specify --enable-newline-is-cr or --enable-newline-is-crlf, some of
266 to be some failures. With --enable-newline-is-anycrlf or
267 --enable-newline-is-any, many tests should succeed, but there may be some
H A Dpcre_exec.c6363 int newline; in pcre_exec() local
6615 case PCRE_NEWLINE_CR: newline = CHAR_CR; break; in pcre_exec()
6616 case PCRE_NEWLINE_LF: newline = CHAR_NL; break; in pcre_exec()
6619 case PCRE_NEWLINE_ANY: newline = -1; break; in pcre_exec()
6620 case PCRE_NEWLINE_ANYCRLF: newline = -2; break; in pcre_exec()
6624 if (newline == -2) in pcre_exec()
6628 else if (newline < 0) in pcre_exec()
6635 if (newline > 255) in pcre_exec()
6638 md->nl[0] = (newline >> 8) & 255; in pcre_exec()
6639 md->nl[1] = newline & 255; in pcre_exec()
[all …]
H A DNEWS360 5. Some PCRE-specific settings for varying the newline options at the start of
438 2. The option PCRE_NEWLINE_ANY causes PCRE to recognize any Unicode newline
439 sequence as a newline.
441 3. The \R escape matches a single Unicode newline sequence as a single unit.
654 4. Added --enable-newline-is-cr and --enable-newline-is-lf to the configure
H A Dpcre_compile.c9002 int newline; in pcre_compile2() local
9233 case PCRE_NEWLINE_CR: newline = CHAR_CR; break; in pcre_compile2()
9234 case PCRE_NEWLINE_LF: newline = CHAR_NL; break; in pcre_compile2()
9237 case PCRE_NEWLINE_ANY: newline = -1; break; in pcre_compile2()
9238 case PCRE_NEWLINE_ANYCRLF: newline = -2; break; in pcre_compile2()
9242 if (newline == -2) in pcre_compile2()
9246 else if (newline < 0) in pcre_compile2()
9253 if (newline > 255) in pcre_compile2()
9256 cd->nl[0] = (newline >> 8) & 255; in pcre_compile2()
9257 cd->nl[1] = newline & 255; in pcre_compile2()
[all …]
H A DChangeLog1881 according to the set newline convention.
1911 the cases when CRLF is a valid newline sequence.
2030 the end, a newline was missing in the output.
3003 characters when looking for a newline.
3359 CRLF as a newline sequence.
3420 "newline" was defined as CRLF. This has been fixed.
3639 newline sequence, and the newline setting is CRLF or ANY, and the next two
5011 newline. It is either LF (10) or CR (13).
5256 11. Added --enable-newline-is-cr and --enable-newline-is-lf to the configure
5409 the next newline as if a previous match had failed.
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dfilesize_variation4-win32.phpt23 …@##$%^&*():<>?|~+!;',.\][{}(special) chars, 12345(numeric) chars, and \n(newline char), \t(tab), \…
H A Dfilesize_variation4.phpt25 rs, 12345(numeric) chars, and \n(newline char), \t(tab), \0, \r and so on........\0";
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt1030 --enable-newline-is-cr
1038 --enable-newline-is-crlf
1042 --enable-newline-is-anycrlf
1047 --enable-newline-is-any
1208 The options that select newline behaviour, such as --enable-newline-is-
1841 ceding, or any Unicode newline sequence. The Unicode newline sequences
3346 check to see if the newline convention recognizes CRLF as a newline,
3498 if the newline convention recognizes CRLF as a newline, and if so, and
4861 change of newline convention.
7703 \n newline (hex 0A)
[all …]
/PHP-5.5/ext/tidy/tests/
H A D012.phpt28 …LOR=#FFFFFF ALINK=#000000><B>Hi</B><I>Bye<U>Test</U></I></BODY></HTML>", array('newline' => 'LF'));
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput2156 First char at start or follows newline
162 First char at start or follows newline
370 First char at start or follows newline
6492 Forced newline sequence: LF
6523 Forced newline sequence: CR
6538 Forced newline sequence: LF
6553 Forced newline sequence: CRLF
6583 Forced newline sequence: LF
9076 Forced newline sequence: CRLF
9087 Forced newline sequence: CRLF
[all …]
H A Dtestoutput18-16656 Forced newline sequence: CRLF
H A Dtestoutput18-32656 Forced newline sequence: CRLF
H A Dtestoutput15792 Forced newline sequence: CRLF
H A Dtestoutput72293 First char at start or follows newline
/PHP-5.5/Zend/
H A Dzend_language_scanner.c2054 int newline = 0; in lex_scan() local
2084 newline = 2; /* Windows newline */ in lex_scan()
2086 newline = 1; in lex_scan()
2122 zend_scan_escape_string(zendlval, yytext, yyleng - newline, 0 TSRMLS_CC); in lex_scan()
7523 int newline = 0; in lex_scan() local
7553 newline = 2; /* Windows newline */ in lex_scan()
7555 newline = 1; in lex_scan()
7573 zend_copy_value(zendlval, yytext, yyleng - newline); in lex_scan()
7575 HANDLE_NEWLINES(yytext, yyleng - newline); in lex_scan()
/PHP-5.5/main/streams/
H A Dstreams.c813 char newline[2] = "\n"; /* is this OK for Win? */ in _php_stream_puts() local
816 if (len > 0 && php_stream_write(stream, buf, len) && php_stream_write(stream, newline, 1)) { in _php_stream_puts()
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DAPI67 ONIG_OPTION_MULTILINE '.' match with newline
/PHP-5.5/ext/ereg/regex/
H A Dtests16 # is newline, `S' is space, `T' is tab, `Z' is NUL.
/PHP-5.5/ext/phar/phar/
H A Dpharcommand.inc69 .' mark itself \'#!\' and the newline character are optional.'
/PHP-5.5/
H A DNEWS987 . Fixed bug #55496 (Interactive mode doesn't force a newline before the
1277 . Fixed bug #66535 (Don't add newline after X-PHP-Originating-Script) (Tjerk)
4673 . Fixed bug #52508 (newline problem with parse_ini_file+INI_SCANNER_RAW).
5031 followed by no newline). (Felipe)
5073 - Fixed bug #51604 (newline in end of header is shown in start of message).
6279 newline). (Arnaud)
9025 newline). (Marcus)
/PHP-5.5/build/
H A Dlibtool.m46249 # Be careful that the start marker always follows a newline.

Completed in 186 milliseconds

12