Lines Matching refs:pChar

325     const sal_Unicode* pChar = rHFString.GetBuffer();  in ParseString()  local
326 const sal_Unicode* pNull = pChar + rHFString.Len(); // pointer to teminating null char in ParseString()
327 while( *pChar ) in ParseString()
336 switch( *pChar ) in ParseString()
347 maCurrText += *pChar; in ParseString()
357 switch( *pChar ) in ParseString()
373 if( (pNull - pChar >= 2) && (*(pChar + 1) == '&') && (*(pChar + 2) == 'F') ) in ParseString()
376 pChar += 2; in ParseString()
414 if( ('0' <= *pChar) && (*pChar <= '9') ) // font size in ParseString()
416 nReadHeight = *pChar - '0'; in ParseString()
427 switch( *pChar ) in ParseString()
430 --pChar; in ParseString()
436 aReadFont += *pChar; in ParseString()
445 switch( *pChar ) in ParseString()
455 aReadStyle += *pChar; in ParseString()
464 if( ('0' <= *pChar) && (*pChar <= '9') ) in ParseString()
469 nReadHeight += (*pChar - '0'); in ParseString()
481 --pChar; in ParseString()
487 ++pChar; in ParseString()
653 const sal_Unicode* pChar = rEncodedUrl.GetBuffer(); in DecodeUrl() local
654 while( *pChar ) in DecodeUrl()
663 switch( *pChar ) in DecodeUrl()
679 lclAppendUrlChar( rUrl, *pChar ); in DecodeUrl()
689 switch( *pChar ) in DecodeUrl()
693 if( *(pChar + 1) ) in DecodeUrl()
695 ++pChar; in DecodeUrl()
696 if( *pChar == '@' ) in DecodeUrl()
700 lclAppendUrlChar( rUrl, *pChar ); in DecodeUrl()
729 if( *(pChar + 1) ) in DecodeUrl()
731 xub_StrLen nLen = *++pChar; in DecodeUrl()
732 for( xub_StrLen nChar = 0; (nChar < nLen) && *(pChar + 1); ++nChar ) in DecodeUrl()
733 lclAppendUrlChar( rUrl, *++pChar ); in DecodeUrl()
742 lclAppendUrlChar( rUrl, *pChar ); in DecodeUrl()
751 switch( *pChar ) in DecodeUrl()
754 default: lclAppendUrlChar( rUrl, *pChar ); in DecodeUrl()
762 rTabName.Append( *pChar ); in DecodeUrl()
768 lclAppendUrlChar( rUrl, *pChar ); in DecodeUrl()
772 ++pChar; in DecodeUrl()