| /PHP_TRUNK/build/ |
| H A D | shtool | 1718 found=0 1728 found=1 1734 if [ $found = 1 ]; then
|
| /PHP_TRUNK/ext/ |
| H A D | ext_skel | 140 dnl AC_MSG_RESULT(found in \$i) 146 dnl AC_MSG_RESULT([not found]) 162 dnl AC_MSG_ERROR([wrong $extname lib version or lib not found])
|
| /PHP_TRUNK/ext/oci8/tests/ |
| H A D | details.inc | 64 , 2024 // database link not found
|
| /PHP_TRUNK/ext/phar/phar/ |
| H A D | pharcommand.inc | 214 $found = NULL; 241 $found = NULL; 244 $found = $sub; 252 if (isset($found)) { 253 self::notice("PEAR package PHP_Archive: $found.\n"); 262 $arg = $found;
|
| /PHP_TRUNK/ext/spl/examples/ |
| H A D | searchiterator.inc | 22 /** @internal whether an entry was found already */
|
| /PHP_TRUNK/ext/spl/internal/ |
| H A D | multipleiterator.inc | 119 * return true on the first valid sub iterator found. If no Iterator
|
| /PHP_TRUNK/scripts/dev/ |
| H A D | credits | 14 the information found in the various php5/ext/.../CREDITS and
|
| /PHP_TRUNK/win32/build/ |
| H A D | confutils.js | 179 /* first difference found */
339 found = false;
342 found = true;
375 if (!found) {
518 // returns the dir in which the file was found,
519 // true if it was found in the default env path,
520 // or false if it was not found at all.
525 var i, found = false, place = false, file, env;
539 found = true;
547 if (!found [all...] |
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gdft.c | 356 FT_CharMap found = 0; local 472 found = charmap; 485 found = charmap; 488 found = charmap; 491 found = charmap; 496 found = charmap; 499 if (!found) { 507 a->face->charmap = found; 906 /* No character set found! */ 908 return "No character set found"; [all...] |
| /PHP_TRUNK/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 113 unsigned char *found; local 149 found = (unsigned char *)php_memnstr((char *)haystack + offset, (char *)needle, needle_len, (char *)haystack + haystack_len); 152 if (!found) { 159 RETURN_LONG(found - haystack); 180 unsigned char *found; local 222 found = (unsigned char*) php_memnstr((char *)haystack_dup + offset, (char *)needle_dup, needle_len, (char *)haystack_dup + haystack_len); 227 if (found) { 228 RETURN_LONG(found - haystack_dup); 599 unsigned char *haystack, *needle, *found; local 625 found [all...] |
| /PHP_TRUNK/ext/intl/timezone/ |
| H A D | timezone_methods.cpp | 551 bool found = false; local 552 for (int i = 0; !found && i < sizeof(display_types)/sizeof(*display_types); i++) { 554 found = true; 556 if (!found) {
|
| /PHP_TRUNK/ext/dom/ |
| H A D | xml_common.h | 57 PHP_DOM_EXPORT zval *php_dom_create_object(xmlNodePtr obj, int *found, zval* return_value, dom_object *domobj TSRMLS_DC);
|
| /PHP_TRUNK/ext/spl/ |
| H A D | php_spl.c | 68 int found; local 77 found = zend_hash_find(EG(class_table), lc_name, len +1, (void **) &ce); 80 found = zend_lookup_class(name, len, &ce TSRMLS_CC); 82 if (found != SUCCESS) { 319 int class_name_len, file_exts_len = SPL_G(autoload_extensions_len), found = 0; local 342 found = 1; 356 if (!found && !SPL_G(autoload_running)) { 520 zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function '%s' not %s (%s)", func_name, alfi.func_ptr ? "callable" : "found", error);
|
| H A D | spl_observer.c | 441 int hash_len, found; local 447 found = zend_hash_exists(&intern->storage, hash, hash_len); 449 return found; 523 zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0 TSRMLS_CC, "Object not found");
|
| /PHP_TRUNK/ext/xsl/ |
| H A D | php_xsl.c | 228 zval *php_xsl_create_object(xsltStylesheetPtr obj, int *found, zval *wrapper_in, zval *return_value TSRMLS_DC) argument 233 *found = 0; 247 *found = 1;
|
| H A D | php_xsl.h | 74 zval *php_xsl_create_object(xsltStylesheetPtr obj, int *found, zval *wrapper_in, zval *return_value TSRMLS_DC);
|
| H A D | xsltprocessor.c | 663 int found; local 674 found = zend_lookup_class(ret_class, ret_class_len, &ce TSRMLS_CC); 675 if ((found != SUCCESS) || !instanceof_function(*ce, curce TSRMLS_CC)) {
|
| /PHP_TRUNK/ext/phar/ |
| H A D | dirstream.c | 197 char *entry, *found, *save, *str_key; local 241 if (NULL != (found = (char *) memchr(str_key, '/', keylen))) { 243 entry = (char *) safe_emalloc(found - str_key, 1, 1); 244 memcpy(entry, str_key, found - str_key); 245 keylen = found - str_key; 257 /* entry in directory not found */ 277 if (NULL != (found = (char *) memchr(save, '/', keylen - dirlen - 1))) { 280 entry = (char *) safe_emalloc(found - save + dirlen, 1, 1); 281 memcpy(entry, save + dirlen + 1, found - save - dirlen - 1); 282 keylen = found [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | html.c | 439 int found = 0; local 445 found = 1; 449 if (!found) { 565 unsigned char found; local 598 found = unimap_bsearch(unimap_iso885915, 600 if (found) 601 *res = found; 611 found = unimap_bsearch(unimap_win1252, 613 if (found) 614 *res = found; [all...] |
| H A D | string.c | 347 Finds length of initial segment consisting entirely of characters found in mask. If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars) */ 355 Finds length of initial segment consisting entirely of characters not found in mask. If start or/and length is provide works like strcspn(substr($s,$start,$len),$bad_chars) */ 1057 int allocated = EXPLODE_ALLOC_STEP, found = 0; local 1061 positions[found++] = p1; 1063 if (found >= allocated) { 1064 allocated = found + EXPLODE_ALLOC_STEP;/* make sure we have enough memory */ 1067 positions[found++] = p1 = p2 + Z_STRLEN_P(delim); 1070 to_return = limit + found; 1071 /* limit is at least -1 therefore no need of bounds checking : i will be always less than found */ 1703 char *found local 1757 char *found = NULL; local 1804 char *found = NULL; local 1852 char *found = NULL; local 2094 const char *found = NULL; local [all...] |
| /PHP_TRUNK/ext/mbstring/ |
| H A D | php_mbregex.c | 451 int found = 0; local 456 found = zend_hash_find(&MBREX(ht_rc), (char *)pattern, patlen+1, (void **) &rc); 457 if (found == FAILURE || (*rc)->options != options || (*rc)->enc != enc || (*rc)->syntax != syntax) { 465 } else if (found == SUCCESS) {
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_xml.c | 317 char *found = strrchr((char*)inval, ':'); local 319 if (found != NULL && found != (char*)inval) { 320 (*namespace) = estrndup((char*)inval, found - (char*)inval); 321 (*value) = estrdup(++found);
|
| /PHP_TRUNK/ext/zip/ |
| H A D | php_zip.c | 565 were found, others return the GLOB_NOMATCH error code. 1661 int found; local 1696 found = php_zip_glob(pattern, pattern_len, flags, return_value TSRMLS_CC); 1698 found = php_zip_pcre(pattern, pattern_len, path, path_len, return_value TSRMLS_CC); 1701 if (found > 0) { 1705 for (i = 0; i < found; i++) {
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_builtin_functions.c | 1224 int found; local 1247 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1249 RETURN_BOOL(found == SUCCESS && !(((*ce)->ce_flags & (ZEND_ACC_INTERFACE | ZEND_ACC_TRAIT)) > ZEND_ACC_EXPLICIT_ABSTRACT_CLASS)); 1267 int found; local 1290 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1292 RETURN_BOOL(found == SUCCESS && (*ce)->ce_flags & ZEND_ACC_INTERFACE); 1310 int found; local 1333 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1335 RETURN_BOOL(found == SUCCESS && (((*ce)->ce_flags & ZEND_ACC_TRAIT) > ZEND_ACC_EXPLICIT_ABSTRACT_CLASS)); 1394 int found; local [all...] |
| /PHP_TRUNK/ext/date/lib/ |
| H A D | parse_date.re | 724 static long timelib_lookup_zone(char **ptr, int *dst, char **tz_abbr, int *found) 742 *found = 1; 744 *found = 0; 781 int found = 0; 787 offset = timelib_lookup_zone(ptr, dst, &tz_abbr, &found); 788 if (found) { 792 /* If we found a TimeZone identifier, use it */ 803 found++; 806 if (found && t->zone_type != TIMELIB_ZONETYPE_ID) { 810 *tz_not_found = (found [all...] |