Lines Matching refs:aStrBuffer

644         rtl::OUStringBuffer aStrBuffer( pIter->second.aSubstVariable.getLength() );  local
645 aStrBuffer.append( m_aVarStart );
646 aStrBuffer.append( pIter->second.aSubstVariable );
647 aStrBuffer.append( m_aVarEnd );
648 aUserOrderVar.aVarName = aStrBuffer.makeStringAndClear();
1058 rtl::OUStringBuffer aStrBuffer( aURL.getLength() ); in impl_reSubstituteVariables() local
1059 aStrBuffer.append( aURL.copy( 0, nPos ) ); in impl_reSubstituteVariables()
1060aStrBuffer.append( m_aPreDefVars.m_FixedVarNames[ (sal_Int32)pIterFixed->eVariable ] ); // Get the… in impl_reSubstituteVariables()
1061aStrBuffer.append( aURL.copy( nPos + aValue.getLength(), ( aURL.getLength() - ( nPos + aValue.getL… in impl_reSubstituteVariables()
1062 aURL = aStrBuffer.makeStringAndClear(); in impl_reSubstituteVariables()
1077 rtl::OUStringBuffer aStrBuffer( aURL.getLength() ); in impl_reSubstituteVariables() local
1078 aStrBuffer.append( aURL.copy( 0, nPos ) ); in impl_reSubstituteVariables()
1079 aStrBuffer.append( m_aVarStart ); in impl_reSubstituteVariables()
1080 aStrBuffer.append( aVarValue ); in impl_reSubstituteVariables()
1081 aStrBuffer.append( m_aVarEnd ); in impl_reSubstituteVariables()
1082aStrBuffer.append( aURL.copy( nPos + aVarValue.getLength(), ( aURL.getLength() - ( nPos + aVarVal… in impl_reSubstituteVariables()
1083 aURL = aStrBuffer.makeStringAndClear(); in impl_reSubstituteVariables()
1108 …rtl::OUStringBuffer aStrBuffer( rVariable.getLength() + m_aVarStart.getLength() + m_aVarEnd.getLen… in impl_getSubstituteVariableValue() local
1109 aStrBuffer.append( m_aVarStart ); in impl_getSubstituteVariableValue()
1110 aStrBuffer.append( rVariable ); in impl_getSubstituteVariableValue()
1111 aStrBuffer.append( m_aVarEnd ); in impl_getSubstituteVariableValue()
1112 aVariable = aStrBuffer.makeStringAndClear(); in impl_getSubstituteVariableValue()