Lines Matching refs:SubarrayTestCase
226 function SubarrayTestCase(constructor, item, expectedResultLen, class
239 SubarrayTestCase(constructor, item, 512, 512, 1024, 512, 1024);
240 SubarrayTestCase(constructor, item, 512, 512, 1024, 512);
242 SubarrayTestCase(constructor, item, 0, undefined, 0, 1, 20);
243 SubarrayTestCase(constructor, item, 100, 0, 100, 0, 100);
244 SubarrayTestCase(constructor, item, 100, 0, 100, 0, 1000);
245 SubarrayTestCase(constructor, item, 0, undefined, 100, 5, 1);
247 SubarrayTestCase(constructor, item, 1, 89, 100, -11, -10);
248 SubarrayTestCase(constructor, item, 9, 90, 100, -10, 99);
249 SubarrayTestCase(constructor, item, 0, undefined, 100, -10, 80);
250 SubarrayTestCase(constructor, item, 10,80, 100, 80, -10);
252 SubarrayTestCase(constructor, item, 10,90, 100, 90, "100");
253 SubarrayTestCase(constructor, item, 10,90, 100, "90", "100");
255 SubarrayTestCase(constructor, item, 0, undefined, 100, 90, "abc");
256 SubarrayTestCase(constructor, item, 10,0, 100, "abc", 10);
258 SubarrayTestCase(constructor, item, 10,0, 100, 0.96, 10.96);
259 SubarrayTestCase(constructor, item, 10,0, 100, 0.96, 10.01);
260 SubarrayTestCase(constructor, item, 10,0, 100, 0.01, 10.01);
261 SubarrayTestCase(constructor, item, 10,0, 100, 0.01, 10.96);
264 SubarrayTestCase(constructor, item, 10,90, 100, 90);
265 SubarrayTestCase(constructor, item, 10,90, 100, -10);