Lines Matching refs:pcNameBeg
103 const sal_Char* pcNameBeg = pcBeg; in lclProcessAttribs() local
104 while( bOk && (pcNameBeg < pcEnd) ) in lclProcessAttribs()
107 const sal_Char* pcEqualSign = lclFindCharacter( pcNameBeg, pcEnd, '=' ); in lclProcessAttribs()
111 const sal_Char* pcNameEnd = lclTrimWhiteSpaceFromEnd( pcNameBeg, pcEqualSign ); in lclProcessAttribs()
112 if( (bOk = pcNameBeg < pcNameEnd) == true ) in lclProcessAttribs()
123 … OString aAttribName( pcNameBeg, static_cast< sal_Int32 >( pcNameEnd - pcNameBeg ) ); in lclProcessAttribs()
124 … OString aAttribData( pcNameBeg, static_cast< sal_Int32 >( pcValueEnd - pcNameBeg ) ); in lclProcessAttribs()
131 aAttributeNames[ aAttribName ] = pcNameBeg; in lclProcessAttribs()
132 aAttributes[ pcNameBeg ] = aAttribData; in lclProcessAttribs()
134 pcNameBeg = pcValueEnd; in lclProcessAttribs()
135 if( (pcNameBeg < pcEnd) && ((bOk = lclIsWhiteSpace( *pcNameBeg )) == true) ) in lclProcessAttribs()
136 pcNameBeg = lclFindNonWhiteSpace( pcNameBeg + 1, pcEnd ); in lclProcessAttribs()