Home
last modified time | relevance | path

Searched refs:start (Results 276 – 300 of 346) sorted by relevance

1...<<11121314

/PHP-5.5/ext/pcre/pcrelib/
H A DChangeLog463 text from the end to the start.
547 function to check stack availability. It is called at the start of
620 start.
651 (*NO_AUTO_POSSESS) at the start of a pattern.
1270 match a (*MARK), and the match failed at the start of the subject, a
1611 (.*a|.*)+ was not marked as matching at start or after a newline.
2530 28. Added support for (*UTF8) at the start of a pattern.
2927 start sets both bits.
3144 29. Added (*CR) etc for changing newline setting at start of pattern.
4360 start at the start point or following a newline. The same bug applied to
[all …]
/PHP-5.5/ext/mysql/
H A Dmysql.mak29 start.c
/PHP-5.5/ext/pgsql/
H A Dpgsql.mak26 start.c
/PHP-5.5/ext/standard/tests/strings/
H A Dsetlocale_basic2.phpt29 // start the buffering of next command to internal output buffer
/PHP-5.5/ext/ldap/
H A Dldap.mak21 start.c
/PHP-5.5/ext/xml/
H A Dxml.mak21 start.c
/PHP-5.5/ext/imap/tests/
H A Dimap_include.inc12 // record test start time (used by displayOverviewFields())
/PHP-5.5/ext/openssl/
H A Dopenssl.mak30 start.c \
/PHP-5.5/ext/intl/transliterator/
H A Dtransliterator_class.c367 ZEND_ARG_INFO( 0, start )
/PHP-5.5/ext/standard/tests/dir/
H A Drewinddir_variation1.phpt6 * Description: Rewind dir_handle back to the start
/PHP-5.5/ext/mbstring/
H A Dmbstring.c327 ZEND_ARG_INFO(0, start)
334 ZEND_ARG_INFO(0, start)
346 ZEND_ARG_INFO(0, start)
1066 static char *php_mb_rfc1867_substring_conf(const zend_encoding *encoding, char *start, int len, cha… in php_mb_rfc1867_substring_conf() argument
1072 for (i = 0; i < len && start[i] != quote; ++i) { in php_mb_rfc1867_substring_conf()
1073 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { in php_mb_rfc1867_substring_conf()
1074 *resp++ = start[++i]; in php_mb_rfc1867_substring_conf()
1076 size_t j = php_mb_mbchar_bytes_ex(start+i, (const mbfl_encoding *)encoding); in php_mb_rfc1867_substring_conf()
1079 *resp++ = start[i++]; in php_mb_rfc1867_substring_conf()
/PHP-5.5/
H A DREADME.PHP4-TO-PHP5-THIN-CHANGES26 because your code may start emitting E_WARNING out of the blue.
H A DREADME.GIT-RULES34 start fighting publicly - take it up in private email.
H A DCODING_STANDARDS153 possible. Each word in the class name should start with a capital letter,
225 5. Preprocessor statements (#if and such) MUST start at column one. To
H A DINSTALL294 /path/to/apachectl start
298 /path/to/httpsdctl start
301 stop and start:
416 /usr/local/apache2/bin/apachectl start
484 /usr/local/apache2/bin/apachectl start
674 done in the start script for your web server. The start script is often
764 wanted to start, as a CGI script (a CGI script inside of the admin
768 line as root user and start it manually - you will see there are no
1022 # /etc/init.d/apache2 start
1288 it before you can start using the extension.
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregint.h716 OnigStackIndex start; /* prev. info (for backtrack "(...)*" ) */ member
738 const UChar* start; /* search start position (for \G: BEGIN_POSITION) */ member
H A Dregparse.c1000 start: in onig_node_free()
1030 goto start; in onig_node_free()
2476 get_name_end_code_point(OnigCodePoint start) in get_name_end_code_point() argument
2478 switch (start) { in get_name_end_code_point()
3131 start: in fetch_token()
3682 goto start; in fetch_token()
3727 goto start; in fetch_token()
3734 goto start; in fetch_token()
3990 UChar *prev, *start, *p = *src; in fetch_char_property_to_ctype() local
3994 start = prev = p; in fetch_char_property_to_ctype()
[all …]
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c1727 zend_uchar *start = bit_area; in php_mysqlnd_rowp_read_text_protocol() local
1735 bit_area += 1 + sprintf((char *)start, "%ld", Z_LVAL_PP(current_field)); in php_mysqlnd_rowp_read_text_protocol()
1736 ZVAL_STRINGL(*current_field, (char *) start, bit_area - start - 1, 0); in php_mysqlnd_rowp_read_text_protocol()
1742 ZVAL_STRINGL(*current_field, (char *) start, bit_area - start - 1, 0); in php_mysqlnd_rowp_read_text_protocol()
/PHP-5.5/ext/soap/
H A Dphp_schema.c500 char *str, *start, *end, *next; in schema_union() local
506 start = str; in schema_union()
507 while (start != NULL && *start != '\0') { in schema_union()
508 end = strchr(start,' '); in schema_union()
516 parse_namespace(BAD_CAST(start), &type, &ns); in schema_union()
538 start = next; in schema_union()
/PHP-5.5/ext/opcache/Optimizer/
H A Dzend_optimizer.c299 if (op_array->brk_cont_array[brk].start <= (opline - op_array->opcodes) && in replace_tmp_by_const()
/PHP-5.5/ext/xml/tests/
H A Dxml_set_element_handler_variation1.phpt12 * Description: Set up start and end element handlers
/PHP-5.5/ext/intl/
H A Dphp_intl.c220 ZEND_ARG_INFO(0, start)
435 ZEND_ARG_INFO( 0, start )
/PHP-5.5/ext/pcre/
H A Dphp_pcre.c230 static zend_always_inline int calculate_unit_length(pcre_cache_entry *pce, char *start) in calculate_unit_length() argument
235 char *end = start; in calculate_unit_length()
239 unit_len = end - start; in calculate_unit_length()
/PHP-5.5/ext/intl/tests/
H A Dgrapheme.phpt315 $res_str .= "\n" . 'function grapheme_substr($string, $start, $length = -1) {}' . "\n\n";
542 … grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_COUNT, $start = 0[, $next])' . "…
629 …n grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXBYTES, $start = 0)' . "\n\n";
687 …n grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXCHARS, $start = 0)' . "\n\n";
938 function grapheme_substr($string, $start, $length = -1) {}
1080 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_COUNT, $start = 0[, $next…
1124 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXBYTES, $start = 0)
1155 function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_MAXCHARS, $start = 0)
/PHP-5.5/ext/standard/tests/file/
H A Dparse_ini_file.phpt16 ; start of ini file

Completed in 176 milliseconds

1...<<11121314