Home
last modified time | relevance | path

Searched refs:beginIndex (Results 1 – 4 of 4) sorted by relevance

/trunk/main/sal/inc/rtl/
H A Dstring.hxx569 OString copy( sal_Int32 beginIndex ) const SAL_THROW(()) in copy()
571 OSL_ASSERT(beginIndex >= 0 && beginIndex <= getLength()); in copy()
572 if ( beginIndex == 0 ) in copy()
577 … rtl_string_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, getLength()-beginIndex ); in copy()
593 OString copy( sal_Int32 beginIndex, sal_Int32 count ) const SAL_THROW(()) in copy() argument
595 OSL_ASSERT(beginIndex >= 0 && beginIndex <= getLength() in copy()
596 && count >= 0 && count <= getLength() - beginIndex); in copy()
597 if ( (beginIndex == 0) && (count == getLength()) ) in copy()
602 rtl_string_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, count ); in copy()
H A Dustring.hxx934 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()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/
H A DUITools.java500 int beginIndex = 0; in removeCharactersFromCurrencyString() local
508 beginIndex = i; in removeCharactersFromCurrencyString()
520 String currencyVal = stringVal.substring(beginIndex, endIndex); in removeCharactersFromCurrencyString()
/trunk/main/sal/qa/rtl_strings/
H A Drtl_OString.cxx1377 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 40 milliseconds