Home
last modified time | relevance | path

Searched refs:arg1 (Results 176 – 200 of 206) sorted by relevance

123456789

/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_variation28_64bit.phpt7 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation38.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation40.phpt11 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation40_64bit.phpt7 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation8.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation18.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation25.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation19.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation49.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation21.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation34.phpt11 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation47.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation50.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation46.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation34_64bit.phpt7 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation9.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
H A Dsprintf_variation15.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
/PHP-5.5/Zend/
H A Dzend_interfaces.c34 …ame, int function_name_len, zval **retval_ptr_ptr, int param_count, zval* arg1, zval* arg2 TSRMLS_… in zend_call_method() argument
44 params[0] = &arg1; in zend_call_method()
/PHP-5.5/
H A DREADME.EXT_SKEL92 module_name_function(int arg1, int arg2 [, int arg3 [, int arg4]])
94 Arguments arg1 and arg2 are required.
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c131 static void fastcgi_ini_parser(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg TSR…
1423 static void fastcgi_ini_parser(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg TSR… argument
1430 if (!mode || !arg1) return;
1437 key = Z_STRVAL_P(arg1);
/PHP-5.5/ext/intl/tests/
H A Dgrapheme.phpt98 $arg1 = urlencode($test[1]);
100 $res_str .= "find \"$arg1\" in \"$arg0\" - grapheme_strpos";
162 $arg1 = urlencode($test[1]);
164 $res_str .= "find \"$arg1\" in \"$arg0\" - grapheme_stripos";
228 $arg1 = urlencode($test[1]);
230 $res_str .= "find \"$arg1\" in \"$arg0\" - grapheme_strrpos";
293 $arg1 = urlencode($test[1]);
295 $res_str .= "find \"$arg1\" in \"$arg0\" - grapheme_strripos";
455 $arg1 = urlencode($test[1]);
457 $res_str .= "find \"$arg1\" in \"$arg0\" - grapheme_strstr";
[all …]
/PHP-5.5/ext/tidy/
H A Dtidy.c555 char *data=NULL, *arg1, *enc = NULL; in php_tidy_quick_repair() local
563 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|Zsb", &arg1, &arg1_len, &config, &enc, &en… in php_tidy_quick_repair()
566 if (!(data = php_tidy_file_to_mem(arg1, use_include_path, &data_len TSRMLS_CC))) { in php_tidy_quick_repair()
570 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|Zsb", &arg1, &arg1_len, &config, &enc, &en… in php_tidy_quick_repair()
573 data = arg1; in php_tidy_quick_repair()
/PHP-5.5/ext/phar/
H A Dphar_object.c1150 zval *zobj = getThis(), arg1, arg2; in PHP_METHOD()
1250 INIT_PZVAL(&arg1); in PHP_METHOD()
1251 ZVAL_STRINGL(&arg1, fname, fname_len, 0); in PHP_METHOD()
1256 &spl_ce_RecursiveDirectoryIterator->constructor, "__construct", NULL, &arg1, &arg2); in PHP_METHOD()
2027 zval *ret, arg1; in phar_rename_archive() local
2211 INIT_PZVAL(&arg1); in phar_rename_archive()
2212 ZVAL_STRINGL(&arg1, phar->fname, phar->fname_len, 0); in phar_rename_archive()
4453 zval *zobj = getThis(), arg1; in PHP_METHOD() local
4499 INIT_PZVAL(&arg1); in PHP_METHOD()
4500 ZVAL_STRINGL(&arg1, fname, fname_len, 0); in PHP_METHOD()
[all …]
/PHP-5.5/ext/standard/
H A Dstring.c1231 zval **arg1 = NULL, **arg2 = NULL, *delim, *arr; in PHP_FUNCTION() local
1233 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Z|Z", &arg1, &arg2) == FAILURE) { in PHP_FUNCTION()
1238 if (Z_TYPE_PP(arg1) != IS_ARRAY) { in PHP_FUNCTION()
1247 SEPARATE_ZVAL(arg1); in PHP_FUNCTION()
1248 arr = *arg1; in PHP_FUNCTION()
1250 if (Z_TYPE_PP(arg1) == IS_ARRAY) { in PHP_FUNCTION()
1251 arr = *arg1; in PHP_FUNCTION()
1256 convert_to_string_ex(arg1); in PHP_FUNCTION()
1257 delim = *arg1; in PHP_FUNCTION()
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeSPARC_common.c625 …2(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg1, sljit_sw arg1w, sl… in emit_op_mem2() argument
627 if (getput_arg_fast(compiler, flags, reg, arg1, arg1w)) in emit_op_mem2()
629 return getput_arg(compiler, flags, reg, arg1, arg1w, arg2, arg2w); in emit_op_mem2()

Completed in 113 milliseconds

123456789