| /AOO42X/main/sal/qa/OStringBuffer/ |
| H A D | rtl_OStringBuffer.cxx | 2834 sal_Int16 radix = 2; in TEST_F() local 2837 aStrBuf.append( input, radix ); in TEST_F() 2853 sal_Int16 radix = 2; in TEST_F() local 2856 aStrBuf.append( input, radix ); in TEST_F() 2868 sal_Int16 radix = 2; in TEST_F() local 2871 aStrBuf.append( input, radix ); in TEST_F() 2883 sal_Int16 radix = 2; in TEST_F() local 2886 aStrBuf.append( input, radix ); in TEST_F() 2898 sal_Int16 radix = 8; in TEST_F() local 2901 aStrBuf.append( input, radix ); in TEST_F() [all …]
|
| /AOO42X/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 …]
|
| /AOO42X/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 | 783 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 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(…
|
| /AOO42X/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()
|
| /AOO42X/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()
|
| /AOO42X/main/offapi/com/sun/star/sdbc/ |
| H A D | XDatabaseMetaData.idl | 1314 <b>RADIX</b> short => radix
|
| /AOO42X/main/sc/source/ui/src/ |
| H A D | scfuncs.src | 9012 Text [ en-US ] = "radix" ; 9052 Text [ en-US ] = "radix" ;
|
| /AOO42X/extras/l10n/source/as/ |
| H A D | localize.sdf | 13530 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 as radix 2002… 13537 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 as radix 2002…
|
| /AOO42X/extras/l10n/source/be-BY/ |
| H A D | localize.sdf | 13502 … RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 be-BY radix 2002… 13509 … RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 be-BY radix 2002…
|
| /AOO42X/extras/l10n/source/te/ |
| H A D | localize.sdf | 16026 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 te radix 2002… 16033 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 te radix 2002…
|
| /AOO42X/extras/l10n/source/or/ |
| H A D | localize.sdf | 15982 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 or radix 2002… 15989 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 or radix 2002…
|
| /AOO42X/extras/l10n/source/rw/ |
| H A D | localize.sdf | 11541 …01\04060110.xhp 0 help par_id3145241 231 0 rw \<emph\>radix\</emph\> indicates… 11672 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 11677 … 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 …01\04060110.xhp 0 help par_id3159262 218 0 rw \<emph\>radix\</emph\> indicates… 50512 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 rw radix 2002… 50632 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 rw radix 2002…
|
| /AOO42X/extras/l10n/source/he/ |
| H A D | localize.sdf | 9867 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 he radix 2020… 9874 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 he radix 2020… 57703 …01\04060110.xhp 0 help par_id3159262 218 0 he \<emph\>radix\</emph\> indicates… 57746 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 57747 … 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 …01\04060110.xhp 0 help par_id3145241 231 0 he \<emph\>radix\</emph\> indicates…
|
| /AOO42X/extras/l10n/source/hr/ |
| H A D | localize.sdf | 10866 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 hr radix 2018… 10873 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 hr radix 2018… 59733 …01\04060110.xhp 0 help par_id3159262 218 0 hr \<emph\>radix\</emph\> indicates… 59776 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 59777 … 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 …01\04060110.xhp 0 help par_id3145241 231 0 hr \<emph\>radix\</emph\> indicates…
|
| /AOO42X/extras/l10n/source/bs/ |
| H A D | localize.sdf | 28186 …01\04060110.xhp 0 help par_id3159262 218 0 bs \<emph\>radix\</emph\> indicates… 28228 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 28229 … 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 …01\04060110.xhp 0 help par_id3145241 231 0 bs \<emph\>radix\</emph\> indicates…
|
| /AOO42X/extras/l10n/source/cy/ |
| H A D | localize.sdf | 28557 …01\04060110.xhp 0 help par_id3159262 218 0 cy \<emph\>radix\</emph\> indicates… 28599 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 28600 … 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 …01\04060110.xhp 0 help par_id3145241 231 0 cy \<emph\>radix\</emph\> indicates…
|
| /AOO42X/extras/l10n/source/hi/ |
| H A D | localize.sdf | 9867 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 hi radix 2020… 9874 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 hi radix 2020… 57744 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 57745 … 227 0 hi If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
|
| /AOO42X/extras/l10n/source/am/ |
| H A D | localize.sdf | 9867 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 am radix 2020… 9874 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 am radix 2020… 57744 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 57745 … 227 0 am If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
|
| /AOO42X/extras/l10n/source/ug/ |
| H A D | localize.sdf | 10866 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BASE 4 0 ug radix 2018… 10873 …ring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DECIMAL 4 0 ug radix 2018… 59775 …"\>number system\</link\> to a positive integer in the base radix given.\</ahelp\> The radix must … 59776 … 227 0 ug If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is…
|