Lines Matching refs:pNew
576 rtl_String* pNew = 0; in copy() local
577 … rtl_string_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, getLength()-beginIndex ); in copy()
578 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in copy()
601 rtl_String* pNew = 0; in copy() local
602 rtl_string_newFromStr_WithLength( &pNew, pData->buffer+beginIndex, count ); in copy()
603 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in copy()
617 rtl_String* pNew = 0; in concat() local
618 rtl_string_newConcat( &pNew, pData, str.pData ); in concat()
619 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in concat()
642 rtl_String* pNew = 0; in replaceAt() local
643 rtl_string_newReplaceStrAt( &pNew, pData, index, count, newStr.pData ); in replaceAt()
644 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in replaceAt()
662 rtl_String* pNew = 0; in replace() local
663 rtl_string_newReplace( &pNew, pData, oldChar, newChar ); in replace()
664 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in replace()
679 rtl_String* pNew = 0; in toAsciiLowerCase() local
680 rtl_string_newToAsciiLowerCase( &pNew, pData ); in toAsciiLowerCase()
681 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in toAsciiLowerCase()
696 rtl_String* pNew = 0; in toAsciiUpperCase() local
697 rtl_string_newToAsciiUpperCase( &pNew, pData ); in toAsciiUpperCase()
698 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in toAsciiUpperCase()
714 rtl_String* pNew = 0; in trim() local
715 rtl_string_newTrim( &pNew, pData ); in trim()
716 return OString( pNew, (DO_NOT_ACQUIRE*)0 ); in trim()
745 rtl_String * pNew = 0; in getToken() local
746 index = rtl_string_getToken( &pNew, pData, token, cTok, index ); in getToken()
747 return OString( pNew, (DO_NOT_ACQUIRE *)0 ); in getToken()