Lines Matching refs:pcBeg

48 inline const sal_Char* lclFindCharacter( const sal_Char* pcBeg, const sal_Char* pcEnd, sal_Char cCh…  in lclFindCharacter()  argument
50 …sal_Int32 nIndex = rtl_str_indexOfChar_WithLength( pcBeg, static_cast< sal_Int32 >( pcEnd - pcBeg in lclFindCharacter()
51 return (nIndex < 0) ? pcEnd : (pcBeg + nIndex); in lclFindCharacter()
59 const sal_Char* lclFindWhiteSpace( const sal_Char* pcBeg, const sal_Char* pcEnd ) in lclFindWhiteSpace() argument
61 for( ; pcBeg < pcEnd; ++pcBeg ) in lclFindWhiteSpace()
62 if( lclIsWhiteSpace( *pcBeg ) ) in lclFindWhiteSpace()
63 return pcBeg; in lclFindWhiteSpace()
67 const sal_Char* lclFindNonWhiteSpace( const sal_Char* pcBeg, const sal_Char* pcEnd ) in lclFindNonWhiteSpace() argument
69 for( ; pcBeg < pcEnd; ++pcBeg ) in lclFindNonWhiteSpace()
70 if( !lclIsWhiteSpace( *pcBeg ) ) in lclFindNonWhiteSpace()
71 return pcBeg; in lclFindNonWhiteSpace()
75 const sal_Char* lclTrimWhiteSpaceFromEnd( const sal_Char* pcBeg, const sal_Char* pcEnd ) in lclTrimWhiteSpaceFromEnd() argument
77 while( (pcBeg < pcEnd) && lclIsWhiteSpace( pcEnd[ -1 ] ) ) in lclTrimWhiteSpaceFromEnd()
82 inline void lclAppendToBuffer( OStringBuffer& rBuffer, const sal_Char* pcBeg, const sal_Char* pcEnd… in lclAppendToBuffer() argument
84 rBuffer.append( pcBeg, static_cast< sal_Int32 >( pcEnd - pcBeg ) ); in lclAppendToBuffer()
89 void lclProcessAttribs( OStringBuffer& rBuffer, const sal_Char* pcBeg, const sal_Char* pcEnd ) in lclProcessAttribs() argument
103 const sal_Char* pcNameBeg = pcBeg; in lclProcessAttribs()
149 lclAppendToBuffer( rBuffer, pcBeg, pcEnd ); in lclProcessAttribs()
244 const sal_Char* pcBeg = rChars.getStr(); in lclProcessCharacters() local
245 const sal_Char* pcEnd = pcBeg + rChars.getLength(); in lclProcessCharacters()
246 bool bHasBracket = (pcBeg < pcEnd) && (pcEnd[ -1 ] == '<'); in lclProcessCharacters()
250 const sal_Char* pcContentsBeg = lclFindNonWhiteSpace( pcBeg, pcEnd ); in lclProcessCharacters()