Home
last modified time | relevance | path

Searched refs:TEST_ROWCOL_TO_RANGE_ABS (Results 1 – 2 of 2) sorted by relevance

/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/test/unit/utility/
H A Dtest_rowcol_to_range.c39 TEST_ROWCOL_TO_RANGE_ABS(0, 0, 0, 1, "$A$1:$B$1"); in CTEST()
40 TEST_ROWCOL_TO_RANGE_ABS(0, 2, 0, 9, "$C$1:$J$1"); in CTEST()
41 TEST_ROWCOL_TO_RANGE_ABS(1, 0, 2, 0, "$A$2:$A$3"); in CTEST()
42 TEST_ROWCOL_TO_RANGE_ABS(9, 0, 1, 24, "$A$10:$Y$2"); in CTEST()
43 TEST_ROWCOL_TO_RANGE_ABS(7, 25, 9, 26, "$Z$8:$AA$10"); in CTEST()
44 TEST_ROWCOL_TO_RANGE_ABS(1, 254, 1, 255, "$IU$2:$IV$2"); in CTEST()
45 TEST_ROWCOL_TO_RANGE_ABS(1, 256, 0, 16383, "$IW$2:$XFD$1"); in CTEST()
46 TEST_ROWCOL_TO_RANGE_ABS(0, 0, 1048576, 16384, "$A$1:$XFE$1048577"); in CTEST()
47 TEST_ROWCOL_TO_RANGE_ABS(1048575, 16383, 1048576, 16384, "$XFD$1048576:$XFE$1048577"); in CTEST()
50 TEST_ROWCOL_TO_RANGE_ABS(0, 0, 0, 0, "$A$1"); in CTEST()
[all …]
/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/test/unit/
H A Dhelper.h73 #define TEST_ROWCOL_TO_RANGE_ABS(row1, col1, row2, col2, exp) \ macro