summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/scmatrix.cxx
AgeCommit message (Expand)AuthorFilesLines
2014-05-11fix-includes.pl: scThomas Arnhold1-2/+2
2014-04-28fdo#77969: Return 0 in case of matrix consisting of all empty elements.Kohei Yoshida1-2/+10
2014-04-28fdo#75397: Return an empty string for empty element.Kohei Yoshida1-1/+1
2014-04-24fdo#76663: Let's not skip the first element of a matrix in PRODUCT.Kohei Yoshida1-4/+10
2014-04-14Clean up function declarations and some unused functionsStephan Bergmann1-3/+2
2014-02-14sal_Bool->boolNoel Grandin1-9/+9
2014-02-11coverity#1130381 Missing break in switchCaolán McNamara1-1/+1
2014-02-09fdo#74479: Treat empty cells as if they have a value of 0.Kohei Yoshida1-1/+10
2014-02-06typo fixes in commentsAndras Timar1-1/+1
2014-01-29fdo#39440 - cppcheck cleanlinessRadu Ioan1-1/+1
2014-01-14Be explicit when using bool as integral valueStephan Bergmann1-3/+3
2014-01-08resolved fdo#72929 buffer jump matrix' result matrix blocksEike Rathke1-0/+78
2013-10-20Reduce branching on empty matrix elements as well.Kohei Yoshida1-8/+12
2013-10-20Reduce branching in CompareMatrix(). This makes a big difference.Kohei Yoshida1-25/+136
2013-10-20Pass cells to CompareFunc, rather than the whole Compare struct.Kohei Yoshida1-1/+1
2013-10-20Store SharedString in Compare::Cell.Kohei Yoshida1-2/+2
2013-10-20Better way to organize 2 compared cell values.Kohei Yoshida1-12/+14
2013-10-19Construct and initialize result matrix in one step.Kohei Yoshida1-7/+23
2013-10-19Generate boolean comparison result array in one step.Kohei Yoshida1-6/+30
2013-10-19Need also a definition of the maComp static member variableTor Lillqvist1-0/+3
2013-10-18Try constructing & initializing the matrix in one step.Kohei Yoshida1-5/+5
2013-10-18Remove all uses of Pos and ConstPos. They are slow.Kohei Yoshida1-292/+0
2013-10-18vector with reserve() is slightly faster than deque here.Kohei Yoshida1-2/+5
2013-10-18Slightly optimize matrix value traversal.Kohei Yoshida1-7/+20
2013-10-18Faster way to add two result matrices.Kohei Yoshida1-0/+62
2013-10-18Re-write CompareEqual etc. to make it run faster.Kohei Yoshida1-27/+77
2013-10-18A little cleanup. Derive block types from multi_type_matrix.Kohei Yoshida1-19/+32
2013-10-18Reduce the number of arguments. The first argument can go now.Kohei Yoshida1-1/+1
2013-10-18Move the compare-matrix code to ScMatrix, for much faster execution.Kohei Yoshida1-0/+114
2013-10-18Fix brace styles.Kohei Yoshida1-2/+4
2013-10-18Initial attempt to speed up matrix comparison.Kohei Yoshida1-5/+298
2013-10-11GetString() from ScMatrix to return SharedString.Kohei Yoshida1-18/+18
2013-10-08Store svl::SharedString in document cell storage instead of OUString.Kohei Yoshida1-15/+16
2013-09-10fdo#62475 removed pointless commentsJelle van der Waa1-6/+0
2013-08-28warning C4805: == : unsafe mix of type[s]Stephan Bergmann1-1/+1
2013-08-27Follow-up change for coding styles, boundary checks etc.Kohei Yoshida1-16/+24
2013-08-27Fix the build.Kohei Yoshida1-3/+5
2013-08-27matrix: add functions to lookup a double or string in columnsPierre-Eric Pelloux-Prayer1-0/+126
2013-07-11Add test case for matrix's double array handling & fix one bug.Kohei Yoshida1-0/+4
2013-07-09These header inline methods cause linkage error on Windows.Kohei Yoshida1-0/+12
2013-07-01Rework SUMPRODUCT to reduce the number of block position lookups.Kohei Yoshida1-0/+156
2013-07-01Add tests for matrix's min and max values, and fix one bug.Kohei Yoshida1-1/+1
2013-07-01Better to calculate max and min value of matrix *in* the matrix itself.Kohei Yoshida1-0/+111
2013-06-24Use position objects for more efficient element value lookups.Kohei Yoshida1-20/+19
2013-06-24Add Dump() method to ScMatrix, which is useful when debugging.Kohei Yoshida1-0/+52
2013-06-24Switch to using multi_type_vector for cell storage.Kohei Yoshida1-173/+5
2013-04-11resolved fdo#63403 do not create matrix with 0 rows or colsEike Rathke1-3/+12
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák1-25/+25
2013-01-02fdo#58539: Resizing matrix should also resize the flag storage too.Kohei Yoshida1-0/+2
2012-12-15EvalMatrix<XorEvaluator> for XorEike Rathke1-20/+9