Searched refs:newline (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_3/main/streams/ |
| H A D | streams.c | 743 char newline[2] = "\n"; /* is this OK for Win? */ local 746 if (len > 0 && php_stream_write(stream, buf, len) && php_stream_write(stream, newline, 1)) {
|
| /PHP_5_3/Zend/ |
| H A D | zend_language_scanner.c | 1914 int newline = 0; local 1939 /* newline before label will be subtracted from returned text, but 1942 newline = 2; /* Windows newline */ 1944 newline = 1; 1947 CG(increment_lineno) = 1; /* For newline before label */ 1980 zend_scan_escape_string(zendlval, yytext, yyleng - newline, 0 TSRMLS_CC); 7071 int newline = 0; local 7096 /* newline before label will be subtracted from returned text, but 7099 newline [all...] |
| /PHP_5_3/ext/pcre/pcrelib/ |
| H A D | pcre_compile.c | 49 #define NLBLOCK cd /* Block containing newline information */ 1174 newline". PCRE does not support \N{name}. However, it does support 7780 int newline; local 7947 /* Handle different types of newline. The three bits give seven cases. The 7953 case 0: newline = NEWLINE; break; /* Build-time default */ 7954 case PCRE_NEWLINE_CR: newline = CHAR_CR; break; 7955 case PCRE_NEWLINE_LF: newline = CHAR_NL; break; 7957 PCRE_NEWLINE_LF: newline = (CHAR_CR << 8) | CHAR_NL; break; 7958 case PCRE_NEWLINE_ANY: newline = -1; break; 7959 case PCRE_NEWLINE_ANYCRLF: newline [all...] |
| H A D | pcre_exec.c | 48 #define NLBLOCK md /* Block containing newline information */ 2066 /* Multiline mode: start of subject unless notbol, or after any newline. */ 2090 /* Multiline mode: assert before any newline, or before end of subject 2118 /* Not multiline mode: assert before a terminating newline or before end of 2280 /* Match any single character type except newline; have to take care with 2313 any byte, even newline, independent of the setting of PCRE_DOTALL. */ 6248 int newline; local 6481 /* Handle different types of newline. The three bits give eight cases. If 6487 case 0: newline = NEWLINE; break; /* Compile-time default */ 6488 case PCRE_NEWLINE_CR: newline [all...] |
Completed in 33 milliseconds