/aoo41x/main/sal/qa/OStringBuffer/ |
H A D | rtl_OStringBuffer.cxx | 3846 aStrBuf.append( input, radix ); in append_001() 3869 aStrBuf.append( input, radix ); in append_002() 3888 aStrBuf.append( input, radix ); in append_003() 3907 aStrBuf.append( input, radix ); in append_004() 3926 aStrBuf.append( input, radix ); in append_005() 3945 aStrBuf.append( input, radix ); in append_006() 3964 aStrBuf.append( input, radix ); in append_007() 3983 aStrBuf.append( input, radix ); in append_008() 4002 aStrBuf.append( input, radix ); in append_009() 4021 aStrBuf.append( input, radix ); in append_010() [all …]
|
/aoo41x/main/toolkit/source/layout/core/ |
H A D | proplist.cxx | 114 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 …]
|
/aoo41x/main/sal/inc/rtl/ |
H A D | strbuf.hxx | 385 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 D | ustrbuf.hxx | 432 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 D | string.hxx | 780 sal_Int32 toInt32( sal_Int16 radix = 10 ) const SAL_THROW(()) in toInt32() argument 782 return rtl_str_toInt32( pData->buffer, radix ); in toInt32() 794 sal_Int64 toInt64( sal_Int16 radix = 10 ) const SAL_THROW(()) in toInt64() argument 796 return rtl_str_toInt64( pData->buffer, radix ); in toInt64() 863 static OString valueOf( sal_Int32 i, sal_Int16 radix = 10 ) SAL_THROW(()) in valueOf() argument 867 rtl_string_newFromStr_WithLength( &pNewData, aBuf, rtl_str_valueOfInt32( aBuf, i, radix ) ); in valueOf() 880 static OString valueOf( sal_Int64 ll, sal_Int16 radix = 10 ) SAL_THROW(()) in valueOf() argument 884 … rtl_string_newFromStr_WithLength( &pNewData, aBuf, rtl_str_valueOfInt64( aBuf, ll, radix ) ); in valueOf()
|
H A D | ustring.hxx | 1148 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 D | string.h | 596 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 D | ustring.h | 918 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(…
|
/aoo41x/main/rsc/source/rscpp/ |
H A D | cpp6.c | 384 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()
|
/aoo41x/main/sal/qa/rtl_strings/ |
H A D | rtl_OString.cxx | 1927 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 D | rtl_OUString.cxx | 1408 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()
|
/aoo41x/main/offapi/com/sun/star/sdbc/ |
H A D | XDatabaseMetaData.idl | 1314 <b>RADIX</b> short => radix
|
/aoo41x/main/sc/source/ui/src/ |
H A D | scfuncs.src | 9014 Text [ en-US ] = "radix" ; 9054 Text [ en-US ] = "radix" ;
|
/aoo41x/extras/l10n/source/as/ |
H A D | localize.sdf | 13530 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…
|
/aoo41x/extras/l10n/source/be-BY/ |
H A D | localize.sdf | 13502 …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…
|
/aoo41x/extras/l10n/source/or/ |
H A D | localize.sdf | 15982 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…
|
/aoo41x/extras/l10n/source/te/ |
H A D | localize.sdf | 16026 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…
|
/aoo41x/extras/l10n/source/rw/ |
H A D | localize.sdf | 11541 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…
|
/aoo41x/extras/l10n/source/hr/ |
H A D | localize.sdf | 12002 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3145241 231 0 hr \<emph\>radix\</emph… 12133 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 12138 …_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… 12144 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3159262 218 0 hr \<emph\>radix\</emph… 52987 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 hr radix … 53107 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 hr radix 2002-02-02 02:0…
|
/aoo41x/extras/l10n/source/he/ |
H A D | localize.sdf | 8172 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 he radix … 8179 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 he radix 20130618 17:22:… 41189 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3159262 218 0 he \<emph\>radix\</emph… 41232 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 41233 …_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… 41237 helpcontent2 source\text\scalc\01\04060110.xhp 0 help par_id3145241 231 0 he \<emph\>radix\</emph…
|
/aoo41x/extras/l10n/source/bs/ |
H A D | localize.sdf | 28186 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…
|
/aoo41x/extras/l10n/source/cy/ |
H A D | localize.sdf | 28557 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…
|
/aoo41x/extras/l10n/source/sw-TZ/ |
H A D | localize.sdf | 10942 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…
|
/aoo41x/extras/l10n/source/hi/ |
H A D | localize.sdf | 8172 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 hi radix … 8179 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 hi radix 20130618 17:22:… 41232 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 41233 …_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…
|
/aoo41x/extras/l10n/source/ug/ |
H A D | localize.sdf | 29982 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 ug radix … 29989 …ncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 ug radix 2002-02-02 02:0…
|