Home
last modified time | relevance | path

Searched refs:function (Results 3451 – 3475 of 7077) sorted by relevance

1...<<131132133134135136137138139140>>...284

/PHP-5.6/ext/standard/tests/strings/
H A Dvprintf_variation9.phpt2 Test vprintf() function : usage variations - char formats with char values
11 * Test vprintf() for char formats with an array of chars passed to the function
H A Dvsprintf_variation11.phpt2 Test vsprintf() function : usage variations - octal formats with octal values
16 * the '$format' and '$args' arguments of the function
H A Dvsprintf_variation11_64bit.phpt2 Test vsprintf() function : usage variations - octal formats with octal values
16 * the '$format' and '$args' arguments of the function
H A Dvsprintf_variation17.phpt2 Test vsprintf() function : usage variations - scientific formats with scientific values
12 * are passed to the '$format' and '$args' arguments of the function
H A Dvsprintf_variation5.phpt2 Test vsprintf() function : usage variations - float formats with float values
12 * the '$format' and '$args' arguments of the function
H A Dvsprintf_variation9.phpt2 Test vsprintf() function : usage variations - char formats with char values
11 * Test vsprintf() for char formats with an array of chars passed to the function
/PHP-5.6/ext/wddx/tests/
H A D004.phpt37 function method() { $this->yes = "done"; }
39 public function __sleep() { return array('bar', 'yes'); }
/PHP-5.6/ext/standard/tests/array/
H A Darray_chunk_variation4.phpt2 Test array_chunk() function : usage variations - array with diff. sub arrays
12 * Testing array_chunk() function - input array containing different sub arrays
H A Darray_key_exists_object1.phpt2 Test array_key_exists() function : object functionality
22 function __construct($a, $b, $c = null) {
/PHP-5.6/ext/standard/tests/class_object/
H A Dclass_exists_basic_001.phpt2 Test class_exists() function : basic functionality
13 function __autoload($className) {
/PHP-5.6/ext/pcre/tests/
H A Dpreg_replace_callback_error1.phpt2 Test preg_replace_callback() function : error
20 function integer_word($matches) {
/PHP-5.6/ext/standard/tests/math/
H A Dabs_variation.phpt2 Test abs() function : usage variations - different data types as $number arg
23 public function __toString() {
/PHP-5.6/ext/standard/tests/general_functions/
H A Dphp_uname_variation1.phpt2 Test php_uname() function - usage variations
17 function __toString() {
/PHP-5.6/Zend/
H A Dzend_opcode.c112 ZEND_API void destroy_zend_function(zend_function *function TSRMLS_DC) in destroy_zend_function()
114 switch (function->type) { in destroy_zend_function()
116 destroy_op_array((zend_op_array *) function TSRMLS_CC); in destroy_zend_function()
124 ZEND_API void zend_function_dtor(zend_function *function) in zend_function_dtor() argument
128 destroy_zend_function(function TSRMLS_CC); in zend_function_dtor()
138 ZEND_API int zend_cleanup_function_data(zend_function *function TSRMLS_DC) in zend_cleanup_function_data()
140 if (function->type == ZEND_USER_FUNCTION) { in zend_cleanup_function_data()
141 zend_cleanup_op_array_data((zend_op_array *) function); in zend_cleanup_function_data()
148 ZEND_API int zend_cleanup_function_data_full(zend_function *function TSRMLS_DC) in zend_cleanup_function_data_full()
150 if (function->type == ZEND_USER_FUNCTION) { in zend_cleanup_function_data_full()
[all …]
/PHP-5.6/ext/mbstring/tests/
H A Dmb_stristr_variation3.phpt2 Test mb_stristr() function : usage variation - different values for part
19 function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
27 // Initialise function arguments not being substituted (if any)
39 public function __toString() {
H A Dmb_strrchr_variation3.phpt2 Test mb_strrchr() function : usage variation - different values for part
19 function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
27 // Initialise function arguments not being substituted (if any)
39 public function __toString() {
H A Dmb_strrichr_variation3.phpt2 Test mb_strrichr() function : usage variation - different values for part
19 function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
27 // Initialise function arguments not being substituted (if any)
39 public function __toString() {
H A Dmb_substitute_character_variation1.phpt2 Test mb_substitute_character() function : usage variation
19 function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
27 // Initialise function arguments not being substituted (if any)
36 public function __toString() {
/PHP-5.6/ext/standard/tests/file/
H A Dchmod_variation3.phpt2 Test chmod() function : first parameter variation
14 function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
22 // Initialise function arguments not being substituted (if any)
32 public function __toString() {
H A Dcopy_variation1.phpt2 Test copy() function: usage variations - destination file names(numerics/strings)
10 /* Test copy() function: In creation of destination file names containing numerics/strings
14 echo "*** Test copy() function: destination file names containing numerics/strings ***\n";
79 *** Test copy() function: destination file names containing numerics/strings ***
H A Dfile_get_contents_variation6.phpt2 Test file_get_contents() function : usage variation
16 function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
24 // Initialise function arguments not being substituted (if any)
38 public function __toString() {
H A Dumask_variation3.phpt2 Test umask() function : usage variation
22 function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
30 // Initialise function arguments not being substituted (if any)
39 public function __toString() {
/PHP-5.6/ext/opcache/
H A Dzend_accelerator_util_funcs.c55 if (function->type == ZEND_USER_FUNCTION) { in zend_accel_destroy_zend_function()
56 if (function->op_array.static_variables) { in zend_accel_destroy_zend_function()
58 efree(function->op_array.static_variables); in zend_accel_destroy_zend_function()
59 function->op_array.static_variables = NULL; in zend_accel_destroy_zend_function()
63 destroy_zend_function(function TSRMLS_CC); in zend_accel_destroy_zend_function()
156 static int is_not_internal_function(zend_function *function) in is_not_internal_function() argument
158 return(function->type != ZEND_INTERNAL_FUNCTION); in is_not_internal_function()
170 static int move_user_function(zend_function *function in move_user_function()
182 if (function->type == ZEND_USER_FUNCTION) { in move_user_function()
205 if (function->type == ZEND_INTERNAL_FUNCTION) { in copy_internal_function()
[all …]
/PHP-5.6/ext/date/tests/
H A Ddate_modify-2.phpt2 date_modify() function [2]
H A Ddate_timestamp_set_nullparam.phpt2 Test the function date_timestamp_set() with first null parameter.

Completed in 49 milliseconds

1...<<131132133134135136137138139140>>...284