Lines Matching +full:0 +full:x100000000
27 public num: number = 0;
51 public num: number = 0;
88 print("" + key + "," + value); // 0 a, 1 b, 2 c
97 print("" + key); // 0, 1, 2
152 array1.fill(0, 2, 4);
153 print(array1); // [1, 2, 0, 0]
198 sharedArray.at(0)
420 v9.splice(0,0, v2);
427 array.splice(1, 0, 'Feb', 'Oct');
445 array2.splice(0, 0, new SuperUnSharedClass(48));
482 const array = SendableArray.create<number>(0x100000000, 5);
493 array.length = 0;
512 array.shrinkTo(0x100000000);
513 print("Shrink to invalid 0x100000000 success");
515 print("Shrink to invalid 0x100000000 fail. err: " + err + ", code: " + err.code);
527 array.extendTo(array.length, 0);
529 array.extendTo(array.length - 1, 0);
531 array.extendTo(0, 0);
532 print("ExtendTo to 0: " + array);
534 array.extendTo(-1, 0);
540 array.extendTo(0x100000000, 0);
541 print("ExtendTo to invalid 0x100000000 success.");
543 print("ExtendTo to invalid 0x100000000 fail. err: " + err + ", code: " + err.code);
735 for (let idx: number = 0; idx < 1200; idx++) {
857 const filledArray = array.fill(0, 2, 4);
858 print(array); // [1, 2, 0, 0]
865 print("array[0]: " + array[0]);
874 let value = array['0'];
942 let s_arr1 = new SendableArray<number>(0, ...from_arr); // output [1,2,3]
962 …Object.defineProperty(array, '0', {writable: true, configurable: true, enumerable: true, value: "3…
976 …Object.defineProperty(array, 0, {writable: true, configurable: true, enumerable: true, value: "321…
1131 for (let index: number = 0; index < 100; index++) {
1136 for (let index: number = 0; index < 100; index++) {