/PHP-5.3/ext/mbstring/libmbfl/tests/conv_encoding.tests/ |
H A D | Makefile.am | 2 cp51932_cp50220raw.exp\ 3 ujis_sjis.exp\ 4 utf8_sjis.exp\ 5 yensign.exp 9 uni_to_cp932.exp\ 10 uni_to_cp50220.exp\ 11 uni_to_cp50222.exp\ 12 cp932_to_uni.exp 17 cp932_to_uni.exp: gen_exp CP932.TXT 20 uni_to_cp932.exp: gen_exp CP932.TXT [all …]
|
/PHP-5.3/ext/standard/tests/math/ |
H A D | exp_error.phpt | 2 Test exp() - wrong params for exp() 7 exp(); 8 exp(23,true); 12 Warning: exp() expects exactly 1 parameter, 0 given in %s on line %d 14 Warning: exp() expects exactly 1 parameter, 2 given in %s on line %d
|
H A D | exp_variation1.phpt | 2 Test exp() function : usage variations - different data types as $arg argument 7 /* Prototype : float exp ( float $arg ) 12 echo "*** Testing exp() : usage variations ***\n"; 81 // loop through each element of $inputs to check the behaviour of exp() 85 var_dump(exp($input)); 92 *** Testing exp() : usage variations *** 144 Warning: exp() expects parameter 1 to be double, string given in %s on line %d 149 Warning: exp() expects parameter 1 to be double, string given in %s on line %d 154 Warning: exp() expects parameter 1 to be double, array given in %s on line %d 159 Warning: exp() expects parameter 1 to be double, string given in %s on line %d [all …]
|
H A D | exp_basic.phpt | 2 Test exp() - basic function test for exp() 25 var_dump(exp($value));
|
H A D | exp_basiclong_64bit.phpt | 2 Test exp function : 64bit long tests 24 var_dump(exp($longVal));
|
/PHP-5.3/ext/sqlite/libsqlite/src/ |
H A D | printf.c | 413 exp = 0; in vxprintf() 415 while( realvalue>=1e8 && exp<=350 ){ realvalue *= 1e-8; exp+=8; } in vxprintf() 416 while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; } in vxprintf() 417 while( realvalue<1e-8 && exp>=-350 ){ realvalue *= 1e8; exp-=8; } in vxprintf() 418 while( realvalue<1.0 && exp>=-350 ){ realvalue *= 10.0; exp--; } in vxprintf() 419 if( exp>350 || exp<-350 ){ in vxprintf() 437 if( exp<-4 || exp>precision ){ in vxprintf() 455 else for(; exp>=0; exp--) *(bufpt++) = et_getdigit(&realvalue,&nsd); in vxprintf() 457 for(exp++; exp<0 && precision>0; precision--, exp++){ in vxprintf() 481 if( exp<0 ){ *(bufpt++) = '-'; exp = -exp; } /* sign of exp */ in vxprintf() [all …]
|
H A D | util.c | 799 int exp; in sqliteRealToSortable() local 818 exp = 0; in sqliteRealToSortable() 821 exp = -1024; in sqliteRealToSortable() 823 while( r < 0.5/_64e64 && exp > -961 ){ r *= _64e64; exp -= 64; } in sqliteRealToSortable() 824 while( r < 0.5/_64e16 && exp > -1009 ){ r *= _64e16; exp -= 16; } in sqliteRealToSortable() 825 while( r < 0.5/_64e4 && exp > -1021 ){ r *= _64e4; exp -= 4; } in sqliteRealToSortable() 826 while( r < 0.5/64.0 && exp > -1024 ){ r *= 64.0; exp -= 1; } in sqliteRealToSortable() 830 while( r >= 0.5*_64e3 && exp < 1020 ){ r *= 1.0/_64e4; exp += 4; } in sqliteRealToSortable() 831 while( r >= 0.5 && exp < 1023 ){ r *= 1.0/64.0; exp += 1; } in sqliteRealToSortable() 834 exp = -exp; in sqliteRealToSortable() [all …]
|
/PHP-5.3/ext/standard/tests/file/windows_acls/ |
H A D | bug44859.phpt | 23 foreach ($iteration as $perms => $exp) { 27 if (is_writable($path) == $exp) { 30 var_dump(is_writable($path), $exp); 39 foreach ($iteration as $perms => $exp) { 43 if (is_writable($path) == $exp) { 46 var_dump(is_writable($path), $exp);
|
H A D | bug44859_2.phpt | 23 foreach ($iteration as $perms => $exp) { 27 if (is_readable($path) == $exp) { 30 var_dump(is_readable($path), $exp); 39 foreach ($iteration as $perms => $exp) { 43 if (is_readable($path) == $exp) { 46 var_dump(is_readable($path), $exp);
|
H A D | bug44859_4.phpt | 25 foreach ($iteration as $perms => $exp) { 29 if (is_readable($path) == $exp) { 32 var_dump(is_readable($path), $exp); 41 foreach ($iteration as $perms => $exp) { 45 if (is_readable($path) == $exp) { 48 var_dump(is_readable($path), $exp);
|
H A D | bug44859_3.phpt | 22 foreach ($iteration as $file => $exp) { 25 if (is_executable($path) == $exp) { 28 var_dump(is_executable($path), $exp);
|
/PHP-5.3/ext/imap/tests/ |
H A D | bug44098.phpt | 11 $exp = 'Luzon®14 dot CoM'; 13 if ($res != $exp) { 14 echo "failed: got <$res>, expected <exp>\n";
|
/PHP-5.3/ext/filter/tests/ |
H A D | 034.phpt | 24 foreach($booleans as $val=>$exp) { 26 if ($res !== $exp) { 27 echo "$val failed,'$exp' expect, '$res' received.\n";
|
H A D | 030.phpt | 52 foreach ($ipv6_test as $ip => $exp) { 55 if ($exp != $out) { 56 echo "$ip failed (expected ", $exp?"true":"false", ", got ",
|
/PHP-5.3/ext/mysqli/tests/ |
H A D | mysqli_real_escape_string_unicode.phpt | 45 if (($exp='абра\\\\ка\"да\\'."'".'бра\Zсим\\nсала\\rби\\0м') !== 48 printf("[010] Expecting %s, got %s\n", $exp, $tmp, var_dump($exp, $tmp)); 69 if (($exp='阿卜拉\\\\嘉\"达丰\\'."'".'乳罩\Z辛\\n萨拉\\r毕\\0米') !== 72 printf("[017] Expecting %s, got %s\n", $exp, $tmp, var_dump($exp, $tmp));
|
/PHP-5.3/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_exec_load_data.phpt | 22 function exec_and_count($offset, &$db, $sql, $exp) { 27 if ($ret !== $exp) { 29 $offset, $exp, gettype($exp), $ret, gettype($ret), $sql, 79 foreach ($expected as $offset => $exp) { 80 foreach ($exp as $key => $value) {
|
H A D | pdo_mysql_exec_ddl.phpt | 11 function exec_and_count($offset, &$db, $sql, $exp, $suppress_warning = false) { 20 if ($ret !== $exp) { 22 $offset, $exp, gettype($exp), $ret, gettype($ret), $sql,
|
H A D | pdo_mysql_exec_select.phpt | 11 function exec_and_count($offset, &$db, $sql, $exp) { 16 if ($ret !== $exp) { 18 $offset, $exp, gettype($exp), $ret, gettype($ret), $sql,
|
/PHP-5.3/ext/reflection/tests/ |
H A D | 001.phpt | 23 $exp = array ( 63 foreach($exp as $m) 65 if (!in_array($m, $exp))
|
/PHP-5.3/ext/standard/tests/strings/ |
H A D | strncasecmp_variation1.phpt | 15 … chr($ASCII), 1 ) ); //comparing uppercase letter with corresponding uppercase letter; exp: int(0) 16 …$ASCII + 32), 1 ) ); //comparing uppercase letter with corresponding lowercase letter; exp: int(0) 21 … chr($ASCII), 1 ) ); //comparing lowercase letter with corresponding lowercase letter; exp: int(0) 22 …$ASCII - 32), 1 ) ); //comparing lowercase letter with corresponding uppercase letter; exp: int(0)
|
H A D | strncmp_variation1.phpt | 15 …chr($ASCII), chr($ASCII), 1 ) ); //comparing uppercase letters with uppercase letters; exp: int(0) 16 …II), chr($ASCII + 32), 1 ) ); //comparing uppercase letters with lowercase letters; exp: value < 0 21 …chr($ASCII), chr($ASCII), 1 ) ); //comparing lowercase letters with lowercase letters; exp: int(0) 22 …II), chr($ASCII - 32), 1 ) ); //comparing lowercase letters with uppercase letters; exp: value > 0
|
/PHP-5.3/scripts/dev/ |
H A D | check_parameters.php | 138 function check_param($db, $idx, $exp, $optional) argument 152 if ($db[$idx][1] != $exp) { 153 error("{$db[$idx][0]}: expected '$exp' but got '{$db[$idx][1]}' [".($idx+1).']'); 276 foreach($API_params[$char] as $exp) { 277 check_param($params, ++$j, $exp, $optional);
|
/PHP-5.3/ext/mbstring/libmbfl/tests/conv_kana.tests/ |
H A D | Makefile.am | 1 EXTRA_DIST=*.exp
|
/PHP-5.3/ext/mbstring/libmbfl/tests/strwidth.tests/ |
H A D | Makefile.am | 1 EXTRA_DIST=*.exp
|
/PHP-5.3/ext/mbstring/libmbfl/tests/strcut.tests/ |
H A D | Makefile.am | 1 EXTRA_DIST=*.exp
|