Lines Matching refs:rParaString
217 …ng::EnhancedCustomShapeParameter& rParameter, sal_Int32& nIndex, const rtl::OUString& rParaString ) in GetNextParameter() argument
219 if ( nIndex >= rParaString.getLength() ) in GetNextParameter()
227 if ( rParaString[ nIndex ] == (sal_Unicode)'$' ) in GetNextParameter()
233 else if ( rParaString[ nIndex ] == (sal_Unicode)'?' ) in GetNextParameter()
238 bValid = GetEquationName( rParaString, nIndex, aEquationName ); in GetNextParameter()
246 else if ( rParaString[ nIndex ] > (sal_Unicode)'9' ) in GetNextParameter()
249 if ( rParaString.matchIgnoreAsciiCaseAsciiL( "left", 4, nIndex ) ) in GetNextParameter()
254 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "top", 3, nIndex ) ) in GetNextParameter()
259 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "right", 5, nIndex ) ) in GetNextParameter()
264 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "bottom", 6, nIndex ) ) in GetNextParameter()
269 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "xstretch", 8, nIndex ) ) in GetNextParameter()
274 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "ystretch", 8, nIndex ) ) in GetNextParameter()
279 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "hasstroke", 9, nIndex ) ) in GetNextParameter()
284 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "hasfill", 7, nIndex ) ) in GetNextParameter()
289 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "width", 5, nIndex ) ) in GetNextParameter()
294 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "height", 6, nIndex ) ) in GetNextParameter()
299 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "logwidth", 8, nIndex ) ) in GetNextParameter()
304 else if ( rParaString.matchIgnoreAsciiCaseAsciiL( "logheight", 9, nIndex ) ) in GetNextParameter()
324 while( ( nIndex < rParaString.getLength() ) && bValid ) in GetNextParameter()
326 switch( rParaString[ nIndex ] ) in GetNextParameter()
394 rtl::OUString aNumber( rParaString.copy( nStartIndex, nIndex - nStartIndex ) ); in GetNextParameter()
420 while(nIndex < rParaString.getLength()) in GetNextParameter()
422 const sal_Unicode aCandidate(rParaString[nIndex]); in GetNextParameter()