Lines Matching refs:pNew

573             rtl_String* pNew = 0;  in copy()  local
574 … rtl_string_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, getLength()-beginIndex ); in copy()
575 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in copy()
598 rtl_String* pNew = 0; in copy() local
599 rtl_string_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, count ); in copy()
600 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in copy()
614 rtl_String* pNew = 0; in concat() local
615 rtl_string_newConcat( &pNew, pData, str.pData ); in concat()
616 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in concat()
639 rtl_String* pNew = 0; in replaceAt() local
640 rtl_string_newReplaceStrAt( &pNew, pData, index, count, newStr.pData ); in replaceAt()
641 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in replaceAt()
659 rtl_String* pNew = 0; in replace() local
660 rtl_string_newReplace( &pNew, pData, oldChar, newChar ); in replace()
661 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in replace()
676 rtl_String* pNew = 0; in toAsciiLowerCase() local
677 rtl_string_newToAsciiLowerCase( &pNew, pData ); in toAsciiLowerCase()
678 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in toAsciiLowerCase()
693 rtl_String* pNew = 0; in toAsciiUpperCase() local
694 rtl_string_newToAsciiUpperCase( &pNew, pData ); in toAsciiUpperCase()
695 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in toAsciiUpperCase()
711 rtl_String* pNew = 0; in trim() local
712 rtl_string_newTrim( &pNew, pData ); in trim()
713 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in trim()
742 rtl_String * pNew = 0; in getToken() local
743 index = rtl_string_getToken( &pNew, pData, token, cTok, index ); in getToken()
744 return OString( pNew, (DO_NOT_ACQUIRE *)0 ); in getToken()