/third_party/node/deps/npm/node_modules/cli-table3/src/ |
H A D | cell.js | 114 this.widths = tableOptions.colWidths.slice(x, x + this.colSpan); 115 this.heights = tableOptions.rowHeights.slice(y, y + this.rowSpan);
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | scheck.c | 97 static BoolectorNode *slice(Btor *btor, struct instruction *insn, BoolectorNode *s) in slice() function 168 case OP_TRUNC: t = slice(btor, insn, a); break; in unop()
|
/third_party/node/deps/undici/src/lib/fetch/ |
H A D | util.js | 578 actualValue = actualValue.slice(0, -2) 580 actualValue = actualValue.slice(0, -1)
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | class_1_0.rs | 26 ::std::slice::from_raw_parts(self.as_ptr(), len) in as_slice() 30 ::std::slice::from_raw_parts_mut(self.as_mut_ptr(), len) in as_mut_slice()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/MSF/ |
H A D | MappedBlockStream.cpp | 102 Buffer = Entry.slice(0, Size); in readBytes() 143 Buffer = CachedAlloc.slice(CacheRangeOffset, Size); in readBytes()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
H A D | TextureMtl.h | 288 // Copy data to texture's per array's slice/cube's face. NOTE: This function doesn't upload 289 // data to 3D texture's z layer. Metal treats 3D texture's z layer & array texture's slice 290 // differently. For array/cube texture, it is only possible to upload to one slice at a time. 292 int slice, 305 int slice,
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
H A D | CMapFormat4.java | 365 super(data == null ? null : data.slice( in Builder() 371 super(data == null ? null : data.slice( in Builder()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | recursiveTypeReferences1.js | 138 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
142 return to.concat(ar || Array.prototype.slice.call(from));
|
H A D | restTuplesFromContextualTypes.js | 107 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
111 return to.concat(ar || Array.prototype.slice.call(from));
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 1290 mod slice; modules 3317 fn slice() { in slice() functions 6490 let slice: &[i32] = &[1, 2, 3]; in test_from_cow_slice() 6491 test_from_cow!(slice: &[i32]); in test_from_cow_slice() 6630 let slice: &[isize] = &[4, 5]; in test_debug_fmt() 6631 assert_eq!("[4, 5]", format!("{:?}", slice)); in test_debug_fmt() 6720 let slice = &values[1..3]; in test_slice_from_ref() 6722 assert_eq!(slice, [2, 3]); in test_slice_from_ref() 6729 let slice = &mut values[2..]; in test_slice_from_mut() 6730 assert!(slice in test_slice_from_mut() 8883 mod slice; global() modules 9074 fn slice() { slice() functions 19480 pub mod slice; global() modules 40240 fn slice(self, from: usize, to: usize) -> Self; slice() functions 40257 fn slice(self, from: usize, to: usize) -> Self { slice() functions 40266 fn slice(self, from: usize, to: usize) -> Self { slice() functions 40275 fn slice(self, from: usize, to: usize) -> Self { slice() functions [all...] |
/third_party/python/Lib/test/ |
H A D | test_descr.py | 116 self.assertEqual(m(a, slice(b, c)), res) 118 self.assertEqual(bm(slice(b, c)), res) 170 m(dictionary['a'], slice(b, c), d) 174 bm(slice(b, c), d) 465 if isinstance(i, slice): 1967 self.assertEqual(a[0:10], ("getitem", slice(0, 10))) 1969 self.assertEqual(a.setitem, (slice(0, 10), "foo")) 1971 self.assertEqual(a.delitem, (slice(0, 10))) 3827 self.assertEqual("hello"[slice(4)], "hell") 3828 self.assertEqual(str.__getitem__("hello", slice( [all...] |
/third_party/node/test/common/ |
H A D | index.js | 112 const args = [...flags, ...process.execArgv, ...process.argv.slice(1)]; 405 console.log(context.stack.split('\n').slice(2).join('\n')); 809 if (inspected.length > 28) { inspected = `${inspected.slice(inspected, 0, 25)}...`; }
|
/third_party/node/deps/npm/node_modules/jackspeak/dist/esm/ |
H A D | index.js | 299 args = args.slice(process._eval !== undefined ? 1 : 2); 327 p.positionals.push(...args.slice(token.index + 1)); 736 for (const field of this.#fields.slice(start)) {
|
/third_party/node/deps/npm/node_modules/jackspeak/dist/commonjs/ |
H A D | index.js | 307 args = args.slice(process._eval !== undefined ? 1 : 2); 335 p.positionals.push(...args.slice(token.index + 1)); 744 for (const field of this.#fields.slice(start)) {
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/ |
H A D | RangeTree.java | 1177 * Slices a range tree at a single length. This is equivalent to {@code slice(length, length)}. 1179 public RangeTree slice(int length) { in slice() method in RangeTree 1180 return slice(length, length); in slice() 1195 * slice({ 12345, 67xxx, 89 }, 0, 3) == { 123, 67x, 89 } 1196 * slice({ 12345, 67xxx, 89 }, 3, 3) == { 123, 67x } 1197 * slice({ 12, 34, 5 }, 2, 3) == { 12, 34 } 1198 * slice({ 12, 34 }, 3, 3) == { } 1201 public RangeTree slice(int minLength, int maxLength) { in slice() method in RangeTree
|
/third_party/skia/modules/canvaskit/htmlcanvas/ |
H A D | canvas2dcontext.js | 709 return this._lineDashList.slice(); 922 ctm: this._currentTransform.slice(), 923 ldl: this._lineDashList.slice(),
|
/third_party/rust/crates/rustix/src/backend/linux_raw/net/ |
H A D | syscalls.rs | 11 by_mut, by_ref, c_int, c_uint, ret, ret_owned_fd, ret_usize, size_of, slice, slice_mut, 264 let (buf_addr, buf_len) = slice(buf); 310 let (buf_addr, buf_len) = slice(buf); 348 let (buf_addr, buf_len) = slice(buf); 386 let (buf_addr, buf_len) = slice(buf);
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | vp9itxfm_16bpp_neon.S | 575 @ Read a vertical 4x8 slice out of a 8x8 matrix, do a transform on it, 576 @ transpose into a horizontal 8x4 slice and store. 578 @ r1 = slice offset 606 @ for the first slice of the second pass (where it is the 619 @ Read a vertical 4x8 slice out of a 8x8 matrix, do a transform on it, 620 @ load the destination pixels (from a similar 4x8 slice), add and store back. 624 @ r3 = slice offset 1024 @ Read a vertical 2x16 slice out of a 16x16 matrix, do a transform on it, 1025 @ transpose into a horizontal 16x2 slice and store. 1066 @ Read a vertical 2x16 slice ou [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/image/ |
H A D | image_model_ng.cpp | 652 void ImageModelNG::SetResizableSlice(const ImageResizableSlice& slice) in SetResizableSlice() argument 654 ACE_UPDATE_PAINT_PROPERTY(ImageRenderProperty, ImageResizableSlice, slice); in SetResizableSlice() 657 void ImageModelNG::SetResizableSlice(FrameNode *frameNode, const ImageResizableSlice& slice) in SetResizableSlice() argument 659 ACE_UPDATE_NODE_PAINT_PROPERTY(ImageRenderProperty, ImageResizableSlice, slice, frameNode); in SetResizableSlice()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_queue.c | 375 const struct v3d_resource_slice *slice = in handle_copy_buffer_to_image_cpu_job() local 391 dst_ptr + dst_offset, slice->stride, in handle_copy_buffer_to_image_cpu_job() 393 slice->tiling, info->image->cpp, slice->padded_height, &box); in handle_copy_buffer_to_image_cpu_job()
|
/third_party/mesa3d/src/gallium/frontends/omx/ |
H A D | vid_dec_h264_common.c | 977 if (priv->slice) { in vid_dec_h264_Decode() 981 1, &priv->slice, &bytes); in vid_dec_h264_Decode() 982 priv->slice = NULL; in vid_dec_h264_Decode() 1017 /* Coded slice of a non-IDR or IDR picture */ in vid_dec_h264_Decode() 1033 priv->slice = vlc->data; in vid_dec_h264_Decode()
|
/third_party/node/lib/internal/ |
H A D | url.js | 246 this[searchParams] = childParams.slice(); 1101 buf += qs.slice(lastPos, i); 1122 buf += qs.slice(lastPos, i); 1194 const paramHexTable = hexTable.slice();
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/ |
H A D | vktProtectedMemUtils.cpp | 943 for (int slice = 0; slice < dst.getDepth(); slice++) in fillWithRandomColorTiles() 954 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd - xBegin, yEnd - yBegin, 1), color); in fillWithRandomColorTiles()
|
/third_party/skia/src/gpu/dawn/ |
H A D | GrDawnGpu.cpp | 371 GrStagingBufferManager::Slice slice = in uploadTextureData() local 373 SkRectMemcpy(slice.fOffsetMapPtr, dstRowBytes, src, srcRowBytes, trimRowBytes, height); in uploadTextureData() 376 srcBuffer.buffer = static_cast<GrDawnBuffer*>(slice.fBuffer)->get(); in uploadTextureData() 377 srcBuffer.layout.offset = slice.fOffset; in uploadTextureData()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Device.cpp | 490 sRect.slice = sourceRect->slice; in stretchRect() 610 byte *sourceBytes = (byte*)source->lockInternal((int)sRect.x0, (int)sRect.y0, sourceRect->slice, LOCK_READONLY, PUBLIC); in stretchRect() 611 byte *destBytes = (byte*)dest->lockInternal(dRect.x0, dRect.y0, destRect->slice, fullCopy ? LOCK_DISCARD : LOCK_WRITEONLY, PUBLIC); in stretchRect()
|