Home
last modified time | relevance | path

Searched refs:doubleval (Results 1 – 25 of 262) sorted by relevance

1234567891011

/dports/lang/php73/php-7.3.33/ext/standard/tests/general_functions/
H A Dfloatval_error.phpt2 Testing floatval() and its alias doubleval() : error conditions - wrong numbers of parametersns
9 echo "*** Testing floatval() and doubleval() : error conditions ***\n";
12 echo "\n-- Testing floatval() and doubleval() function with no arguments --\n";
14 var_dump( doubleval() );
16 echo "\n-- Testing floatval() and doubleval() function with more than expected no. of arguments --\…
18 var_dump( doubleval(10.5, FALSE) );
23 *** Testing floatval() and doubleval() : error conditions ***
25 -- Testing floatval() and doubleval() function with no arguments --
30 Warning: doubleval() expects exactly 1 parameter, 0 given in %s on line %d
33 -- Testing floatval() and doubleval() function with more than expected no. of arguments --
[all …]
H A Dfloatval.phpt2 Testing floatval() and its alias doubleval() Functions
43 echo "\n*** Testing doubleval() with valid float values ***\n";
44 /* loop to check that doubleval() also recognizes different
48 var_dump( doubleval($value) );
86 echo "\n*** Testing doubleval() on non floating types ***\n";
91 var_dump( doubleval($type) );
100 var_dump( doubleval() );
104 var_dump( doubleval(TRUE, FALSE) );
134 *** Testing doubleval() with valid float values ***
179 *** Testing doubleval() on non floating types ***
[all …]
/dports/www/mod_php73/php-7.3.33/ext/standard/tests/general_functions/
H A Dfloatval_error.phpt2 Testing floatval() and its alias doubleval() : error conditions - wrong numbers of parametersns
9 echo "*** Testing floatval() and doubleval() : error conditions ***\n";
12 echo "\n-- Testing floatval() and doubleval() function with no arguments --\n";
14 var_dump( doubleval() );
16 echo "\n-- Testing floatval() and doubleval() function with more than expected no. of arguments --\…
18 var_dump( doubleval(10.5, FALSE) );
23 *** Testing floatval() and doubleval() : error conditions ***
25 -- Testing floatval() and doubleval() function with no arguments --
30 Warning: doubleval() expects exactly 1 parameter, 0 given in %s on line %d
33 -- Testing floatval() and doubleval() function with more than expected no. of arguments --
[all …]
H A Dfloatval.phpt2 Testing floatval() and its alias doubleval() Functions
43 echo "\n*** Testing doubleval() with valid float values ***\n";
44 /* loop to check that doubleval() also recognizes different
48 var_dump( doubleval($value) );
86 echo "\n*** Testing doubleval() on non floating types ***\n";
91 var_dump( doubleval($type) );
100 var_dump( doubleval() );
104 var_dump( doubleval(TRUE, FALSE) );
134 *** Testing doubleval() with valid float values ***
179 *** Testing doubleval() on non floating types ***
[all …]
/dports/lang/php74/php-7.4.27/ext/standard/tests/general_functions/
H A Dfloatval.phpt2 Testing floatval() and its alias doubleval() Functions
43 echo "\n*** Testing doubleval() with valid float values ***\n";
44 /* loop to check that doubleval() also recognizes different
48 var_dump( doubleval($value) );
86 echo "\n*** Testing doubleval() on non floating types ***\n";
91 var_dump( doubleval($type) );
100 var_dump( doubleval() );
104 var_dump( doubleval(TRUE, FALSE) );
134 *** Testing doubleval() with valid float values ***
179 *** Testing doubleval() on non floating types ***
[all …]
/dports/www/mod_php74/php-7.4.27/ext/standard/tests/general_functions/
H A Dfloatval.phpt2 Testing floatval() and its alias doubleval() Functions
43 echo "\n*** Testing doubleval() with valid float values ***\n";
44 /* loop to check that doubleval() also recognizes different
48 var_dump( doubleval($value) );
86 echo "\n*** Testing doubleval() on non floating types ***\n";
91 var_dump( doubleval($type) );
100 var_dump( doubleval() );
104 var_dump( doubleval(TRUE, FALSE) );
134 *** Testing doubleval() with valid float values ***
179 *** Testing doubleval() on non floating types ***
[all …]
/dports/finance/weberp/webERP/includes/
H A DImportBankTrans_MT940_SCB.php36 …$_SESSION['Statement']->OpeningBalance = doubleval('-' . str_replace(',','.',substr($LineText,15))…
38 $_SESSION['Statement']->OpeningBalance = doubleval(str_replace(',','.',substr($LineText,15)));
56 $TransAmount = doubleval('-' . str_replace(',','.',substr($LineText,12,$ValueEnd)));
58 $TransAmount = doubleval(str_replace(',','.',substr($LineText,12,$ValueEnd)));
70 $TransAmount = doubleval('-' . str_replace(',','.',substr($LineText,$ValueStart,$ValueEnd)));
72 $TransAmount = doubleval(str_replace(',','.',substr($LineText,$ValueStart,$ValueEnd)));
96 …$_SESSION['Statement']->ClosingBalance = doubleval('-' . str_replace(',','.',substr($LineText,15))…
98 $_SESSION['Statement']->ClosingBalance = doubleval(str_replace(',','.',substr($LineText,15)));
H A DImportBankTrans_MT940_ING.php29 $_SESSION['Statement']->OpeningBalance = doubleval(str_replace(',','.',substr($LineText,15)));
31 …$_SESSION['Statement']->OpeningBalance = doubleval('-' . str_replace(',','.',substr($LineText,15))…
46 $TransAmount = doubleval(str_replace(',','.',substr($LineText,12,-10)));
48 $TransAmount = doubleval('-' . str_replace(',','.',substr($LineText,12,-10)));
58 $TransAmount = doubleval(str_replace(',','.',substr($LineText,$ValueStart,-10)));
60 $TransAmount = doubleval('-' . str_replace(',','.',substr($LineText,$ValueStart,-10)));
83 $_SESSION['Statement']->ClosingBalance = doubleval(str_replace(',','.',substr($LineText,15)));
85 …$_SESSION['Statement']->ClosingBalance = doubleval('-' . str_replace(',','.',substr($LineText,15))…
/dports/lang/php80/php-8.0.15/ext/standard/tests/general_functions/
H A Dfloatval.phpt2 Testing floatval() and its alias doubleval() Functions
39 echo "\n*** Testing doubleval() with valid float values ***\n";
40 /* loop to check that doubleval() also recognizes different
44 var_dump( doubleval($value) );
82 echo "\n*** Testing doubleval() on non floating types ***\n";
85 doubleval() on non float types, expected output: float value valid floating point numbers */
87 var_dump( doubleval($type) );
118 *** Testing doubleval() with valid float values ***
163 *** Testing doubleval() on non floating types ***
/dports/lang/php81/php-8.1.1/ext/standard/tests/general_functions/
H A Dfloatval.phpt2 Testing floatval() and its alias doubleval() Functions
39 echo "\n*** Testing doubleval() with valid float values ***\n";
40 /* loop to check that doubleval() also recognizes different
44 var_dump( doubleval($value) );
82 echo "\n*** Testing doubleval() on non floating types ***\n";
85 doubleval() on non float types, expected output: float value valid floating point numbers */
87 var_dump( doubleval($type) );
118 *** Testing doubleval() with valid float values ***
163 *** Testing doubleval() on non floating types ***
/dports/www/mod_php81/php-8.1.1/ext/standard/tests/general_functions/
H A Dfloatval.phpt2 Testing floatval() and its alias doubleval() Functions
39 echo "\n*** Testing doubleval() with valid float values ***\n";
40 /* loop to check that doubleval() also recognizes different
44 var_dump( doubleval($value) );
82 echo "\n*** Testing doubleval() on non floating types ***\n";
85 doubleval() on non float types, expected output: float value valid floating point numbers */
87 var_dump( doubleval($type) );
118 *** Testing doubleval() with valid float values ***
163 *** Testing doubleval() on non floating types ***
/dports/www/mod_php80/php-8.0.15/ext/standard/tests/general_functions/
H A Dfloatval.phpt2 Testing floatval() and its alias doubleval() Functions
39 echo "\n*** Testing doubleval() with valid float values ***\n";
40 /* loop to check that doubleval() also recognizes different
44 var_dump( doubleval($value) );
82 echo "\n*** Testing doubleval() on non floating types ***\n";
85 doubleval() on non float types, expected output: float value valid floating point numbers */
87 var_dump( doubleval($type) );
118 *** Testing doubleval() with valid float values ***
163 *** Testing doubleval() on non floating types ***
/dports/biology/ncbi-toolkit/ncbi/vibrant/
H A Dvibfiles.c407 Nlm_FloatHi doubleval; in Nlm_ReadReal() local
412 doubleval = 0.0; in Nlm_ReadReal()
415 Nlm_fileDone = Nlm_StrToDouble (ioStr, &doubleval); in Nlm_ReadReal()
417 realval = (Nlm_FloatLo) doubleval; in Nlm_ReadReal()
435 Nlm_FloatHi doubleval; in Nlm_ReadDouble() local
439 doubleval = 0.0; in Nlm_ReadDouble()
444 return doubleval; in Nlm_ReadDouble()
678 if (doubleval != NULL) { in Nlm_StrToDouble()
679 *doubleval = (Nlm_FloatHi) 0; in Nlm_StrToDouble()
697 if (rsult && doubleval != NULL) { in Nlm_StrToDouble()
[all …]
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/lang/gnat_util/gcc-6-20180516/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-template7.C15 static constexpr ValueType doubleval = ValueType(1);
26 ValueTypeInfo<ValueTypeEnum::doubleval> v; in FillFunctor()
31 ValueTypeInfo<ValueTypeEnum::doubleval> v; in main()

1234567891011