Home
last modified time | relevance | path

Searched refs:base (Results 76 – 100 of 366) sorted by relevance

12345678910>>...15

/PHP-7.0/ext/standard/
H A Dscanf.c589 int base = 0; in php_sscanf_internal() local
757 base = 10; in php_sscanf_internal()
762 base = 0; in php_sscanf_internal()
767 base = 8; in php_sscanf_internal()
773 base = 16; in php_sscanf_internal()
778 base = 10; in php_sscanf_internal()
960 if (base == 0) { in php_sscanf_internal()
961 base = 8; in php_sscanf_internal()
974 base = 10; in php_sscanf_internal()
981 base = 10; in php_sscanf_internal()
[all …]
H A Dphp_math.h28 PHPAPI zend_string * _php_math_longtobase(zval *arg, int base);
29 PHPAPI zend_long _php_math_basetolong(zval *arg, int base);
30 PHPAPI int _php_math_basetozval(zval *arg, int base, zval *ret);
31 PHPAPI zend_string * _php_math_zvaltobase(zval *arg, int base);
/PHP-7.0/tests/classes/
H A Dclone_004.phpt5 abstract class base {
6 public $a = 'base';
12 class test extends base {
H A Dinterface_doubled.phpt2 ZE2 An interface extends base interfaces
31 class base {
39 class class_a extends base implements if_a {
56 class class_b extends base implements if_a, if_b {
73 class class_c extends base implements if_c {
90 class class_d extends base implements if_d{
107 class class_e extends base implements if_a, if_b, if_c, if_d {
124 class class_f extends base implements if_e {
141 class class_g extends base implements if_f {
H A Dabstract_derived.phpt8 class base {
11 class derived extends base {
/PHP-7.0/ext/ldap/tests/
H A Dldap_control_paged_results_variation1.phpt15 insert_dummy_data($link, $base);
17 $dn = "$base";
31 remove_dummy_data($link, $base);
H A Dldap_read_basic.phpt17 insert_dummy_data($link, $base);
19 $result = ldap_read($link, "o=test,$base", "(o=*)"),
29 remove_dummy_data($link, $base);
H A Dldap_search_variation4.phpt17 insert_dummy_data($link, $base);
19 $dn = "$base";
32 remove_dummy_data($link, $base);
H A Dldap_mod_replace_error.phpt18 var_dump(ldap_mod_replace($link, "$base"));
21 var_dump(ldap_mod_replace($link, "$base", array(), "Additional data"));
24 var_dump(ldap_mod_replace($link, "dc=my-domain,$base", array()));
30 var_dump(ldap_mod_replace($link, "$base", array('dc')));
H A Dldap_control_paged_results_variation2.phpt15 insert_dummy_data($link, $base);
17 $dn = "$base";
31 remove_dummy_data($link, $base);
H A Dldap_search_variation2.phpt17 insert_dummy_data($link, $base);
20 $result = ldap_search($link, "$base", "(objectclass=person)", array('sn'), 1),
30 remove_dummy_data($link, $base);
H A Dldap_next_attribute_error.phpt14 insert_dummy_data($link, $base);
15 $result = ldap_search($link, "$base", "(objectclass=organization)");
29 remove_dummy_data($link, $base);
H A Dldap_add_basic.phpt16 ldap_add($link, "dc=my-domain,$base", array(
26 ldap_search($link, "$base", "(o=my-domain)")
37 ldap_delete($link, "dc=my-domain,$base");
H A Dldap_get_values_len_error.phpt14 insert_dummy_data($link, $base);
15 $result = ldap_search($link, "$base", "(objectclass=organization)");
31 remove_dummy_data($link, $base);
H A Dldap_rename_error.phpt14 var_dump(ldap_rename($link, "cn=userNotFound,$base", "cn=userZ", "$base", true));
/PHP-7.0/ext/mbstring/oniguruma/
H A Dregparse.h66 #define NTYPE(node) ((node)->u.base.type)
67 #define SET_NTYPE(node, ntype) (node)->u.base.type = (ntype)
161 NodeBase base; member
170 NodeBase base; member
186 NodeBase base; member
214 NodeBase base; member
226 NodeBase base; member
235 NodeBase base; member
242 NodeBase base; member
248 NodeBase base; member
[all …]
/PHP-7.0/ext/soap/tests/schema/
H A Dschema016.phpt14 <restriction base="string"/>
17 <restriction base="int"/>
20 <restriction base="float"/>
H A Dschema015.phpt12 <restriction base="string"/>
15 <restriction base="int"/>
18 <restriction base="float"/>
/PHP-7.0/ext/standard/tests/file/
H A Dis_dir_variation1.phpt10 /* Testing is_dir() with base and sub dirs */
20 echo "-- Testing is_dir() with a subdir in base dir --\n";
38 -- Testing is_dir() with a subdir in base dir --
/PHP-7.0/Zend/tests/
H A Dbug40757.phpt15 $base=new Base();
16 print_r($base->getFields(new Base()));
/PHP-7.0/ext/libxml/tests/
H A Dbug61367-write.phpt23 var_dump(mkdir('test_bug_61367-write/base'));
25 var_dump(chdir('test_bug_61367-write/base'));
34 rmdir('test_bug_61367-write/base');
/PHP-7.0/ext/bcmath/tests/
H A Dbug75178-win32.phpt2 Bug #75178 (bcpowmod() misbehaves for non-integer base or modulus)
20 bc math warning: non-zero scale in base
H A Dbug75178.phpt2 Bug #75178 (bcpowmod() misbehaves for non-integer base or modulus)
17 bc math warning: non-zero scale in base
/PHP-7.0/ext/date/tests/
H A Dbug50392.phpt7 $base = '2009-03-01 18:00:00';
10 $string = $base . '.' . str_repeat($i, $i);
/PHP-7.0/ext/phar/tests/
H A D027.phpt25 function dump($phar, $base)
27 var_dump(str_replace(dirname(__FILE__), '*', $phar) . $base);
28 $dir = opendir($phar . $base);
29 if ($base == '/')
31 $base = '';
34 $entry = $base . '/' . $entry;

Completed in 50 milliseconds

12345678910>>...15