/PHP-7.2/ext/spl/tests/ |
H A D | dllist_013.phpt | 8 $dll->add(2,5); 13 $dll->add(0,6); // 6 14 $dll->add(0,3); // 3 6 16 $dll->add(1,4); // 3 4 6 17 $dll->add(2,5); // 3 4 5 6 20 $dll->add(0,1); // 1 2 3 4 5 6 21 $dll->add(6,7); // 1 2 3 4 5 6 7
|
H A D | SplDoublyLinkedList_add_missing_parameter1.phpt | 2 Check that SplDoublyLinkedList::add generate a warning and returns a NULL with missing arguments 6 var_dump($dll->add()); 9 Warning: SplDoublyLinkedList::add() expects exactly 2 parameters, 0 given in %s on line %d
|
H A D | SplDoublyLinkedList_add_missing_parameter2.phpt | 2 Check that SplDoublyLinkedList::add generate a warning and returns a NULL with a missing value argu… 6 var_dump($dll->add(2)); 9 Warning: SplDoublyLinkedList::add() expects exactly 2 parameters, 1 given in %s on line %d
|
H A D | bug40872.phpt | 14 public function add(Project $item) { 20 $projects->add(new Project('1')); 21 $projects->add(new Project(2));
|
H A D | array_005.phpt | 54 public function add(Student $student) 78 $students->add(new Student('01234123', 'Joe')); 79 $students->add(new Student('00000014', 'Bob')); 80 $students->add(new Student('00000014', 'Foo'));
|
H A D | SplDoublyLinkedList_add_null_offset.phpt | 2 Check that SplDoublyLinkedList::add throws an exception with an invalid offset argument 7 var_dump($dll->add(NULL,2));
|
/PHP-7.2/ext/intl/tests/ |
H A D | calendar_add_error.phpt | 2 IntlCalendar::add(): bad arguments 15 var_dump($c->add(1, 2, 3)); 16 var_dump($c->add(-1, 2)); 17 var_dump($c->add(1)); 22 Warning: IntlCalendar::add() expects exactly 2 parameters, 3 given in %s on line %d 24 Warning: IntlCalendar::add(): intlcal_add: bad arguments in %s on line %d 27 Warning: IntlCalendar::add(): intlcal_add: invalid field in %s on line %d 30 Warning: IntlCalendar::add() expects exactly 2 parameters, 1 given in %s on line %d 32 Warning: IntlCalendar::add(): intlcal_add: bad arguments in %s on line %d
|
H A D | calendar_add_basic.phpt | 2 IntlCalendar::add() basic test 19 $intlcal->add(IntlCalendar::FIELD_DAY_OF_MONTH, 1); 20 $intlcal->add(IntlCalendar::FIELD_HOUR, 5); 21 $intlcal->add(IntlCalendar::FIELD_MINUTE, 6);
|
/PHP-7.2/ext/mbstring/oniguruma/ |
H A D | HISTORY | 62 2016/08/16: add onig_scan() (NEW API) 79 2016/04/18: add make_win64/32.bat. 84 2016/04/05: add init member into OnigEncoding. (add onig_initialize()) 157 2007/08/01: [API] add OnigCtype. 338 2006/10/18: [dev] add tool/19. 1117 2004/06/10: [dist] add README.ja. 1181 2004/05/14: [impl] add regext.c. 1324 2004/01/30: [dist] add oniggnu.h. 1872 2003/02/10: [dist] add HISTORY. 2023 2002/04/01: [dist] add COPYING. [all …]
|
/PHP-7.2/ext/date/tests/ |
H A D | rfc-datetime_and_daylight_saving_time-type3-ba.phpt | 13 * Backward Transitions, add(). 20 . $start->add($interval)->format($date_format) . "\n"; 26 . $start->add($interval)->format($date_format) . "\n"; 32 . $start->add($interval)->format($date_format) . "\n"; 38 . $start->add($interval)->format($date_format) . "\n"; 44 . $start->add($interval)->format($date_format) . "\n"; 50 . $start->add($interval)->format($date_format) . "\n"; 56 . $start->add($interval)->format($date_format) . "\n"; 62 . $start->add($interval)->format($date_format) . "\n"; 68 . $start->add($interval)->format($date_format) . "\n"; [all …]
|
H A D | rfc-datetime_and_daylight_saving_time-type3-fa.phpt | 13 * Forward Transitions, add(). 20 . $start->add($interval)->format($date_format) . "\n"; 26 . $start->add($interval)->format($date_format) . "\n"; 32 . $start->add($interval)->format($date_format) . "\n"; 38 . $start->add($interval)->format($date_format) . "\n"; 44 . $start->add($interval)->format($date_format) . "\n"; 50 . $start->add($interval)->format($date_format) . "\n";
|
H A D | rfc-datetime_and_daylight_saving_time-type1.phpt | 54 * Forward Transitions, add(). 61 . $start->add($interval)->format($date_format) . "\n"; 67 . $start->add($interval)->format($date_format) . "\n"; 73 . $start->add($interval)->format($date_format) . "\n"; 79 . $start->add($interval)->format($date_format) . "\n"; 85 . $start->add($interval)->format($date_format) . "\n"; 91 . $start->add($interval)->format($date_format) . "\n"; 190 * Backward Transitions, add(). 197 . $start->add($interval)->format($date_format) . "\n"; 203 . $start->add($interval)->format($date_format) . "\n"; [all …]
|
/PHP-7.2/ext/zip/ |
H A D | TODO | 1 - add pattern support to extract or add files 2 - stream to add or modify entries
|
/PHP-7.2/ext/xmlrpc/tests/ |
H A D | bug47818.phpt | 20 xmlrpc_server_register_method($this->s, 'add', array($this, 'impl')); 32 $resp = $x->call(xmlrpc_encode_request('add', array(1, 2, 3))); 40 Inside impl(): add 41 Global scope: add
|
/PHP-7.2/Zend/tests/ |
H A D | dtor_scope.phpt | 9 public function add($a) 24 $t->add("Hello"); 25 $t->add("World");
|
H A D | bug20240.phpt | 23 function add() { 31 $t->add(); 32 $t->add();
|
H A D | closure_024.phpt | 7 $c = function($add) use(&$a) { return $a+$add; };
|
/PHP-7.2/sapi/fpm/fpm/ |
H A D | fpm_atomic.h | 33 static inline atomic_int_t atomic_fetch_add(atomic_t *value, atomic_int_t add) /* {{{ */ in atomic_fetch_add() argument 36 "+r" (add) : "m" (*value) : "memory"); in atomic_fetch_add() 38 return add; in atomic_fetch_add() 59 static inline atomic_int_t atomic_fetch_add(atomic_t *value, atomic_int_t add) /* {{{ */ in atomic_fetch_add() argument 62 "+r" (add) : "m" (*value) : "memory"); in atomic_fetch_add() 64 return add; in atomic_fetch_add()
|
/PHP-7.2/Zend/tests/type_declarations/ |
H A D | scalar_constant_defaults.phpt | 51 echo "Testing int add val" . PHP_EOL; 54 echo "Testing float add val" . PHP_EOL; 57 echo "Testing string add val" . PHP_EOL; 74 Testing int add val 76 Testing float add val 78 Testing string add val
|
/PHP-7.2/ext/curl/tests/ |
H A D | curl_copy_handle_variation2.phpt | 2 Test curl_copy_handle() add options to the handles 15 echo "*** Testing curl_copy_handle(): add options after copy ***\n"; 24 // add some CURLOPT to the second handle 29 // add same CURLOPT to the first handle 39 *** Testing curl_copy_handle(): add options after copy ***
|
/PHP-7.2/ext/com_dotnet/tests/ |
H A D | variants.phpt | 47 add: 84 61 add: 45.5 75 add: 137 add: 42 177 add: 7 191 add: 279 add: 341 add: 461 add: 551 add: [all …]
|
H A D | variants_x64.phpt | 50 add: 84 64 add: 45.5 78 add: 140 add: 42 180 add: 7 194 add: 282 add: 344 add: 464 add: 554 add: [all …]
|
/PHP-7.2/ext/zip/tests/ |
H A D | bug64342_0.phpt | 17 echo "add ok\n"; 19 echo "add failed\n"; 40 add failed
|
/PHP-7.2/ext/xmlrpc/libxmlrpc/ |
H A D | simplestring.h | 65 void simplestring_add(simplestring* string, const char* add); 66 void simplestring_addn(simplestring* string, const char* add, size_t add_len);
|
/PHP-7.2/ext/simplexml/tests/ |
H A D | 031.phpt | 21 /* Try to add attribute again -> display warning as method is for new Attr only */ 28 /* Try to add element to attribute -> display warning and do not add */ 41 /* Does not add prefix here although name is valid (but discouraged) - change behavior? */ 50 Warning: SimpleXMLElement::addChild(): Cannot add element to attributes in %s031.php on line %d
|