Lines Matching refs:rParaString

215 …ng::EnhancedCustomShapeParameter& rParameter, sal_Int32& nIndex, const rtl::OUString& rParaString )  in GetNextParameter()  argument
217 if ( nIndex >= rParaString.getLength() ) in GetNextParameter()
225 if ( rParaString[ nIndex ] == (sal_Unicode)'$' ) in GetNextParameter()
231 else if ( rParaString[ nIndex ] == (sal_Unicode)'?' ) in GetNextParameter()
236 bValid = GetEquationName( rParaString, nIndex, aEquationName ); in GetNextParameter()
244 else if ( rParaString[ nIndex ] > (sal_Unicode)'9' ) in GetNextParameter()
247 if ( rParaString.matchIgnoreAsciiCaseAsciiL( "left", 4, nIndex ) ) in GetNextParameter()
252 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "top", 3, nIndex ) ) in GetNextParameter()
257 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "right", 5, nIndex ) ) in GetNextParameter()
262 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "bottom", 6, nIndex ) ) in GetNextParameter()
267 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "xstretch", 8, nIndex ) ) in GetNextParameter()
272 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "ystretch", 8, nIndex ) ) in GetNextParameter()
277 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "hasstroke", 9, nIndex ) ) in GetNextParameter()
282 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "hasfill", 7, nIndex ) ) in GetNextParameter()
287 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "width", 5, nIndex ) ) in GetNextParameter()
292 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "height", 6, nIndex ) ) in GetNextParameter()
297 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "logwidth", 8, nIndex ) ) in GetNextParameter()
302 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "logheight", 9, nIndex ) ) in GetNextParameter()
322 while( ( nIndex < rParaString.getLength() ) && bValid ) in GetNextParameter()
324 switch( rParaString[ nIndex ] ) in GetNextParameter()
392 rtl::OUString aNumber( rParaString.copy( nStartIndex, nIndex - nStartIndex ) ); in GetNextParameter()
418 while(nIndex < rParaString.getLength()) in GetNextParameter()
420 const sal_Unicode aCandidate(rParaString[nIndex]); in GetNextParameter()