Lines Matching refs:full

304         Sample full = new Sample("full", fullAR, ArrayRangeTarg.fullArray);
307 getValueGood(full, 0);
308 getValueGood(full, 4);
311 getValueBad(full, -1);
312 getValueBad(full, -2);
317 getValueBad(full, 5);
321 getValuesGood(full);
324 getValuesGood(full, 0, 5);
325 getValuesGood(full, 0, 4);
326 getValuesGood(full, 1, 4);
327 getValuesGood(full, 5, 0);
328 getValuesGood(full, 0, 0);
329 getValuesGood(full, 0, -1);
330 getValuesGood(full, 1, -1);
331 getValuesGood(full, 5, -1);
337 getValuesBad(full, -1, 0);
338 getValuesBad(full, -1, 3);
339 getValuesBad(full, -1, -1);
341 getValuesBad(full, -2, 0);
342 getValuesBad(full, -2, 3);
343 getValuesBad(full, -2, -1);
347 getValuesBad(full, 6, 0);
348 getValuesBad(full, 6, -1);
353 getValuesBad(full, 0, -2);
357 getValuesBad(full, 0, 6);
358 getValuesBad(full, 1, 5);
359 getValuesBad(full, 2, 4);
360 getValuesBad(full, 5, 1);
363 setValueGood(full, 0, 55);
364 setValueGood(full, 4, 66);
367 setValueBad(full, -1, 77);
368 setValueBad(full, -2, 77);
371 setValueBad(full, 5, 77);
372 setValueBad(full, 6, 77);
374 check(full, new int[] {55, 100, 200, 300, 66});
384 setValuesGood(full, new int[] {40, 41, 42});
385 setValuesGood(full, new int[] {});
387 check(full, new int[] {40, 41, 42, 300, 66});
389 setValuesGood(full, new int[] {99, 51, 52, 53, 54, 55});
390 setValuesGood(full, new int[] {50});
392 check(full, new int[] {50, 51, 52, 53, 54});
397 setValuesGood(full, 2, new int[] {30, 31, 32, 33, 34, 35}, 0, 3);
398 setValuesGood(full, 0, new int[] {80}, 0, 1);
400 check(full, new int[] {80, 51, 30, 31, 32});
402 setValuesGood(full, 0, new int[] {90, 91, 92, 93, 94, 95}, 3, 3);
403 setValuesGood(full, 4, new int[] {81}, 0, 1);
405 check(full, new int[] {93, 94, 95, 31, 81});
407 setValuesGood(full, 3, new int[] {60, 61, 62, 63}, 0, -1);
408 setValuesGood(full, 0, new int[] {82}, 0, -1);
410 check(full, new int[] {82, 94, 95, 60, 61});
412 setValuesGood(full, 3, new int[] {20, 21, 22, 23}, 1, -1);
413 setValuesGood(full, 1, new int[] {83, 84}, 1, -1);
414 setValuesGood(full, 1, new int[] {}, 0, -1);
415 setValuesGood(full, 2, new int[] {}, 0, 0);
416 setValuesGood(full, 3, new int[] {99}, 0, 0);
417 setValuesGood(full, 4, new int[] {99, 98}, 1, 0);
419 check(full, new int[] {82, 84, 95, 21, 22});
427 setValuesBad(full, -1, new int[] {30, 31, 32, 33, 34, 35}, 0, 0);
428 setValuesBad(full, -1, new int[] {30, 31, 32, 33, 34, 35}, 0, -1);
429 setValuesBad(full, -2, new int[] {30, 31, 32, 33, 34, 35}, 0, -1);
434 setValuesBad(full, 6, new int[] {30, 31, 32, 33, 34, 35}, 0, 1);
435 setValuesBad(full, 6, new int[] {30, 31, 32, 33, 34, 35}, 0, -1);
441 setValuesBad(full, 0, new int[] {90, 91, 92, 93, 94, 95}, -1, 3);
442 setValuesBad(full, 0, new int[] {90, 91, 92, 93, 94, 95}, -1, 0);
443 setValuesBad(full, 0, new int[] {90, 91, 92, 93, 94, 95}, -1, -1);
444 setValuesBad(full, 0, new int[] {90, 91, 92, 93, 94, 95}, -2, -1);
445 setValuesBad(full, 1, new int[] {}, -1, -1);
446 setValuesBad(full, 2, new int[] {}, -1, 0);
450 setValuesBad(full, 0, new int[] {81}, 2, 0);
451 setValuesBad(full, 0, new int[] {81}, 2, 1);
452 setValuesBad(full, 0, new int[] {81}, 2, -1);
453 setValuesBad(full, 4, new int[] {}, 1, 0);
454 setValuesBad(full, 1, new int[] {}, 1, -1);
455 setValuesBad(full, 2, new int[] {}, 1, 0);
460 setValuesBad(full, 3, new int[] {60, 61, 62, 63}, 0, -2);
461 setValuesBad(full, 3, new int[] {}, 0, -2);
464 setValuesBad(full, 0, new int[] {20, 21, 22, 23, 24, 25, 26}, 0, 6);
465 setValuesBad(full, 1, new int[] {20, 21, 22, 23, 24, 25, 26}, 0, 5);
466 setValuesBad(full, 2, new int[] {20, 21, 22, 23, 24, 25, 26}, 0, 4);
467 setValuesBad(full, 3, new int[] {20, 21, 22, 23, 24, 25, 26}, 0, 3);
468 setValuesBad(full, 4, new int[] {20, 21, 22, 23, 24, 25, 26}, 0, 2);
469 setValuesBad(full, 5, new int[] {20, 21, 22, 23, 24, 25, 26}, 0, 1);
470 setValuesBad(full, 6, new int[] {20, 21, 22, 23, 24, 25, 26}, 0, 0);
471 setValuesBad(full, 2, new int[] {20, 21, 22, 23, 24, 25, 26}, 1, 4);
472 setValuesBad(full, 3, new int[] {20, 21, 22, 23, 24, 25, 26}, 1, 3);
473 setValuesBad(full, 4, new int[] {20, 21, 22, 23, 24, 25, 26}, 2, 2);
474 setValuesBad(full, 5, new int[] {20, 21, 22, 23, 24, 25, 26}, 3, 1);
475 setValuesBad(full, 6, new int[] {20, 21, 22, 23, 24, 25, 26}, 4, 0);
479 setValuesBad(full, 0, new int[] {82}, 0, 2);
480 setValuesBad(full, 0, new int[] {82}, 1, 1);
481 setValuesBad(full, 0, new int[] {82}, 2, 0);
482 setValuesBad(full, 0, new int[] {20, 21, 22}, 0, 4);
483 setValuesBad(full, 0, new int[] {20, 21, 22}, 1, 3);
484 setValuesBad(full, 0, new int[] {20, 21, 22}, 2, 2);
485 setValuesBad(full, 0, new int[] {20, 21, 22}, 3, 1);
486 setValuesBad(full, 0, new int[] {20, 21, 22}, 4, 0);
488 check(full, new int[] {82, 84, 95, 21, 22});