Lines Matching refs:aBuf

152     OUStringBuffer aBuf( C2U( "f(x) = " ));  in ImplGetRepresentation()  local
157 aBuf.append( C2U( "exp( " )); in ImplGetRepresentation()
158 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fLogIntercept) ); in ImplGetRepresentation()
159 aBuf.append( (m_fLogSlope < 0.0) ? C2U( " - " ) : C2U( " + " )); in ImplGetRepresentation()
160 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, fabs(m_fLogSlope)) ); in ImplGetRepresentation()
161 aBuf.append( C2U( " x )" )); in ImplGetRepresentation()
167 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, fIntercept) ); in ImplGetRepresentation()
168 aBuf.append( C2U( " exp( " )); in ImplGetRepresentation()
169 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fLogSlope) ); in ImplGetRepresentation()
170 aBuf.append( C2U( " x )" )); in ImplGetRepresentation()
176 aBuf.append( C2U( " exp( " )); in ImplGetRepresentation()
179aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fLogIntercept) ); in ImplGetRepresentation()
180 aBuf.append( (m_fLogSlope < 0.0) ? C2U( " - " ) : C2U( " + " )); in ImplGetRepresentation()
181aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, fabs(m_fLogSlope)) ); in ImplGetRepresentation()
185 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fLogSlope) ); in ImplGetRepresentation()
187 aBuf.append( C2U( " x )" )); in ImplGetRepresentation()
191 return aBuf.makeStringAndClear(); in ImplGetRepresentation()