Searched refs:isAnyArrayBuffer (Results 1 – 22 of 22) sorted by relevance
/third_party/node/lib/internal/crypto/ |
D | random.js | 59 isAnyArrayBuffer, 119 if (!isAnyArrayBuffer(buf) && !isArrayBufferView(buf)) { 153 if (!isAnyArrayBuffer(buf) && !isArrayBufferView(buf)) { 435 } else if (!isAnyArrayBuffer(add) && !isArrayBufferView(add)) { 452 } else if (!isAnyArrayBuffer(rem) && !isArrayBufferView(rem)) { 542 if (!isAnyArrayBuffer(candidate) && !isArrayBufferView(candidate)) { 576 if (!isAnyArrayBuffer(candidate) && !isArrayBufferView(candidate)) {
|
D | hkdf.js | 39 isAnyArrayBuffer, 79 if (isAnyArrayBuffer(key))
|
D | util.js | 72 isAnyArrayBuffer, 121 if (isAnyArrayBuffer(buffer)) 413 if (isAnyArrayBuffer(val) || isArrayBufferView(val))
|
D | diffiehellman.js | 41 isAnyArrayBuffer, 78 !isAnyArrayBuffer(sizeOrKey)) { 113 } else if (!isArrayBufferView(generator) && !isAnyArrayBuffer(generator)) {
|
D | keys.js | 55 isAnyArrayBuffer, 320 isAnyArrayBuffer(val); 595 !isAnyArrayBuffer(key)) {
|
/third_party/node/lib/internal/util/ |
D | comparisons.js | 32 isAnyArrayBuffer, 236 } else if (isAnyArrayBuffer(val1)) { 237 if (!isAnyArrayBuffer(val2) || !areEqualArrayBuffers(val1, val2)) { 250 isAnyArrayBuffer(val2) ||
|
D | inspect.js | 128 isAnyArrayBuffer, 988 } else if (isAnyArrayBuffer(value)) {
|
/third_party/node/deps/undici/src/lib/fetch/ |
D | file.js | 216 types.isAnyArrayBuffer(V) 286 types.isAnyArrayBuffer(element) ||
|
D | webidl.js | 511 !types.isAnyArrayBuffer(V) 616 if (types.isAnyArrayBuffer(V)) {
|
/third_party/node/lib/ |
D | buffer.js | 91 isAnyArrayBuffer, 303 if (isAnyArrayBuffer(value)) 540 if (obj.length !== undefined || isAnyArrayBuffer(obj.buffer)) { 775 if (isArrayBufferView(string) || isAnyArrayBuffer(string)) { 1361 if (isTypedArray(input) || isAnyArrayBuffer(input)) { 1369 if (isTypedArray(input) || isAnyArrayBuffer(input)) {
|
D | zlib.js | 62 isAnyArrayBuffer, 119 } else if (isAnyArrayBuffer(buffer)) { 168 if (isAnyArrayBuffer(buffer)) { 687 if (isAnyArrayBuffer(dictionary)) {
|
/third_party/node/lib/internal/ |
D | blob.js | 41 isAnyArrayBuffer, 111 if (isAnyArrayBuffer(source)) {
|
D | encoding.js | 44 isAnyArrayBuffer, 500 if (isAnyArrayBuffer(input)) {
|
/third_party/node/typings/internalBinding/ |
D | types.d.ts | 4 isAnyArrayBuffer(value: unknown): value is (ArrayBuffer | SharedArrayBuffer);
|
/third_party/node/lib/internal/modules/esm/ |
D | translators.js | 97 const { isArrayBufferView, isAnyArrayBuffer } = lazyTypes(); 98 if (isArrayBufferView(body) || isAnyArrayBuffer(body)) {
|
D | hooks.js | 44 isAnyArrayBuffer, 502 !isAnyArrayBuffer(source) &&
|
/third_party/node/test/parallel/ |
D | test-util-types.js | 58 types.isAnyArrayBuffer(value)) && key.includes('Array') ||
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_util.js | 330 this.isAnyArrayBuffer = function (...args) { method
|
/third_party/node/deps/undici/src/lib/websocket/ |
D | websocket.js | 631 if (ArrayBuffer.isView(V) || types.isAnyArrayBuffer(V)) {
|
/third_party/node/doc/api/ |
D | util.md | 2046 ### `util.types.isAnyArrayBuffer(value)` 2062 util.types.isAnyArrayBuffer(new ArrayBuffer()); // Returns true 2063 util.types.isAnyArrayBuffer(new SharedArrayBuffer()); // Returns true 2116 desirable to test for both; See [`util.types.isAnyArrayBuffer()`][] for that. 2658 desirable to test for both; See [`util.types.isAnyArrayBuffer()`][] for that. 3352 [`util.types.isAnyArrayBuffer()`]: #utiltypesisanyarraybuffervalue
|
/third_party/node/deps/undici/ |
D | undici.js | 12602 if (ArrayBuffer.isView(V) || types.isAnyArrayBuffer(V)) {
|
/third_party/node/deps/corepack/dist/lib/ |
D | corepack.cjs | 9521 if (webidl.util.Type(V) !== "Object" || !types.isAnyArrayBuffer(V)) { 9568 if (types.isAnyArrayBuffer(V)) { 9709 if (ArrayBuffer.isView(V) || types.isAnyArrayBuffer(V)) {
|