• Home
  • Raw
  • Download

Lines Matching +full:non +full:- +full:range

7  *     http://www.apache.org/licenses/LICENSE-2.0
23 // @ts-nocheck
65 index = -2;
66 print(`An index of ${index} returns ${array1.at(index)}`); // An index of -2 returns 130
286 print(elements.join('-'));
357 array1.sort((a: number, b: number) => a - b);
365 print(beasts.indexOf('giraffe')) // Expected: -1
470 const array = SendableArray.create<number>(-1, 5);
506 array.shrinkTo(-1);
507 print("Shrink to -1 success");
509 print("Shrink to -1 fail. err: " + err + ", code: " + err.code);
529 array.extendTo(array.length - 1, 0);
530 print("ExtendTo to array.length - 1: " + array);
534 array.extendTo(-1, 0);
535 print("ExtendTo to -1 success.");
537 print("ExtendTo to -1 fail. err: " + err + ", code: " + err.code);
564 print("Index access read out of range success.");
566 print("Index access read out of range failed. err: " + err + ", code: " + err.code);
570 print("Index access write out of range success.");
572 print("Index access write out of range failed. err: " + err + ", code: " + err.code);
598 print("String Index access read out of range success.");
600 print("String Index access read out of range failed. err: " + err + ", code: " + err.code);
604 print("String Index access write out of range success.");
606 print("String Index access write out of range failed. err: " + err + ", code: " + err.code);
629 print("[IC] Index access read in range success. array: " + element);
633 … print("[IC] Index access read out of range failed. err: " + err + ", code: " + err.code);
639 print("[IC] Index access write in range success.");
643 … print("[IC] Index access write out of range failed. err: " + err + ", code: " + err.code);
663 print("[IC] String Index access read in range success. array: " + element);
667 … print("[IC] String Index access read out of range failed. err: " + err + ", code: " + err.code);
673 print("[IC] String Index access write in range success.");
677 … print("[IC] String Index access write out of range failed. err: " + err + ", code: " + err.code);
780 …print('create from sharedMap with non-sendable array failed. err: ' + err + ', code: ' + err.code);
863 print("Start Test array read out of range")
868 print("read out of range success " + value);
870 print("read out of range failed. err: " + err + ", code: " + err.code);
875 print("read out of range success " + value);
877 print("read out of range failed. err: " + err + ", code: " + err.code);
882 print("read out of range success " + value);
884 print("read out of range failed. err: " + err + ", code: " + err.code);
889 print("read out of range success " + value);
891 print("read out of range failed. err: " + err + ", code: " + err.code);
896 print("read out of range success " + value);
898 print("read out of range failed. err: " + err + ", code: " + err.code);
903 print("read out of range success " + value);
905 print("read out of range failed. err: " + err + ", code: " + err.code);
910 print("read out of range success " + value);
912 print("read out of range failed. err: " + err + ", code: " + err.code);
917 print("read out of range success " + value);
919 print("read out of range failed. err: " + err + ", code: " + err.code);
924 print("read out of range success " + value);
926 print("read out of range failed. err: " + err + ", code: " + err.code);
945 … print("Create from SendableArray with non-sendable array error: " + new SendableArray(from_arr));
947 …print("Create from SendableArray with non-sendable array error failed. err: " + err + ", code: " +…