Searched refs:beginIndex (Results 1 – 4 of 4) sorted by relevance
/aoo4110/main/sal/inc/rtl/ |
H A D | string.hxx | 566 OString copy( sal_Int32 beginIndex ) const SAL_THROW(()) in copy() 568 OSL_ASSERT(beginIndex >= 0 && beginIndex <= getLength()); in copy() 569 if ( beginIndex == 0 ) in copy() 574 … rtl_string_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, getLength()-beginIndex ); in copy() 590 OString copy( sal_Int32 beginIndex, sal_Int32 count ) const SAL_THROW(()) in copy() argument 592 OSL_ASSERT(beginIndex >= 0 && beginIndex <= getLength() in copy() 593 && count >= 0 && count <= getLength() - beginIndex); in copy() 594 if ( (beginIndex == 0) && (count == getLength()) ) in copy() 599 rtl_string_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, count ); in copy()
|
H A D | ustring.hxx | 934 OUString copy( sal_Int32 beginIndex ) const SAL_THROW(()) in copy() 936 OSL_ASSERT(beginIndex >= 0 && beginIndex <= getLength()); in copy() 937 if ( beginIndex == 0 ) in copy() 942 … rtl_uString_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, getLength()-beginIndex ); in copy() 958 OUString copy( sal_Int32 beginIndex, sal_Int32 count ) const SAL_THROW(()) in copy() argument 960 OSL_ASSERT(beginIndex >= 0 && beginIndex <= getLength() in copy() 961 && count >= 0 && count <= getLength() - beginIndex); in copy() 962 if ( (beginIndex == 0) && (count == getLength()) ) in copy() 967 rtl_uString_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, count ); in copy()
|
/aoo4110/main/qadevOOo/runner/util/ |
H A D | UITools.java | 500 int beginIndex = 0; in removeCharactersFromCurrencyString() local 508 beginIndex = i; in removeCharactersFromCurrencyString() 520 String currencyVal = stringVal.substring(beginIndex, endIndex); in removeCharactersFromCurrencyString()
|
/aoo4110/main/sal/qa/rtl_strings/ |
H A D | rtl_OString.cxx | 1377 sal_Int32 beginIndex; in test_rtl_OString_copy_001() member 1405 dst = src.copy(arrTestCase[i].beginIndex); in test_rtl_OString_copy_001() 1444 sal_Int32 beginIndex; in test_rtl_OString_copy_002() member 1469 dst = src.copy(arrTestCase[i].beginIndex, arrTestCase[i].count); in test_rtl_OString_copy_002()
|
Completed in 222 milliseconds