/third_party/node/test/parallel/ |
H A D | test-promises-unhandled-rejections.js | 46 const stack = inspect(new Error()).split('\n').slice(1).join('\n');
|
H A D | test-webcrypto-derivebits-hkdf.js | 414 kDerivations[size][saltSize][hash][infoSize].slice(0, keyType.length / 4));
|
H A D | test-whatwg-webstreams-transfer.js | 131 controller.enqueue(theByteData.slice());
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/derive_bits_keys/ |
H A D | pbkdf2.js | 61 assert_true(equalBuffers(buffer, derivations[passwordSize][saltSize][hashName][iterations].slice(0, derivedKeyType.algorithm.length/8)), "Exported key matches correct value");
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/sign_verify/ |
H A D | ecdsa.js | 359 var signature = vector.signature.slice(1); // Skip the first byte
|
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()
|