| /PHP_5_4/build/ |
| H A D | build2.mk | 24 LT_TARGETS = ltmain.sh config.guess config.sub
|
| /PHP_5_4/ext/bcmath/libbcmath/src/ |
| H A D | recmul.c | 112 multiply algorithm. Note: if sub is called, accum must 116 _bc_shift_addsub (bc_num accum, bc_num val, int shift, int sub) argument 132 if (sub) { 226 /* Calculate sub results ... */
|
| /PHP_5_4/ext/date/tests/ |
| H A D | examine_diff.inc | 19 * Provides a consistent interface for executing date diff/add/sub tests 74 $end->sub($expect_interval);
|
| /PHP_5_4/ext/ereg/regex/ |
| H A D | main.c | 403 == char *check(char *str, regmatch_t sub, char *should); 406 check(str, sub, should) 408 regmatch_t sub; 425 if (sub.rm_so > sub.rm_eo || (sub.rm_so == -1 && sub.rm_eo != -1) || 426 (sub.rm_so != -1 && sub.rm_eo == -1) || 427 (sub [all...] |
| H A D | main.ih | 12 char *check(char *str, regmatch_t sub, char *should);
|
| /PHP_5_4/ext/phar/phar/ |
| H A D | clicommand.inc | 120 foreach($subs as $sub) { 121 $what = substr($m->name, $l+strlen($sub)+1); 122 $func = $prefix . $sub . '_' . $what; 128 $a[$what][$sub] = /*$m->class . '::' .*/ $func;
|
| H A D | pharcommand.inc | 239 $sub = $matches[1]; 240 if (strpos($sub, $phpdir) !== 0) { 244 $found = $sub; 905 $sub = substr($pn, $blen); 906 $target = $dir . '/' . $sub; 915 echo "$sub";
|
| /PHP_5_4/ext/spl/internal/ |
| H A D | multipleiterator.inc | 27 /** do not require all sub iterators to be valid in iteration */ 30 /** require all sub iterators to be valid in iteration */ 33 /** keys are created from sub iterators position */ 36 /** keys are created from sub iterators associated infromation */ 116 * @return whether all or one sub iterator is valid depending on flags. 117 * In mode MIT_NEED_ALL we expect all sub iterators to be valid and 119 * return true on the first valid sub iterator found. If no Iterator 151 /** @return false if no sub Iterator is attached and an array of 184 throw new RuntimeException('Called current() with non valid sub iterator'); 194 /** @return false if no sub Iterato [all...] |
| H A D | recursiveiterator.inc | 24 /** @return the sub iterator for the current element
|
| H A D | recursiveiteratoriterator.inc | 20 * sub elements are recursed into. 116 $sub = callGetChildren(); 127 $sub->recursed = false; 128 $sub->rewind(); 129 if ($sub->valid()) { 130 $this->ait[++$this->count] = $sub; 131 if (!$sub instanceof RecursiveIterator) { 132 throw new Exception(get_class($sub).'::getChildren() must return an object that implements RecursiveIterator'); 137 unset($sub); 156 /** @return Sub Iterator at given level or if unspecified the current sub [all...] |
| /PHP_5_4/ext/spl/ |
| H A D | spl.php | 1074 /** @return sub path only (without main path) 1078 /** @return the current sub path 1092 * getChildren() which returns the iterator for that sub element. 1096 /** @return whether the current node has sub nodes.
|
| H A D | php_spl.c | 182 #define SPL_ADD_CLASS(class_name, z_list, sub, allow, ce_flags) \ 183 spl_add_classes(spl_ce_ ## class_name, z_list, sub, allow, ce_flags TSRMLS_CC) 185 #define SPL_LIST_CLASSES(z_list, sub, allow, ce_flags) \ 186 SPL_ADD_CLASS(AppendIterator, z_list, sub, allow, ce_flags); \ 187 SPL_ADD_CLASS(ArrayIterator, z_list, sub, allow, ce_flags); \ 188 SPL_ADD_CLASS(ArrayObject, z_list, sub, allow, ce_flags); \ 189 SPL_ADD_CLASS(BadFunctionCallException, z_list, sub, allow, ce_flags); \ 190 SPL_ADD_CLASS(BadMethodCallException, z_list, sub, allow, ce_flags); \ 191 SPL_ADD_CLASS(CachingIterator, z_list, sub, allow, ce_flags); \ 192 SPL_ADD_CLASS(CallbackFilterIterator, z_list, sub, allo [all...] |
| H A D | spl_functions.c | 119 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags TSRMLS_DC) argument 125 if (sub) { 129 spl_add_classes(pce, list, sub, allow, ce_flags TSRMLS_CC);
|
| H A D | spl_functions.h | 58 /* sub: whether to allow subclasses/interfaces 66 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags TSRMLS_DC);
|
| /PHP_5_4/ext/standard/ |
| H A D | info.c | 309 char *major = NULL, *sub = NULL, *retval; local 350 sub = "Ultimate Edition"; 353 sub = "Home Premium Edition"; 356 sub = "Home Basic Edition"; 359 sub = "Enterprise Edition"; 362 sub = "Business Edition"; 365 sub = "Starter Edition"; 368 sub = "Cluster Server Edition"; 371 sub = "Datacenter Edition"; 374 sub [all...] |
| /PHP_5_4/ext/fileinfo/libmagic/ |
| H A D | cdf_time.c | 72 int sub = mdays[m] + (m == 1 && isleap(year)); local 73 if (days < sub) 75 days -= sub;
|
| /PHP_5_4/ext/date/ |
| H A D | php_date.c | 454 PHP_ME_MAPPING(sub, date_sub, arginfo_date_method_sub, 0)
|