Lines Matching refs:aCell

833 		String aLine, aCell;  in Text2Doc()  local
845 aCell.Erase(); in Text2Doc()
849 p = lcl_ScanString( p, aCell, cStr, DQM_KEEP ); in Text2Doc()
856 aCell.Append( q, sal::static_int_cast<xub_StrLen>( p - q ) ); in Text2Doc()
868 pDoc->SetString( nCol, nRow, aRange.aStart.Tab(), aCell ); in Text2Doc()
1204 String aLine, aCell; in ExtText2Doc() local
1258 aCell = lcl_GetFixed( aLine, nStart, nNext, bIsQuoted ); in ExtText2Doc()
1263 pDoc, nCol, nRow, nTab, aCell, nFmt, in ExtText2Doc()
1283 … p = ScImportExport::ScanNextFieldFromString( p, aCell, cStr, pSeps, bMerge, bIsQuoted ); in ExtText2Doc()
1305 pDoc, nCol, nRow, nTab, aCell, nFmt, in ExtText2Doc()
1430 String aCell; in Doc2Text() local
1447 pDoc->GetFormula( nCol, nRow, aRange.aStart.Tab(), aCell, sal_True ); in Doc2Text()
1448 if( aCell.Search( cSep ) != STRING_NOTFOUND ) in Doc2Text()
1449 lcl_WriteString( rStrm, aCell, cStr, cStr ); in Doc2Text()
1451 lcl_WriteSimpleString( rStrm, aCell ); in Doc2Text()
1455 pDoc->GetString( nCol, nRow, aRange.aStart.Tab(), aCell ); in Doc2Text()
1457 bool bMultiLineText = ( aCell.Search( _LF ) != STRING_NOTFOUND ); in Doc2Text()
1461 aCell.SearchAndReplaceAll( _LF, ' ' ); in Doc2Text()
1463 aCell.ConvertLineEnd(); in Doc2Text()
1467aCell.SearchAndReplaceAll( cSep, mExportTextOptions.mcSeparatorConvertTo ); in Doc2Text()
1469 … if( mExportTextOptions.mbAddQuotes && ( aCell.Search( cSep ) != STRING_NOTFOUND ) ) in Doc2Text()
1470 lcl_WriteString( rStrm, aCell, cStr, cStr ); in Doc2Text()
1472 lcl_WriteSimpleString( rStrm, aCell ); in Doc2Text()
1478 pDoc->GetString( nCol, nRow, aRange.aStart.Tab(), aCell ); in Doc2Text()
1479 lcl_WriteSimpleString( rStrm, aCell ); in Doc2Text()
1487 pDoc->GetString( nCol, nRow, aRange.aStart.Tab(), aCell ); in Doc2Text()
1489 bool bMultiLineText = ( aCell.Search( _LF ) != STRING_NOTFOUND ); in Doc2Text()
1493 aCell.SearchAndReplaceAll( _LF, ' ' ); in Doc2Text()
1495 aCell.ConvertLineEnd(); in Doc2Text()
1499aCell.SearchAndReplaceAll( cSep, mExportTextOptions.mcSeparatorConvertTo ); in Doc2Text()
1501 … if( mExportTextOptions.mbAddQuotes && ( aCell.Search( cSep ) != STRING_NOTFOUND ) ) in Doc2Text()
1502 lcl_WriteString( rStrm, aCell, cStr, cStr ); in Doc2Text()
1504 lcl_WriteSimpleString( rStrm, aCell ); in Doc2Text()