Lines Matching refs:pStr

524     const sal_Char* pStr = aStr.getStr();  in appendName()  local
535 if( (pStr[i] >= 'A' && pStr[i] <= 'Z' ) || in appendName()
536 (pStr[i] >= 'a' && pStr[i] <= 'z' ) || in appendName()
537 (pStr[i] >= '0' && pStr[i] <= '9' ) || in appendName()
538 pStr[i] == '-' ) in appendName()
540 rBuffer.append( pStr[i] ); in appendName()
545 appendHex( (sal_Int8)pStr[i], rBuffer ); in appendName()
550 static void appendName( const sal_Char* pStr, OStringBuffer& rBuffer ) in appendName() argument
553 while( pStr && *pStr ) in appendName()
555 if( (*pStr >= 'A' && *pStr <= 'Z' ) || in appendName()
556 (*pStr >= 'a' && *pStr <= 'z' ) || in appendName()
557 (*pStr >= '0' && *pStr <= '9' ) || in appendName()
558 *pStr == '-' ) in appendName()
560 rBuffer.append( *pStr ); in appendName()
565 appendHex( (sal_Int8)*pStr, rBuffer ); in appendName()
567 pStr++; in appendName()
572 static void appendLiteralString( const sal_Char* pStr, sal_Int32 nLength, OStringBuffer& rBuffer ) in appendLiteralString() argument
576 switch( *pStr ) in appendLiteralString()
597 rBuffer.append( (sal_Char) *pStr ); in appendLiteralString()
600 rBuffer.append( (sal_Char) *pStr ); in appendLiteralString()
603 pStr++; in appendLiteralString()
633 const sal_Unicode* pStr = rString.getStr(); in appendDestinationName() local
637 sal_Unicode aChar = pStr[i]; in appendDestinationName()
659 const sal_Unicode* pStr = rString.getStr(); in appendUnicodeTextString() local
663 sal_Unicode aChar = pStr[i]; in appendUnicodeTextString()
677 const sal_Char* pStr = aStr.getStr(); in createWidgetFieldName() local
687 if( (pStr[i] >= 32 && pStr[i] <= 126 ) ) in createWidgetFieldName()
688 aBuffer.append( pStr[i] ); in createWidgetFieldName()
692 appendHex( (sal_Int8)pStr[i], aBuffer ); in createWidgetFieldName()
2024 const sal_Unicode* pStr = rInString.getStr(); in appendUnicodeTextStringEncrypt() local
2037 sal_Unicode aUnChar = pStr[i]; in appendUnicodeTextStringEncrypt()