| /PHP_5_3/build/ |
| H A D | shtool | 1718 found=0 1728 found=1 1734 if [ $found = 1 ]; then
|
| /PHP_5_3/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_5_3/ext/oci8/tests/ |
| H A D | details.inc | 64 , 2024 // database link not found
|
| /PHP_5_3/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_5_3/ext/spl/examples/ |
| H A D | searchiterator.inc | 22 /** @internal whether an entry was found already */
|
| /PHP_5_3/ext/spl/internal/ |
| H A D | multipleiterator.inc | 119 * return true on the first valid sub iterator found. If no Iterator
|
| /PHP_5_3/scripts/dev/ |
| H A D | credits | 14 the information found in the various php5/ext/.../CREDITS and
|
| /PHP_5_3/win32/build/ |
| H A D | confutils.js | 177 /* first difference found */
337 found = false;
340 found = true;
373 if (!found) {
515 // returns the dir in which the file was found,
516 // true if it was found in the default env path,
517 // or false if it was not found at all.
522 var i, found = false, place = false, file, env;
536 found = true;
544 if (!found [all...] |
| /PHP_5_3/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_5_3/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); 595 unsigned char *haystack, *needle, *found; local 621 found [all...] |
| /PHP_5_3/ext/date/lib/ |
| H A D | parse_date.re | 759 static long timelib_lookup_zone(char **ptr, int *dst, char **tz_abbr, int *found) 777 *found = 1; 779 *found = 0; 816 int found = 0; 822 offset = timelib_lookup_zone(ptr, dst, &tz_abbr, &found); 823 if (found) { 827 /* If we found a TimeZone identifier, use it */ 838 found++; 841 if (found && t->zone_type != TIMELIB_ZONETYPE_ID) { 845 *tz_not_found = (found [all...] |
| /PHP_5_3/ext/dom/ |
| H A D | php_dom.c | 1319 PHP_DOM_EXPORT zval *php_dom_create_object(xmlNodePtr obj, int *found, zval *wrapper_in, zval *return_value, dom_object *domobj TSRMLS_DC) argument 1325 *found = 0; 1339 *found = 1;
|
| H A D | xml_common.h | 57 PHP_DOM_EXPORT zval *php_dom_create_object(xmlNodePtr obj, int *found, zval *in, zval* return_value, dom_object *domobj TSRMLS_DC);
|
| /PHP_5_3/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_5_3/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) { 288 int class_name_len, file_exts_len = SPL_G(autoload_extensions_len), found = 0; local 311 found = 1; 325 if (!found && !SPL_G(autoload_running)) { 489 zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function '%s' not %s (%s)", func_name, alfi.func_ptr ? "callable" : "found", error);
|
| /PHP_5_3/ext/standard/ |
| H A D | html.c | 852 int found = 0; local 858 found = 1; 862 if (!found) {
|
| H A D | string.c | 274 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) */ 282 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) */ 984 int allocated = EXPLODE_ALLOC_STEP, found = 0; local 988 positions[found++] = p1; 990 if (found >= allocated) { 991 allocated = found + EXPLODE_ALLOC_STEP;/* make sure we have enough memory */ 994 positions[found++] = p1 = p2 + Z_STRLEN_P(delim); 997 to_return = limit + found; 998 /* limit is at least -1 therefore no need of bounds checking : i will be always less than found */ 1630 char *found local 1684 char *found = NULL; local 1731 char *found = NULL; local 1779 char *found = NULL; local 2021 char *found = NULL; local 2703 int maxlen = 0, pos, len, found; local [all...] |
| /PHP_5_3/ext/xsl/ |
| H A D | php_xsl.c | 227 zval *php_xsl_create_object(xsltStylesheetPtr obj, int *found, zval *wrapper_in, zval *return_value TSRMLS_DC) argument 232 *found = 0; 246 *found = 1;
|
| H A D | php_xsl.h | 72 zval *php_xsl_create_object(xsltStylesheetPtr obj, int *found, zval *wrapper_in, zval *return_value TSRMLS_DC);
|
| H A D | xsltprocessor.c | 636 int found; local 647 found = zend_lookup_class(ret_class, ret_class_len, &ce TSRMLS_CC); 648 if ((found != SUCCESS) || !instanceof_function(*ce, curce TSRMLS_CC)) {
|
| /PHP_5_3/main/ |
| H A D | php_ini.c | 257 /* If option not found in hash or is not an array -> create array, otherwise add to existing array */ 485 int found = 0; local 497 found = 1; 504 if (!found) { 600 /* If still no ini file found, search for php.ini file in search path */ 646 /* Scan and parse any .ini files found in scan path if path not empty. */ 799 /* Walk through config hash and alter matching ini entries using the values found in the hash */ 840 /* Walk through each directory in path and apply any found per-dir-system-configuration from configuration_hash */
|
| /PHP_5_3/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_5_3/ext/soap/ |
| H A D | php_xml.c | 343 char *found = strrchr((char*)inval, ':'); local 345 if (found != NULL && found != (char*)inval) { 346 (*namespace) = estrndup((char*)inval, found - (char*)inval); 347 (*value) = estrdup(++found);
|
| /PHP_5_3/Zend/ |
| H A D | zend_builtin_functions.c | 1172 int found; local 1195 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1197 RETURN_BOOL(found == SUCCESS && !((*ce)->ce_flags & ZEND_ACC_INTERFACE)); 1215 int found; local 1238 found = zend_hash_find(EG(class_table), name, len+1, (void **) &ce); 1240 RETURN_BOOL(found == SUCCESS && (*ce)->ce_flags & ZEND_ACC_INTERFACE); 1299 int found; local 1311 found = zend_hash_find(EG(class_table), lc_name, class_name_len+1, (void **) &ce); 1314 found = zend_lookup_class(class_name, class_name_len, &ce TSRMLS_CC); 1316 if (found [all...] |
| /PHP_5_3/ext/zip/ |
| H A D | php_zip.c | 574 were found, others return the GLOB_NOMATCH error code. 1665 int found; local 1700 found = php_zip_glob(pattern, pattern_len, flags, return_value TSRMLS_CC); 1702 found = php_zip_pcre(pattern, pattern_len, path, path_len, return_value TSRMLS_CC); 1705 if (found > 0) { 1709 for (i = 0; i < found; i++) {
|