Lines Matching refs:aFuncResult

2168             String          aFuncResult;  in ScCell()  local
2189 aCellPos.Format( aFuncResult, nFlags, pDok, pDok->GetAddressConvention() ); in ScCell()
2190 PushString( aFuncResult ); in ScCell()
2198 pDok->GetName( nTab, aFuncResult ); in ScCell()
2204 aFuncResult = (sal_Unicode) '\''; in ScCell()
2206aFuncResult += String( rURLObj.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS ) ); in ScCell()
2207 aFuncResult.AppendAscii( "'#$" ); in ScCell()
2210 aFuncResult += aTabName; in ScCell()
2214 PushString( aFuncResult ); in ScCell()
2220aFuncResult, (SCA_COL_ABSOLUTE|SCA_VALID_COL), NULL, pDok->GetAddressConvention() ); in ScCell()
2221 aFuncResult += ':'; in ScCell()
2225 aFuncResult += aCellStr; in ScCell()
2226 PushString( aFuncResult ); in ScCell()
2234 GetCellString( aFuncResult, pCell ); in ScCell()
2235 PushString( aFuncResult ); in ScCell()
2243 aFuncResult = 'l'; in ScCell()
2245 aFuncResult = HasCellValueData( pCell ) ? 'v' : 'b'; in ScCell()
2246 PushString( aFuncResult ); in ScCell()
2275 case SVX_HOR_JUSTIFY_BLOCK: aFuncResult = '\''; break; in ScCell()
2276 case SVX_HOR_JUSTIFY_CENTER: aFuncResult = '^'; break; in ScCell()
2277 case SVX_HOR_JUSTIFY_RIGHT: aFuncResult = '"'; break; in ScCell()
2278 case SVX_HOR_JUSTIFY_REPEAT: aFuncResult = '\\'; break; in ScCell()
2281 PushString( aFuncResult ); in ScCell()
2301 case NUMBERFORMAT_NUMBER: aFuncResult = (bThousand ? ',' : 'F'); break; in ScCell()
2302 case NUMBERFORMAT_CURRENCY: aFuncResult = 'C'; break; in ScCell()
2303 case NUMBERFORMAT_SCIENTIFIC: aFuncResult = 'S'; break; in ScCell()
2304 case NUMBERFORMAT_PERCENT: aFuncResult = 'P'; break; in ScCell()
2317 … case NF_DATE_DIN_DMMMMYYYY: aFuncResult.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "D1" ) ); break; in ScCell()
2318 … case NF_DATE_SYS_DDMMM: aFuncResult.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "D2" ) ); break; in ScCell()
2319 … case NF_DATE_SYS_MMYY: aFuncResult.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "D3" ) ); break; in ScCell()
2322aFuncResult.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "D4" ) ); break; in ScCell()
2323 … case NF_DATE_DIN_MMDD: aFuncResult.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "D5" ) ); break; in ScCell()
2324 … case NF_TIME_HHMMSSAMPM: aFuncResult.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "D6" ) ); break; in ScCell()
2325 … case NF_TIME_HHMMAMPM: aFuncResult.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "D7" ) ); break; in ScCell()
2326 … case NF_TIME_HHMMSS: aFuncResult.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "D8" ) ); break; in ScCell()
2327 … case NF_TIME_HHMM: aFuncResult.AssignAscii( RTL_CONSTASCII_STRINGPARAM( "D9" ) ); break; in ScCell()
2328 default: aFuncResult = 'G'; in ScCell()
2333 aFuncResult += String::CreateFromInt32( nPrec ); in ScCell()
2336 aFuncResult += '-'; in ScCell()
2338 aFuncResult.AppendAscii( RTL_CONSTASCII_STRINGPARAM( "()" ) ); in ScCell()
2339 PushString( aFuncResult ); in ScCell()