/third_party/typescript/tests/baselines/reference/ |
H A D | restElementWithInitializer2.js | 11 _a = a.slice(0), x = _a === void 0 ? a : _a; // Error, rest element cannot have initializer
|
H A D | thisPropertyAssignmentCircular.js | 7 this.foo = this.foo.slice();
|
H A D | variadicTuples2.js | 82 const values = args.slice(0, -1) as unknown as T; 140 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
144 return to.concat(ar || Array.prototype.slice.call(from));
183 var values = args.slice(0, -1);
|
H A D | restElementWithAssignmentPattern3.js | 10 _a = tuple.slice(0), a = _a[0], _b = _a[1], b = _b === void 0 ? 0 : _b;
|
H A D | restElementWithAssignmentPattern4.js | 10 _a = tuple.slice(0), _b = _a[0], a = _b === void 0 ? "" : _b, b = _a.b;
|
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
H A D | vid_dec_mpeg12.c | 156 if (priv->slice) { in vid_dec_mpeg12_Decode() 159 1, &priv->slice, &bytes); in vid_dec_mpeg12_Decode() 160 priv->slice = NULL; in vid_dec_mpeg12_Decode() 344 /* slice start */ in vid_dec_mpeg12_Decode() 364 priv->slice = vlc->data; in vid_dec_mpeg12_Decode()
|
/third_party/node/test/parallel/ |
H A D | test-http-parser.js | 434 expected_body = expected_body.slice(chunk.length); 447 const a = request.slice(0, i); 448 const b = request.slice(i); 492 expected_body = expected_body.slice(chunk.length);
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/ |
H A D | EblcTable.java | 196 BitmapSizeTable.Builder.createBuilder(data.slice( in createBitmapSizeTable() 290 data.slice(Offset.bitmapSizeTableArrayStart.offset + i in initialize() 401 indexSubTableBuilder.subSerialize(newData.slice(indexSubTableOffset)); in subSerialize() 415 sizeTableOffset += sizeBuilder.subSerialize(newData.slice(sizeTableOffset)); in subSerialize()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/data/ |
H A D | readable_font_data.cc | 325 FontDataPtr slice = new ReadableFontData(this, offset, length); in Slice() local 326 return slice.Detach(); in Slice() 337 FontDataPtr slice = new ReadableFontData(this, offset); in Slice() local 338 return slice.Detach(); in Slice()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | StringRef.cpp | 344 A.push_back(S.slice(0, Idx)); 347 S = S.slice(Idx + Separator.size(), npos); 370 A.push_back(S.slice(0, Idx)); 373 S = S.slice(Idx + 1, npos);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | StringRef.cpp | 330 A.push_back(S.slice(0, Idx)); 333 S = S.slice(Idx + Separator.size(), npos); 356 A.push_back(S.slice(0, Idx)); 359 S = S.slice(Idx + 1, npos);
|
/third_party/node/test/fixtures/workload/ |
H A D | grow.js | 7 const str = JSON.stringify(process.config).slice(0, chunk);
|
/third_party/node/benchmark/buffers/ |
H A D | buffer-slice.js | 17 () => b.slice(10, 256);
|
/third_party/node/deps/npm/node_modules/tuf-js/dist/utils/ |
H A D | url.js | 13 return path.startsWith('/') ? path.slice(1) : path;
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | util.rs | 6 use std::slice; 52 let pass_slice = slice::from_raw_parts_mut(buf as *mut u8, size as usize);
|
/third_party/node/deps/npm/node_modules/socks/build/client/ |
H A D | socksclient.js | 653 buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(4)); 672 buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(5)); 686 buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(4)); 744 buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(4)); 763 buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(5)); 777 buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(4));
|
/third_party/python/Lib/test/ |
H A D | test_memoryview.py | 108 # Wrong index/slice types 111 self.assertRaises(TypeError, setitem, (slice(0,1,1), 0), b"a") 112 self.assertRaises(TypeError, setitem, (0, slice(0,1,1)), b"a") 116 slices = (slice(0,1,1), slice(0,1,2)) 122 self.assertRaises(ValueError, setitem, slice(1,1), b"a") 123 self.assertRaises(ValueError, setitem, slice(0,2), b"a") 427 # Variations on indirection levels: memoryview, slice of memoryview, 428 # slice of slice o [all...] |
H A D | list_tests.py | 71 self.assertRaises(ValueError, a.__setitem__, slice(0, 10, 0), [1,2,3]) 72 self.assertRaises(TypeError, a.__setitem__, slice(0, 10), 1) 73 self.assertRaises(ValueError, a.__setitem__, slice(0, 10, 2), [1,2]) 75 a[slice(2,10,3)] = [1,2,3] 191 self.assertRaises(TypeError, a.__setitem__, slice(0, 1, 5)) 538 b[slice(2,3)] = self.type2test(["two", "elements"])
|
/third_party/rust/crates/syn/src/ |
H A D | punctuated.rs | 31 use std::slice; 537 inner: slice::Iter<'a, (T, P)>, 587 inner: slice::IterMut<'a, (T, P)>, 732 inner: slice::Iter<'a, (T, P)>, 738 slice::Iter<'a, (T, P)>: TrivialDrop, 847 inner: slice::IterMut<'a, (T, P)>, 853 slice::IterMut<'a, (T, P)>: TrivialDrop,
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_dctdnoiz.c | 55 float *slices[MAX_THREADS]; // slices buffers (1 slice buffer per thread) 594 /* each slice will need to (pre & re)process the top and bottom block of in config_input() 686 float *slice = s->slices[jobnr]; in filter_slice() local 689 memset(slice, 0, (slice_h + s->bsize - 1) * dst_linesize * sizeof(*slice)); in filter_slice() 695 slice + x, slice_linesize, in filter_slice() 698 slice += s->step * slice_linesize; in filter_slice() 702 slice = s->slices[jobnr] + (slice_start - slice_start_ctx) * slice_linesize; in filter_slice() 706 dst[x] = slice[x] * weights[x]; in filter_slice() 707 slice in filter_slice() [all...] |
/third_party/node/deps/npm/node_modules/path-scurry/dist/cjs/ |
H A D | index.js | 631 return children.slice(0, children.provisional); 953 const cbs = this.#onReaddirCB.slice(); 983 const c = children.slice(0, children.provisional); 1012 this.#callOnReaddirCB(children.slice(0, children.provisional)); 1032 return children.slice(0, children.provisional); 1060 return children.slice(0, children.provisional); 1071 return children.slice(0, children.provisional); 1088 return children.slice(0, children.provisional);
|
/third_party/node/deps/npm/node_modules/path-scurry/dist/mjs/ |
H A D | index.js | 603 return children.slice(0, children.provisional); 925 const cbs = this.#onReaddirCB.slice(); 955 const c = children.slice(0, children.provisional); 984 this.#callOnReaddirCB(children.slice(0, children.provisional)); 1004 return children.slice(0, children.provisional); 1032 return children.slice(0, children.provisional); 1043 return children.slice(0, children.provisional); 1060 return children.slice(0, children.provisional);
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
H A D | parser.js | 548 spaces.before = _space2.slice(0, _space2.length - 1); 549 raws.spaces.before = _rawSpace2.slice(0, _rawSpace2.length - 1); 551 spaces.after = _space2.slice(1); 552 raws.spaces.after = _rawSpace2.slice(1); 806 var value = word.slice(ind, index); 816 value: value.slice(1), 823 value: value.slice(1), 972 return this.css.slice(token[_tokenize.FIELDS.START_POS], token[_tokenize.FIELDS.END_POS]);
|
/third_party/ffmpeg/libswscale/ |
H A D | Makefile | 16 slice.o \
|
/third_party/astc-encoder/Source/ |
H A D | astcenccli_toplevel_help.cpp | 209 "_<slice>" to find the file to load. For example, an input named
|