/third_party/skia/third_party/externals/angle2/src/common/spirv/ |
D | spirv_instruction_builder_autogen.h | 24 void WriteNop(Blob *blob); 25 void WriteUndef(Blob *blob, IdResultType idResultType, IdResult idResult); 26 void WriteSourceContinued(Blob *blob, LiteralString continuedSource); 27 void WriteSource(Blob *blob, 32 void WriteSourceExtension(Blob *blob, LiteralString extension); 33 void WriteName(Blob *blob, IdRef target, LiteralString name); 34 void WriteMemberName(Blob *blob, IdRef type, LiteralInteger member, LiteralString name); 35 void WriteString(Blob *blob, IdResult idResult, LiteralString string); 36 void WriteLine(Blob *blob, IdRef file, LiteralInteger line, LiteralInteger column); 37 void WriteExtension(Blob *blob, LiteralString name); [all …]
|
D | spirv_instruction_builder_autogen.cpp | 54 void WriteNop(Blob *blob) in WriteNop() 61 void WriteUndef(Blob *blob, IdResultType idResultType, IdResult idResult) in WriteUndef() 69 void WriteSourceContinued(Blob *blob, LiteralString continuedSource) in WriteSourceContinued() 81 void WriteSource(Blob *blob, in WriteSource() 106 void WriteSourceExtension(Blob *blob, LiteralString extension) in WriteSourceExtension() 118 void WriteName(Blob *blob, IdRef target, LiteralString name) in WriteName() 131 void WriteMemberName(Blob *blob, IdRef type, LiteralInteger member, LiteralString name) in WriteMemberName() 145 void WriteString(Blob *blob, IdResult idResult, LiteralString string) in WriteString() 158 void WriteLine(Blob *blob, IdRef file, LiteralInteger line, LiteralInteger column) in WriteLine() 167 void WriteExtension(Blob *blob, LiteralString name) in WriteExtension() [all …]
|
/third_party/node/test/fixtures/wpt/FileAPI/blob/ |
D | Blob-constructor.any.js | 7 assert_equals(Blob.length, 0, "Blob.length should be 0."); 8 assert_true(Blob instanceof Function, "Blob should be a function."); 13 var blob = new Blob(); 14 assert_true(blob instanceof Blob); 20 assert_throws_js(TypeError, function() { var blob = Blob(); }); 23 var blob = new Blob; 24 assert_true(blob instanceof Blob); 29 var blob = new Blob(undefined); 30 assert_true(blob instanceof Blob); 53 new Blob(arg); [all …]
|
D | Blob-text.any.js | 6 const blob = new Blob(["PASS"]); 12 const blob = new Blob(); 18 const blob = new Blob(["P", "A", "SS"]); 26 const blob = new Blob([input_arr]); 32 const blob = new Blob(["PASS"], { type: "text/plain;charset=utf-16le" }); 40 const blob = new Blob([input_arr], { type: "text/plain;charset=utf-16le" }); 48 const blob = new Blob([input_arr]); 57 const blob = new Blob([input_arr]);
|
D | Blob-slice.any.js | 6 var blobTemp = new Blob(["PASS"]); 18 return blob1 = new Blob(["squiggle"]); 26 return blob2 = new Blob(["steak"], {type: "content/type"}); 34 return new Blob().slice(0,0,null); 42 return new Blob().slice(0,0,undefined); 50 return new Blob().slice(0,0); 148 new Blob(['abcd']), 163 var blob = new Blob(blobs); 164 assert_true(blob instanceof Blob); 190 var blob = new Blob(["PASS"]); [all …]
|
D | Blob-array-buffer.any.js | 7 const blob = new Blob([input_arr]); 15 const blob = new Blob([input_arr]); 23 const blob = new Blob([input_arr]); 31 const blob = new Blob([typed_arr]); 38 const blob = new Blob([input_arr]);
|
D | Blob-slice-overflow.any.js | 11 var blob = new Blob([text]); 17 var blob = new Blob([text]); 23 var blob = new Blob([text]); 29 var blob = new Blob([text]);
|
D | Blob-constructor-dom.window.js | 17 new Blob(arg); 31 new Blob(list); 38 return new Blob(select); 48 return new Blob(elm.attributes);
|
D | Blob-stream.any.js | 38 const blob = new Blob(["PASS"]); 47 const blob = new Blob(); 56 const blob = new Blob([typed_arr]); 65 let blob = new Blob([typed_arr]);
|
/third_party/node/test/parallel/ |
D | test-blob.js | 5 const { Blob } = require('buffer'); 10 const b = new Blob(); 15 assert.throws(() => new Blob(false), { 19 assert.throws(() => new Blob('hello'), { 23 assert.throws(() => new Blob({}), { 28 const b = new Blob([]); 44 assert.strictEqual(new Blob([], { type: 1 }).type, '1'); 45 assert.strictEqual(new Blob([], { type: false }).type, 'false'); 46 assert.strictEqual(new Blob([], { type: {} }).type, '[object object]'); 50 const b = new Blob(['616263'], { encoding: 'hex', type: 'foo' }); [all …]
|
/third_party/node/src/ |
D | node_blob.cc | 32 void Blob::Initialize(Environment* env, v8::Local<v8::Object> target) { in Initialize() 37 Local<FunctionTemplate> Blob::GetConstructorTemplate(Environment* env) { in GetConstructorTemplate() 53 bool Blob::HasInstance(Environment* env, v8::Local<v8::Value> object) { in HasInstance() 57 BaseObjectPtr<Blob> Blob::Create( in Create() 66 return BaseObjectPtr<Blob>(); in Create() 70 return BaseObjectPtr<Blob>(); in Create() 72 return MakeBaseObject<Blob>(env, obj, store, length); in Create() 75 void Blob::New(const FunctionCallbackInfo<Value>& args) { in New() 89 CHECK(entry->IsArrayBufferView() || Blob::HasInstance(env, entry)); in New() 99 Blob* blob; in New() [all …]
|
D | node_blob.h | 24 class Blob : public BaseObject { 35 static BaseObjectPtr<Blob> Create( 47 SET_MEMORY_INFO_NAME(Blob) 48 SET_SELF_SIZE(Blob) 53 BaseObjectPtr<Blob> Slice(Environment* env, size_t start, size_t end); 82 Blob( 121 Blob* blob,
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | BuildSPIRV.h | 248 spirv::Blob localVariables; 252 spirv::Blob body; 324 spirv::Blob *getSpirvDebug() { return &mSpirvDebug; } in getSpirvDebug() 325 spirv::Blob *getSpirvDecorations() { return &mSpirvDecorations; } in getSpirvDecorations() 326 spirv::Blob *getSpirvTypeAndConstantDecls() { return &mSpirvTypeAndConstantDecls; } in getSpirvTypeAndConstantDecls() 327 spirv::Blob *getSpirvTypePointerDecls() { return &mSpirvTypePointerDecls; } in getSpirvTypePointerDecls() 328 spirv::Blob *getSpirvFunctionTypeDecls() { return &mSpirvFunctionTypeDecls; } in getSpirvFunctionTypeDecls() 329 spirv::Blob *getSpirvVariableDecls() { return &mSpirvVariableDecls; } in getSpirvVariableDecls() 330 spirv::Blob *getSpirvFunctions() { return &mSpirvFunctions; } in getSpirvFunctions() 331 spirv::Blob *getSpirvCurrentFunctionBlock() in getSpirvCurrentFunctionBlock() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/ |
D | AMDGPUPALMetadata.cpp | 69 bool AMDGPUPALMetadata::setFromBlob(unsigned Type, StringRef Blob) { in setFromBlob() argument 72 return setFromLegacyBlob(Blob); in setFromBlob() 73 return setFromMsgPackBlob(Blob); in setFromBlob() 77 bool AMDGPUPALMetadata::setFromLegacyBlob(StringRef Blob) { in setFromLegacyBlob() argument 78 auto Data = reinterpret_cast<const uint32_t *>(Blob.data()); in setFromLegacyBlob() 79 for (unsigned I = 0; I != Blob.size() / sizeof(uint32_t) / 2; ++I) in setFromLegacyBlob() 85 bool AMDGPUPALMetadata::setFromMsgPackBlob(StringRef Blob) { in setFromMsgPackBlob() argument 86 msgpack::Reader Reader(Blob); in setFromMsgPackBlob() 87 return MsgPackDoc.readFromBlob(Blob, /*Multi=*/false); in setFromMsgPackBlob() 597 void AMDGPUPALMetadata::toBlob(unsigned Type, std::string &Blob) { in toBlob() argument [all …]
|
D | AMDGPUPALMetadata.h | 42 bool setFromBlob(unsigned Type, StringRef Blob); 127 bool setFromLegacyBlob(StringRef Blob); 128 bool setFromMsgPackBlob(StringRef Blob); 129 void toLegacyBlob(std::string &Blob); 130 void toMsgPackBlob(std::string &Blob);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | mtl_glslang_utils.h | 27 gl::ShaderMap<const angle::spirv::Blob *> *spirvBlobsOut, 32 const gl::ShaderMap<const angle::spirv::Blob *> &spirvBlobs, 35 gl::ShaderMap<angle::spirv::Blob> *shaderCodeOut); 45 gl::ShaderMap<angle::spirv::Blob> *spirvShaderCode, 46 angle::spirv::Blob *xfbOnlySpirvCode /** nullable */,
|
/third_party/node/deps/npm/node_modules/node-fetch-npm/src/ |
D | body.js | 11 const Blob = require('./blob.js') constant 12 const BUFFER = Blob.BUFFER 41 } else if (body instanceof Blob) { 81 new Blob([], { 162 if (this.body instanceof Blob) { 334 } else if (body instanceof Blob) { 360 } else if (body instanceof Blob) { 396 } else if (body instanceof Blob) {
|
D | blob.js | 11 class Blob { class 40 } else if (element instanceof Blob) { 92 const blob = new Blob([], { type: arguments[2] }) 101 exports = module.exports = Blob 104 Object.defineProperty(Blob.prototype, Symbol.toStringTag, {
|
/third_party/node/test/fixtures/wpt/FileAPI/url/ |
D | url-in-tags-revoke.window.js | 6 const blob = new Blob([blob_contents], {type: 'text/html'}); 24 const blob = new Blob([blob_contents], {type: 'text/html'}); 45 const blob = new Blob([blob_contents], {type: 'text/html'}); 75 const blob = new Blob([window_contents_for_channel(channel_name)], {type: 'text/html'}); 89 const blob = new Blob([blob_contents]); 104 const blob = new Blob([window_contents_for_channel(channel_name)], {type: 'text/html'});
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | SizedMRUCache_unittest.cpp | 15 using Blob = std::vector<uint8_t>; typedef 17 Blob MakeBlob(size_t size) in MakeBlob() 19 Blob blob; in MakeBlob() 31 SizedMRUCache<std::string, Blob> sizedCache(kSize); in TEST() 41 const Blob *blob = nullptr; in TEST()
|
D | BlobCache_unittest.cpp | 19 using Blob = BlobCache::Value; typedef 60 Blob blob; in TEST() 77 Blob qvalue; in TEST() 91 Blob qvalue; in TEST() 126 Blob qvalue; in TEST()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | SizedMRUCache_unittest.cpp | 15 using Blob = std::vector<uint8_t>; typedef 17 Blob MakeBlob(size_t size) in MakeBlob() 19 Blob blob; in MakeBlob() 31 SizedMRUCache<std::string, Blob> sizedCache(kSize); in TEST() 41 const Blob *blob = nullptr; in TEST()
|
D | BlobCache_unittest.cpp | 19 using Blob = BlobCache::Value; typedef 60 Blob blob; in TEST() 78 Blob qvalue; in TEST() 93 Blob qvalue; in TEST() 129 Blob qvalue; in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitstream/Reader/ |
D | BitstreamReader.cpp | 74 case BitCodeAbbrevOp::Blob: in readAbbreviatedField() 118 CodeOp.getEncoding() == BitCodeAbbrevOp::Blob) in skipRecord() 134 Op.getEncoding() != BitCodeAbbrevOp::Blob) { in skipRecord() 180 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob); in skipRecord() 207 StringRef *Blob) { in readRecord() argument 236 CodeOp.getEncoding() == BitCodeAbbrevOp::Blob) in readRecord() 252 Op.getEncoding() != BitCodeAbbrevOp::Blob) { in readRecord() 305 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob); in readRecord() 333 if (Blob) { in readRecord() 334 *Blob = StringRef(Ptr, NumElts); in readRecord()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/ |
D | BitstreamWriter.h | 297 StringRef Blob, Optional<unsigned> Code) { in EmitRecordWithAbbrevImpl() argument 298 const char *BlobData = Blob.data(); in EmitRecordWithAbbrevImpl() 299 unsigned BlobLen = (unsigned) Blob.size(); in EmitRecordWithAbbrevImpl() 315 Op.getEncoding() != BitCodeAbbrevOp::Blob && in EmitRecordWithAbbrevImpl() 355 } else if (Op.getEncoding() == BitCodeAbbrevOp::Blob) { in EmitRecordWithAbbrevImpl() 363 assert(Blob.data() == BlobData && "BlobData got moved"); in EmitRecordWithAbbrevImpl() 364 assert(Blob.size() == BlobLen && "BlobLen got changed"); in EmitRecordWithAbbrevImpl() 365 emitBlob(Blob); in EmitRecordWithAbbrevImpl() 441 StringRef Blob) { in EmitRecordWithBlob() argument 442 EmitRecordWithAbbrevImpl(Abbrev, makeArrayRef(Vals), Blob, None); in EmitRecordWithBlob()
|