Home
last modified time | relevance | path

Searched refs:base (Results 101 – 125 of 406) sorted by relevance

12345678910>>...17

/PHP-8.3/ext/ldap/tests/
H A Dldap_add_basic.phpt17 ldap_add($link, "dc=my-domain,$base", array(
27 ldap_search($link, "$base", "(o=my-domain)")
37 ldap_delete($link, "dc=my-domain,$base");
H A Dldap_exop_whoami.phpt14 insert_dummy_data($link, $base);
26 remove_dummy_data($link, $base);
H A Dldap_add_error.phpt16 var_dump(ldap_add($link, "$base", array()));
30 ldap_add($link, "dc=my-domain,$base", array(
62 ldap_add($link, "$base", array(
76 ldap_add($link, "$base", array(array( "Oops"
91 ldap_delete($link, "dc=my-domain,$base");
H A Dldap_add_ext.phpt20 $result = ldap_add_ext($link, "o=test_ldap_add_ext,$base", array(
32 ldap_search($link, "$base", "(o=test_ldap_add_ext)")
42 ldap_delete($link, "o=test_ldap_add_ext,$base");
H A Dldap_search_paged_result_controls.phpt18 insert_dummy_data($link, $base);
20 $dn = "$base";
37 remove_dummy_data($link, $base);
H A Dldap_search_variation3.phpt18 insert_dummy_data($link, $base);
20 $dn = "$base";
37 remove_dummy_data($link, $base);
H A Dldap_sasl_bind_basic.phpt22 insert_dummy_data($link, $base);
34 remove_dummy_data($link, $base);
H A Dldap_list_basic.phpt18 insert_dummy_data($link, $base);
20 $result = ldap_list($link, "$base", "(objectClass=person)"),
29 remove_dummy_data($link, $base);
H A Dldap_search_variation5.phpt18 insert_dummy_data($link, $base);
20 $dn = "$base";
40 remove_dummy_data($link, $base);
/PHP-8.3/ext/soap/tests/schema/
H A Dschema015.phpt13 <restriction base="string"/>
16 <restriction base="int"/>
19 <restriction base="float"/>
H A Dschema016.phpt15 <restriction base="string"/>
18 <restriction base="int"/>
21 <restriction base="float"/>
/PHP-8.3/ext/opcache/jit/libudis86/
H A Dsyn-att.c60 ud_asmprintf(u, "%%%s", ud_reg_tab[op->base - UD_R_AL]); in gen_operand()
73 if (op->base) { in gen_operand()
74 ud_asmprintf(u, "(%%%s", ud_reg_tab[op->base - UD_R_AL]); in gen_operand()
77 if (op->base) { in gen_operand()
87 if (op->base || op->index) { in gen_operand()
H A Ddecode.c461 opr->base = reg; in decode_reg()
571 op->base = UD_R_RAX + rm; in decode_modrm_rm()
577 op->base = UD_R_RIP; in decode_modrm_rm()
598 if (op->base == UD_R_RBP || op->base == UD_R_R13) { in decode_modrm_rm()
600 op->base = UD_NONE; in decode_modrm_rm()
613 op->base = UD_R_EAX + rm; in decode_modrm_rm()
619 op->base = UD_NONE; in decode_modrm_rm()
641 op->base = UD_NONE; in decode_modrm_rm()
658 op->base = bases[rm & 7]; in decode_modrm_rm()
663 op->base = UD_NONE; in decode_modrm_rm()
[all …]
/PHP-8.3/tests/classes/
H A Dabstract_derived.phpt6 class base {
9 class derived extends base {
/PHP-8.3/ext/phar/tests/
H A D027.phpt22 function dump($phar, $base)
24 var_dump(str_replace(__DIR__, '*', $phar) . $base);
25 $dir = opendir($phar . $base);
26 if ($base == '/')
28 $base = '';
31 $entry = $base . '/' . $entry;
/PHP-8.3/ext/libxml/tests/
H A Dbug61367-write.phpt25 var_dump(mkdir('test_bug_61367-write/base'));
27 var_dump(chdir('test_bug_61367-write/base'));
36 rmdir('test_bug_61367-write/base');
H A Dbug61367-read_2.phpt41 var_dump(mkdir('test_bug_61367-read/base'));
43 var_dump(chdir('test_bug_61367-read/base'));
52 rmdir('test_bug_61367-read/base');
/PHP-8.3/ext/date/tests/
H A Dbug50392.phpt7 $base = '2009-03-01 18:00:00';
10 $string = $base . '.' . str_repeat($i, $i);
/PHP-8.3/ext/standard/tests/file/windows_mb_path/
H A Dtest_long_path_bug71103.phpt14 $base = __DIR__;
15 $d = $base . '\\dev\\http\\tproj\\app\\cache\\dev_old\\annotations\\72';
44 } while ($p != $base);
/PHP-8.3/ext/gmp/
H A Dgmp.c586 if ((base == 0 || base == 16) && (num_str[1] == 'x' || num_str[1] == 'X')) { in convert_zstr_to_gmp()
587 base = 16; in convert_zstr_to_gmp()
590 base = 8; in convert_zstr_to_gmp()
593 base = 2; in convert_zstr_to_gmp()
867 if (base && (base < 2 || base > GMP_MAX_BASE)) { in gmp_verify_base()
891 zend_long base = 0; in ZEND_FUNCTION() local
896 Z_PARAM_LONG(base) in ZEND_FUNCTION()
1040 zend_long base = 10; in ZEND_FUNCTION() local
1050 if ((base < 2 && base > -2) || base > GMP_MAX_BASE || base < -36) { in ZEND_FUNCTION()
2048 zend_long base = 0; in ZEND_METHOD() local
[all …]
/PHP-8.3/ext/xml/tests/
H A Dxml_set_notation_decl_handler_basic.phpt10 …function unparsed_entity_decl_handler($parser, $entity_name, $base, $system_ID, $public_ID, $notat…
14 echo "...Base=" . $base . "\n";
20 function notation_decl_handler($parser, $name, $base, $system_ID,$public_ID)
24 echo "...Base=" . $base . "\n";
/PHP-8.3/ext/opcache/tests/
H A Dbug66338.phpt12 $base = basename( $root );
35 echo file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS . "/$base-clientUS.php" );
36 echo file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS . "/$base-clientUK.php" );
/PHP-8.3/ext/xmlreader/tests/
H A Dexpand.phpt14 <books><book>base book</book></books>';
36 base book
/PHP-8.3/Zend/asm/
H A Dmake_x86_64_ms_pe_masm.asm54 ; | limit | base | R12 | R13 |
110 ; save top address of context stack as 'base'
/PHP-8.3/Zend/tests/
H A Dbug37212.phpt2 Bug #37212 (Access to protected property of common base class)
26 $this->value = $obj->value; // value defined in common base class

Completed in 33 milliseconds

12345678910>>...17