/third_party/node/test/fixtures/wpt/WebCryptoAPI/sign_verify/ |
H A D | eddsa.js | 298 var signature = vector.signature.slice(1); // Skip the first byte
|
/third_party/node/deps/npm/node_modules/eastasianwidth/ |
H A D | eastasianwidth.js | 285 eaw.slice = function(text, start, end) {
|
/third_party/node/deps/npm/node_modules/diff/lib/patch/ |
H A D | merge.js | 33 function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
/third_party/node/deps/npm/node_modules/normalize-package-data/lib/ |
H A D | fixer.js | 349 var rest = spec.slice(1).split('/')
|
/third_party/node/deps/npm/node_modules/ssri/lib/ |
H A D | index.js | 164 this.options = rawOpts.slice(1).split('?')
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/ |
H A D | container.js | 11 function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
/third_party/node/deps/npm/node_modules/yallist/ |
H A D | yallist.js | 267 Yallist.prototype.slice = function (from, to) {
|
/third_party/rust/crates/cxx/tests/ffi/ |
H A D | tests.h | 103 rust::Slice<uint8_t> c_return_mutsliceu8(rust::Slice<uint8_t> slice);
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
H A D | CMapTable.java | 624 size += b.subSerialize(newData.slice(size)); in subSerialize()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
H A D | GlyfEncoder.java | 301 data.slice(i).copyTo(codeStream); in splitPush()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | PHITransAddr.cpp | 407 GEP->getSourceElementType(), GEPOps[0], makeArrayRef(GEPOps).slice(1), in InsertPHITranslatedSubExpr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | SourceMgr.cpp | 351 S << LineContents.slice(i, NextTab); in printSourceLine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86TargetMachine.cpp | 301 FS = Key.slice(CPU.size(), CPUFSWidth); in getSubtargetImpl()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-lib/ |
H A D | LibDriver.cpp | 277 Table.ParseArgs(ArgsArr.slice(1), MissingIndex, MissingCount); in libDriverMain()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
H A D | PGOMemOPSizeOpt.cpp | 364 annotateValueSite(*Func.getParent(), *MI, VDs.slice(Version), in perform()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/ |
H A D | BitstreamWriter.h | 368 emitBlob(Vals.slice(RecordIdx)); in EmitRecordWithAbbrevImpl()
|
/third_party/rust/crates/nix/src/net/ |
H A D | if_.rs | 386 /// Convert this to a slice of interfaces. Note that the underlying interfaces list is in iter() 392 unsafe { std::slice::from_raw_parts(ifs, len) } in iter()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/ |
H A D | interval.rs | 4 use std::slice; 67 /// Return an immutable slice of intervals in this set. in iter() 325 pub struct IntervalSetIter<'a, I>(slice::Iter<'a, I>);
|
/third_party/rust/crates/syn/src/ |
H A D | attr.rs | 4 use std::slice; 593 type Ret = iter::Filter<slice::Iter<'a, Attribute>, fn(&&Attribute) -> bool>;
|
/third_party/python/Modules/ |
H A D | _pickle.c | 6445 PyObject *slice; in do_append() local 6462 slice = Pdata_poplist(self->stack, x); in do_append() 6463 if (!slice) in do_append() 6466 ret = PyList_SetSlice(list, list_len, list_len, slice); in do_append() 6467 Py_DECREF(slice); in do_append() 6477 slice = Pdata_poplist(self->stack, x); in do_append() 6478 if (!slice) { in do_append() 6482 result = _Pickle_FastCall(extend_func, slice); in do_append()
|
/third_party/node/lib/internal/util/ |
H A D | inspect.js | 1180 const slice = StringPrototypeSlice(stringified, 5, -1); 1181 const bracketIndex = StringPrototypeIndexOf(slice, '{'); 1183 (!StringPrototypeIncludes(StringPrototypeSlice(slice, 0, bracketIndex), '(') || 1185 RegExpPrototypeExec(classRegExp, RegExpPrototypeSymbolReplace(stripCommentsRegExp, slice)) !== null)
|
/third_party/python/Objects/ |
H A D | listobject.c | 1066 /* Reverse a slice of a list in place, from lo up to (exclusive) hi. */ 1144 sortslice_advance(sortslice *slice, Py_ssize_t n) in sortslice_advance() argument 1146 slice->keys += n; in sortslice_advance() 1147 if (slice->values != NULL) in sortslice_advance() 1148 slice->values += n; in sortslice_advance() 1240 [lo, hi) is a contiguous slice of a list, and is sorted via 1245 Even in case of error, the output slice will be some permutation of 1305 Return the length of the run beginning at lo, in the slice [lo, hi). lo < hi 2288 * by comparison functions can't affect the slice of memory we're in list_sort_impl() 2960 /* delete slice */ in list_ass_subscript() [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fTextureGatherTests.cpp | 109 for (int slice = 0; slice < dst.getDepth(); slice++) in fillWithRandomColorTiles() 120 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd-xBegin, yEnd-yBegin, 1), color); in fillWithRandomColorTiles()
|
/test/xts/acts/security/huks/security_huks_reformed_test/huks_cipher_promise_BasicTest/entry/src/ohosTest/js/test/Cipher/ |
H A D | SecurityHuksCipherAESBasicPromiseJsunit.test.js | 90 HuksOptions.inData = new Uint8Array(Array.from(huksOptionsInData).slice(dateSize * i, dateSize * (i + 1))); 96 Array.from(huksOptionsInData).slice(dateSize * count, uint8ArrayToString(inDataArray).length)
|
H A D | SecurityHuksCipherRSABasicPromiseJsunit.test.js | 146 HuksOptions.inData = new Uint8Array(Array.from(huksOptionsInData).slice(dateSize * i, dateSize * (i + 1))); 152 Array.from(huksOptionsInData).slice(dateSize * count, uint8ArrayToString(inDataArray).length)
|