Home
last modified time | relevance | path

Searched refs:slice (Results 426 - 450 of 1146) sorted by relevance

1...<<11121314151617181920>>...46

/third_party/typescript/tests/baselines/reference/
H A DrestElementWithInitializer2.js11 _a = a.slice(0), x = _a === void 0 ? a : _a; // Error, rest element cannot have initializer
H A DthisPropertyAssignmentCircular.js7 this.foo = this.foo.slice();
H A DvariadicTuples2.js82 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 DrestElementWithAssignmentPattern3.js10 _a = tuple.slice(0), a = _a[0], _b = _a[1], b = _b === void 0 ? 0 : _b;
H A DrestElementWithAssignmentPattern4.js10 _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 Dvid_dec_mpeg12.c156 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 Dtest-http-parser.js434 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 DEblcTable.java196 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 Dreadable_font_data.cc325 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 DStringRef.cpp344 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 DStringRef.cpp330 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 Dgrow.js7 const str = JSON.stringify(process.config).slice(0, chunk);
/third_party/node/benchmark/buffers/
H A Dbuffer-slice.js17 () => b.slice(10, 256);
/third_party/node/deps/npm/node_modules/tuf-js/dist/utils/
H A Durl.js13 return path.startsWith('/') ? path.slice(1) : path;
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dutil.rs6 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 Dsocksclient.js653 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 Dtest_memoryview.py108 # 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 Dlist_tests.py71 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 Dpunctuated.rs31 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 Dvf_dctdnoiz.c55 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 Dindex.js631 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 Dindex.js603 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 Dparser.js548 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 DMakefile16 slice.o \
/third_party/astc-encoder/Source/
H A Dastcenccli_toplevel_help.cpp209 "_<slice>" to find the file to load. For example, an input named

Completed in 22 milliseconds

1...<<11121314151617181920>>...46