Lines Matching refs:result

90         boolean result = true;  in _insertByIndex()
100 result &= checkColumn(0, 0); in _insertByIndex()
101 result &= checkColumnEmpty(1); in _insertByIndex()
102 result &= checkColumn(2, 1); in _insertByIndex()
103 result &= checkColumn(3, 2); in _insertByIndex()
104 result &= checkColumnEmpty(4); in _insertByIndex()
107 result &= checkColumn(lastColumn + 1, lastColumn); in _insertByIndex()
108 result &= oObj.getCount() == origCnt + 1; in _insertByIndex()
110 result &= checkColumnEmpty(lastColumn); in _insertByIndex()
116 result &= checkColumnEmpty(0); in _insertByIndex()
117 result &= checkColumn(1, 0); in _insertByIndex()
118 result &= checkColumnEmpty(2); in _insertByIndex()
119 result &= checkColumn(3, 1); in _insertByIndex()
120 result &= checkColumn(4, 2); in _insertByIndex()
121 result &= checkColumnEmpty(5); in _insertByIndex()
123 result &= checkColumn(lastColumn + 2, lastColumn); in _insertByIndex()
124 result &= oObj.getCount() == origCnt + 2; in _insertByIndex()
130 result &= checkColumnEmpty(0); in _insertByIndex()
131 result &= checkColumnEmpty(1); in _insertByIndex()
132 result &= checkColumnEmpty(2); in _insertByIndex()
133 result &= checkColumn(3, 0); in _insertByIndex()
134 result &= checkColumnEmpty(4); in _insertByIndex()
135 result &= checkColumn(5, 1); in _insertByIndex()
136 result &= checkColumn(6, 2); in _insertByIndex()
137 result &= checkColumnEmpty(7); in _insertByIndex()
139 result &= checkColumn(lastColumn + 4, lastColumn); in _insertByIndex()
144 result = false; in _insertByIndex()
152 result &= oObj.getCount() == origCnt + 4; in _insertByIndex()
163 result &= false; in _insertByIndex()
166 result &= true; in _insertByIndex()
174 result &= false; in _insertByIndex()
177 result &= true; in _insertByIndex()
185 result &= false; in _insertByIndex()
188 result &= true; in _insertByIndex()
193 tRes.tested( "insertByIndex()", result ); in _insertByIndex()
216 boolean result = true; in _removeByIndex()
225 result &= checkColumnEmpty(0); in _removeByIndex()
226 result &= checkColumn(1, 0); in _removeByIndex()
227 result &= checkColumnEmpty(2); in _removeByIndex()
228 result &= checkColumn(3, 1); in _removeByIndex()
229 result &= checkColumn(4, 2); in _removeByIndex()
230 result &= checkColumnEmpty(5); in _removeByIndex()
232 result &= checkColumn(lastColumn + 2, lastColumn); in _removeByIndex()
233 result &= oObj.getCount() == origCnt - 2; in _removeByIndex()
239 result &= checkColumn(0, 0); in _removeByIndex()
240 result &= checkColumnEmpty(1); in _removeByIndex()
241 result &= checkColumn(2, 1); in _removeByIndex()
242 result &= checkColumn(3, 2); in _removeByIndex()
243 result &= checkColumnEmpty(4); in _removeByIndex()
245 result &= checkColumn(lastColumn + 1, lastColumn); in _removeByIndex()
246 result &= oObj.getCount() == origCnt - 3; in _removeByIndex()
252 result &= checkColumn(0, 0); in _removeByIndex()
253 result &= checkColumn(1, 1); in _removeByIndex()
254 result &= checkColumn(2, 2); in _removeByIndex()
255 result &= checkColumnEmpty(3); in _removeByIndex()
257 result &= checkColumn(lastColumn, lastColumn); in _removeByIndex()
262 result = false; in _removeByIndex()
270 result &= oObj.getCount() == origCnt - 4; in _removeByIndex()
281 result &= false; in _removeByIndex()
284 result &= true; in _removeByIndex()
292 result &= false; in _removeByIndex()
295 result &= true; in _removeByIndex()
302 result &= false; in _removeByIndex()
305 result &= true; in _removeByIndex()
309 tRes.tested( "removeByIndex()", result ); in _removeByIndex()