Home
last modified time | relevance | path

Searched refs:radix (Results 1 – 25 of 66) sorted by relevance

123

/trunk/main/sal/qa/OStringBuffer/
H A Drtl_OStringBuffer.cxx2837 aStrBuf.append( input, radix ); in TEST_F()
2856 aStrBuf.append( input, radix ); in TEST_F()
2871 aStrBuf.append( input, radix ); in TEST_F()
2886 aStrBuf.append( input, radix ); in TEST_F()
2901 aStrBuf.append( input, radix ); in TEST_F()
2916 aStrBuf.append( input, radix ); in TEST_F()
2931 aStrBuf.append( input, radix ); in TEST_F()
2946 aStrBuf.append( input, radix ); in TEST_F()
2961 aStrBuf.append( input, radix ); in TEST_F()
2976 aStrBuf.append( input, radix ); in TEST_F()
[all …]
/trunk/main/toolkit/source/layout/core/
H A Dproplist.cxx114 sal_Int16 radix = 10; in anyFromString() local
117 intval = value.copy( 2 ), radix = 16; in anyFromString()
119 intval = value.copy( 1 ), radix = 16; in anyFromString()
131 return uno::makeAny( ( sal_uInt8 ) intval.toInt32( radix ) ); in anyFromString()
133 return uno::makeAny( ( sal_Int16 ) intval.toInt32( radix ) ); in anyFromString()
135 return uno::makeAny( ( sal_uInt16 ) intval.toInt32( radix ) ); in anyFromString()
137 return uno::makeAny( ( sal_Int16 ) intval.toInt32( radix ) ); in anyFromString()
139 return uno::makeAny( ( sal_Int32 ) intval.toInt32( radix ) ); in anyFromString()
141 return uno::makeAny( ( sal_uInt32 ) intval.toInt32( radix ) ); in anyFromString()
143 return uno::makeAny( ( sal_Int64 ) intval.toInt64( radix ) ); in anyFromString()
[all …]
/trunk/main/sal/inc/rtl/
H A Dstrbuf.hxx385 OStringBuffer & append(sal_Int32 i, sal_Int16 radix = 10 ) in append() argument
388 return append( sz, rtl_str_valueOfInt32( sz, i, radix ) ); in append()
402 OStringBuffer & append(sal_Int64 l, sal_Int16 radix = 10 ) in append() argument
405 return append( sz, rtl_str_valueOfInt64( sz, l, radix ) ); in append()
570 OStringBuffer & insert(sal_Int32 offset, sal_Int32 i, sal_Int16 radix = 10 ) in insert() argument
573 return insert( offset, sz, rtl_str_valueOfInt32( sz, i, radix ) ); in insert()
593 OStringBuffer & insert(sal_Int32 offset, sal_Int64 l, sal_Int16 radix = 10 ) in insert() argument
596 return insert( offset, sz, rtl_str_valueOfInt64( sz, l, radix ) ); in insert()
H A Dustrbuf.hxx432 OUStringBuffer & append(sal_Int32 i, sal_Int16 radix = 10 ) in append() argument
435 return append( sz, rtl_ustr_valueOfInt32( sz, i, radix ) ); in append()
449 OUStringBuffer & append(sal_Int64 l, sal_Int16 radix = 10 ) in append() argument
452 return append( sz, rtl_ustr_valueOfInt64( sz, l, radix ) ); in append()
635 OUStringBuffer & insert(sal_Int32 offset, sal_Int32 i, sal_Int16 radix = 10 ) in insert() argument
638 return insert( offset, sz, rtl_ustr_valueOfInt32( sz, i, radix ) ); in insert()
659 OUStringBuffer & insert(sal_Int32 offset, sal_Int64 l, sal_Int16 radix = 10 ) in insert() argument
662 return insert( offset, sz, rtl_ustr_valueOfInt64( sz, l, radix ) ); in insert()
H A Dstring.hxx783 sal_Int32 toInt32( sal_Int16 radix = 10 ) const SAL_THROW(()) in toInt32() argument
785 return rtl_str_toInt32( pData->buffer, radix ); in toInt32()
797 sal_Int64 toInt64( sal_Int16 radix = 10 ) const SAL_THROW(()) in toInt64() argument
799 return rtl_str_toInt64( pData->buffer, radix ); in toInt64()
866 static OString valueOf( sal_Int32 i, sal_Int16 radix = 10 ) SAL_THROW(()) in valueOf() argument
870 rtl_string_newFromStr_WithLength( &pNewData, aBuf, rtl_str_valueOfInt32( aBuf, i, radix ) ); in valueOf()
883 static OString valueOf( sal_Int64 ll, sal_Int16 radix = 10 ) SAL_THROW(()) in valueOf() argument
887 … rtl_string_newFromStr_WithLength( &pNewData, aBuf, rtl_str_valueOfInt64( aBuf, ll, radix ) ); in valueOf()
H A Dustring.hxx1148 sal_Int32 toInt32( sal_Int16 radix = 10 ) const SAL_THROW(()) in toInt32() argument
1150 return rtl_ustr_toInt32( pData->buffer, radix ); in toInt32()
1162 sal_Int64 toInt64( sal_Int16 radix = 10 ) const SAL_THROW(()) in toInt64() argument
1164 return rtl_ustr_toInt64( pData->buffer, radix ); in toInt64()
1393 static OUString valueOf( sal_Int32 i, sal_Int16 radix = 10 ) SAL_THROW(()) in valueOf() argument
1397 … rtl_uString_newFromStr_WithLength( &pNewData, aBuf, rtl_ustr_valueOfInt32( aBuf, i, radix ) ); in valueOf()
1410 static OUString valueOf( sal_Int64 ll, sal_Int16 radix = 10 ) SAL_THROW(()) in valueOf() argument
1414 … rtl_uString_newFromStr_WithLength( &pNewData, aBuf, rtl_ustr_valueOfInt64( aBuf, ll, radix ) ); in valueOf()
H A Dstring.h596 sal_Int32 SAL_CALL rtl_str_valueOfInt32( sal_Char * str, sal_Int32 i, sal_Int16 radix ) SAL_THROW_E…
620 sal_Int32 SAL_CALL rtl_str_valueOfInt64( sal_Char * str, sal_Int64 l, sal_Int16 radix ) SAL_THROW_E…
688 sal_Int32 SAL_CALL rtl_str_toInt32( const sal_Char * str, sal_Int16 radix ) SAL_THROW_EXTERN_C();
706 sal_Int64 SAL_CALL rtl_str_toInt64( const sal_Char * str, sal_Int16 radix ) SAL_THROW_EXTERN_C();
H A Dustring.h918 sal_Int32 SAL_CALL rtl_ustr_valueOfInt32( sal_Unicode * str, sal_Int32 i, sal_Int16 radix ) SAL_THR…
942 sal_Int32 SAL_CALL rtl_ustr_valueOfInt64( sal_Unicode * str, sal_Int64 l, sal_Int16 radix ) SAL_THR…
1010 sal_Int32 SAL_CALL rtl_ustr_toInt32( const sal_Unicode * str, sal_Int16 radix ) SAL_THROW_EXTERN_C(…
1028 sal_Int64 SAL_CALL rtl_ustr_toInt64( const sal_Unicode * str, sal_Int16 radix ) SAL_THROW_EXTERN_C(…
/trunk/main/rsc/source/rscpp/
H A Dcpp6.c384 register int radix; /* 8, 10, or 16 */ in scannumber() local
393 radix = 10; /* Assume decimal */ in scannumber()
403 radix = 8; /* Assume it's octal */ in scannumber()
406 radix = 16; /* Remember new radix */ in scannumber()
416 if (radix != 16 && (c == 'e' || c == 'E')) { in scannumber()
421 radix = 10; /* Decimal exponent */ in scannumber()
423 else if (radix != 16 && c == '.') { in scannumber()
427 radix = 10; /* Decimal fraction */ in scannumber()
444 if (radix == 16) /* Alpha's are ok only */ in scannumber()
498 if (octal89 && radix == 8) in scannumber()
/trunk/main/sal/qa/rtl_strings/
H A Drtl_OString.cxx1927 sal_Bool test_valueOf( const char** resArray, int n, sal_Int16 radix, in test_valueOf() argument
1942 aStr1 = ::rtl::OString::valueOf((T)i, radix); in test_valueOf()
1950 aStr1 = ::rtl::OString::valueOf((T)inArray[i], radix); in test_valueOf()
3014 const sal_Int32 *expVal,sal_Int16 radix, hTestResult hRtlTestResult ) in test_toInt32() argument
3024 sal_Int32 intRes = str.toInt32(radix); in test_toInt32()
3204 const sal_Int64 *expVal,sal_Int16 radix, hTestResult hRtlTestResult ) in test_toInt64() argument
3214 sal_Int64 intRes = str.toInt64( radix ); in test_toInt64()
H A Drtl_OUString.cxx1408 sal_Bool test_valueOf( const char** resArray, int n, sal_Int16 radix, in test_valueOf() argument
1434 aStr1 = ::rtl::OUString::valueOf((T)i, radix); in test_valueOf()
1450 aStr1 = ::rtl::OUString::valueOf((T)inArray[i], radix); in test_valueOf()
3147 sal_Bool test_toData( const char** input, int num, sal_Int16 radix, in test_toData() argument
3182 intRes=static_cast<T>(str.toInt32(radix)); in test_toData()
3194 intRes=static_cast<T>(str.toInt64(radix)); in test_toData()
/trunk/main/offapi/com/sun/star/sdbc/
H A DXDatabaseMetaData.idl1314 <b>RADIX</b> short => radix
/trunk/main/sc/source/ui/src/
H A Dscfuncs.src9012 Text [ en-US ] = "radix" ;
9052 Text [ en-US ] = "radix" ;
/trunk/extras/l10n/source/as/
H A Dlocalize.sdf13530 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 as radix
13537 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 as radix 2002-02-02 02:0…
/trunk/extras/l10n/source/te/
H A Dlocalize.sdf16026 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 te radix
16033 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 te radix 2002-02-02 02:0…
/trunk/extras/l10n/source/or/
H A Dlocalize.sdf15982 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 or radix
15989 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 or radix 2002-02-02 02:0…
/trunk/extras/l10n/source/be-BY/
H A Dlocalize.sdf13502 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 be-BY radix 2002-02-02 02:0…
13509 ….src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 be-BY radix 2002-02-02 02:0…
/trunk/extras/l10n/source/rw/
H A Dlocalize.sdf11541 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3145241 231 0 rw \<emph\>radix\</emph…
11672 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must …
11677 …_id3157994 227 0 rw If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
11683 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3159262 218 0 rw \<emph\>radix\</emph…
50512 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 rw radix
50632 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 rw radix 2002-02-02 02:0…
/trunk/extras/l10n/source/he/
H A Dlocalize.sdf9867 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 he radix
9874 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 he radix 20200411 15:09:…
57703 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3159262 218 0 he \<emph\>radix\</emph…
57746 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must …
57747 …_id3157994 227 0 he If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
57751 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3145241 231 0 he \<emph\>radix\</emph…
/trunk/extras/l10n/source/hr/
H A Dlocalize.sdf10866 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 hr radix
10873 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 hr radix 20181231 09:50:…
59733 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3159262 218 0 hr \<emph\>radix\</emph…
59776 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must …
59777 …_id3157994 227 0 hr If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
59781 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3145241 231 0 hr \<emph\>radix\</emph…
/trunk/extras/l10n/source/bs/
H A Dlocalize.sdf28186 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3159262 218 0 bs \<emph\>radix\</emph…
28228 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must …
28229 …_id3157994 227 0 bs If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
28233 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3145241 231 0 bs \<emph\>radix\</emph…
/trunk/extras/l10n/source/cy/
H A Dlocalize.sdf28557 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3159262 218 0 cy \<emph\>radix\</emph…
28599 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must …
28600 …_id3157994 227 0 cy If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
28604 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3145241 231 0 cy \<emph\>radix\</emph…
/trunk/extras/l10n/source/ug/
H A Dlocalize.sdf10866 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 ug radix
10873 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 ug radix 20181231 09:50:…
59775 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must …
59776 …_id3157994 227 0 ug If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
/trunk/extras/l10n/source/sw-TZ/
H A Dlocalize.sdf10942 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3145241 231 0 sw-TZ \<emph\>radix\</e…
11073 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must …
11078 …3157994 227 0 sw-TZ If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
11084 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3159262 218 0 sw-TZ \<emph\>radix\</e…
/trunk/extras/l10n/source/hi/
H A Dlocalize.sdf9867 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 hi radix
9874 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 hi radix 20200411 15:09:…
57744 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must …
57745 …_id3157994 227 0 hi If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…

Completed in 9009 milliseconds

123