| /PHP_5_3/ext/bcmath/libbcmath/ |
| H A D | configure | 1266 of an if-expression whose if-part is not a constant expression */
|
| /PHP_5_3/ext/oci8/tests/ |
| H A D | details.inc | 15 include(dirname(__FILE__)."/details_local.inc"); // this file is not part of the source distribution; make it your own local variant of details.inc
|
| /PHP_5_3/ext/soap/tests/schema/ |
| H A D | test_schema.inc | 29 <part name="testParam" $type/>
|
| /PHP_5_3/ext/spl/examples/ |
| H A D | findfile.inc | 30 * part of it is used as separate directory.
|
| H A D | regexfindfile.inc | 24 * part of it is used as separate directory.
|
| /PHP_5_3/ext/spl/internal/ |
| H A D | recursivetreeiterator.inc | 55 * Set prefix part as used in getPrefix() and stored in $prefix. 56 * @param $part any PREFIX_* const. 57 * @param $value new prefix string for specified part. 58 * @throws OutOfRangeException if 0 > $part or $part > 5. 60 function setPrefixPart($part, $value) 62 if (0 > $part || $part > 5) { 65 $this->prefix[$part] = (string)$value;
|
| H A D | splfileobject.inc | 164 /** Read and return remaining part of stream 165 * @return size of remaining part passed through
|
| /PHP_5_3/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 162 /* do utf16 part of the strpos */ 237 /* do utf16 part of the strpos */ 398 Returns part of a string */ 598 zend_bool part = 0; local 600 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", (char **)&haystack, &haystack_len, (char **)&needle, &needle_len, &part) == FAILURE) { 632 if (part) { 653 if (part) { 663 /* {{{ proto string grapheme_strstr(string haystack, string needle[, bool part]) 671 /* {{{ proto string grapheme_stristr(string haystack, string needle[, bool part]) 802 zval *next = NULL; /* return offset of next part o [all...] |
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 907 PHP re-assigns CL_EXPUNGE a custom value that can be used as part of the imap_open() bitfield 1021 TYPEMULTIPART multiple part 3489 PART *mypart=NULL, *part; local 3677 bod->nested.part = mail_newbody_part(); 3678 mypart = bod->nested.part; 3781 if (bod && bod->type == TYPEMULTIPART && (!bod->nested.part || !bod->nested.part->next)) { 3827 /* first body part */ 3828 part = bod->nested.part; 4552 PART *part; local [all...] |
| H A D | php_imap.h | 56 #define CONTENT_PART nested.part 63 #define CONTENT_PART contents.part
|
| /PHP_5_3/ext/mbstring/ |
| H A D | mbstring.c | 293 ZEND_ARG_INFO(0, part) 300 ZEND_ARG_INFO(0, part) 307 ZEND_ARG_INFO(0, part) 314 ZEND_ARG_INFO(0, part) 2269 /* {{{ proto string mb_strstr(string haystack, string needle[, bool part[, string encoding]]) 2277 zend_bool part = 0; local 2286 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|bs", (char **)&haystack.val, (int *)&haystack.len, (char **)&needle.val, (int *)&needle.len, &part, &enc_name, &enc_name_len) == FAILURE) { 2305 if (part) { 2327 /* {{{ proto string mb_strrchr(string haystack, string needle[, bool part[, string encoding]]) 2335 zend_bool part local 2391 zend_bool part = 0; local 2450 zend_bool part = 0; local [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_sdl.c | 452 xmlNodePtr *message, part; local 471 tmp = get_attribute(header->properties, "part"); 473 soap_error0(E_ERROR, "Parsing WSDL: Missing part attribute for <header>"); 475 part = get_node_with_attribute_ex((*message)->children, "part", WSDL_NAMESPACE, "name", (char*)tmp->children->content, NULL); 476 if (!part) { 477 soap_error1(E_ERROR, "Parsing WSDL: Missing part '%s' in <message>", tmp->children->content); 511 tmp = get_attribute(part->properties, "type"); 513 h->encode = get_encoder_from_prefix(ctx->sdl, part, tmp->children->content); 515 tmp = get_attribute(part 666 xmlNodePtr trav, part, message = NULL, *tmp; local [all...] |
| /PHP_5_3/ext/spl/ |
| H A D | spl_iterators.c | 1050 /* {{{ proto void RecursiveTreeIterator::setPrefixPart(int part, string prefix) throws OutOfRangeException 1055 long part; local 1059 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ls", &part, &prefix, &prefix_len) == FAILURE) { 1062 if (0 > part || part > 5) { 1067 smart_str_free(&object->prefix[part]); 1068 smart_str_appendl(&object->prefix[part], prefix, prefix_len); 1235 ZEND_ARG_INFO(0, part)
|
| /PHP_5_3/ext/standard/ |
| H A D | basic_functions.c | 2225 ZEND_ARG_INFO(0, part) 2231 ZEND_ARG_INFO(0, part)
|
| H A D | string.c | 1623 /* {{{ proto string stristr(string haystack, string needle[, bool part]) 1634 zend_bool part = 0; local 1636 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz|b", &haystack, &haystack_len, &needle, &part) == FAILURE) { 1664 if (part) { 1677 /* {{{ proto string strstr(string haystack, string needle[, bool part]) 1687 zend_bool part = 0; local 1689 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz|b", &haystack, &haystack_len, &needle, &part) == FAILURE) { 1711 if (part) { 2147 Returns part of a string */ 2212 Replaces part o [all...] |