/external/ImageMagick/Magick++/lib/ |
D | Blob.cpp | 18 Magick::Blob::Blob(void) in Blob() function in Magick::Blob 23 Magick::Blob::Blob(const void* data_,const size_t length_) in Blob() function in Magick::Blob 28 Magick::Blob::Blob(const Magick::Blob& blob_) in Blob() function in Magick::Blob 35 Magick::Blob::~Blob() in ~Blob() 43 Magick::Blob& Magick::Blob::operator=(const Magick::Blob& blob_) in operator =() 56 void Magick::Blob::base64(const std::string base64_) in base64() 68 Magick::Blob::MallocAllocator); in base64() 71 std::string Magick::Blob::base64(void) const in base64() 96 const void* Magick::Blob::data(void) const in data() 101 size_t Magick::Blob::length(void) const in length() [all …]
|
D | BlobRef.cpp | 20 : allocator(Magick::Blob::NewAllocator), in BlobRef() 35 if (allocator == Magick::Blob::NewAllocator) in ~BlobRef() 40 else if (allocator == Magick::Blob::MallocAllocator) in ~BlobRef()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Blob.h | 20 class MagickPPExport Blob 31 Blob(void); 34 Blob(const void* data_,const size_t length_); 37 Blob(const Blob& blob_); 40 virtual ~Blob(); 43 Blob& operator=(const Blob& blob_);
|
D | Image.h | 61 Image(const Blob &blob_); 64 Image(const Blob &blob_,const Geometry &size_); 67 Image(const Blob &blob_,const Geometry &size_,const size_t depth_); 71 Image(const Blob &blob_,const Geometry &size_,const size_t depth_, 75 Image(const Blob &blob_,const Geometry &size_,const std::string &magick_); 227 void exifProfile(const Blob &exifProfile_); 228 Blob exifProfile(void) const; 296 void iccColorProfile(const Blob &colorProfile_); 297 Blob iccColorProfile(void) const; 308 void iptcProfile(const Blob &iptcProfile_); [all …]
|
/external/libbrillo/brillo/streams/ |
D | fake_stream.h | 46 void AddReadPacketData(base::TimeDelta delay, brillo::Blob data); 66 void ExpectWritePacketData(base::TimeDelta delay, brillo::Blob data); 79 const brillo::Blob& GetFlushedOutputData() const; 119 brillo::Blob data; // Data to be read. 127 brillo::Blob data; // Possible data to verify the output with. 153 brillo::Blob input_buffer_; 160 brillo::Blob output_buffer_; 161 brillo::Blob expected_output_data_; 164 brillo::Blob all_output_data_;
|
D | fake_stream.cc | 65 AddReadPacketData(delay, brillo::Blob{byte_ptr, byte_ptr + size}); in AddReadPacketData() 68 void FakeStream::AddReadPacketData(base::TimeDelta delay, brillo::Blob data) { in AddReadPacketData() 77 AddReadPacketData(delay, brillo::Blob{data.begin(), data.end()}); in AddReadPacketString() 113 ExpectWritePacketData(delay, brillo::Blob{byte_ptr, byte_ptr + size}); in ExpectWritePacketData() 117 brillo::Blob data) { in ExpectWritePacketData() 127 ExpectWritePacketData(delay, brillo::Blob{data.begin(), data.end()}); in ExpectWritePacketString() 154 const brillo::Blob& FakeStream::GetFlushedOutputData() const { in GetFlushedOutputData()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitstreamReader.cpp | 61 case BitCodeAbbrevOp::Blob: in readAbbreviatedField() 82 case BitCodeAbbrevOp::Blob: in skipAbbreviatedField() 120 Op.getEncoding() != BitCodeAbbrevOp::Blob) { in skipRecord() 156 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob); in skipRecord() 178 StringRef *Blob) { in readRecord() argument 197 CodeOp.getEncoding() == BitCodeAbbrevOp::Blob) in readRecord() 210 Op.getEncoding() != BitCodeAbbrevOp::Blob) { in readRecord() 246 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob); in readRecord() 270 if (Blob) { in readRecord() 271 *Blob = StringRef(Ptr, NumElts); in readRecord()
|
/external/libbrillo/brillo/ |
D | data_encoding_unittest.cc | 56 brillo::Blob data3(256); in TEST() 84 brillo::Blob data3(256); in TEST() 119 brillo::Blob decoded3(256); in TEST() 129 brillo::Blob decoded_blob; in TEST() 137 EXPECT_EQ((brillo::Blob{0xFF}), decoded_blob); in TEST() 140 EXPECT_EQ((brillo::Blob{0xFF, 0xFF}), decoded_blob); in TEST()
|
D | secure_blob_unittest.cc | 24 static bool FindBlobInBlob(const brillo::Blob& haystack, in FindBlobInBlob() 25 const brillo::Blob& needle) { in FindBlobInBlob() 31 static int FindBlobIndexInBlob(const brillo::Blob& haystack, in FindBlobIndexInBlob() 32 const brillo::Blob& needle) { in FindBlobIndexInBlob() 68 brillo::Blob from_blob(32); in TEST_F()
|
D | data_encoding.h | 55 BRILLO_EXPORT bool Base64Decode(const std::string& input, brillo::Blob* output); 59 inline std::string Base64Encode(const brillo::Blob& input) { in Base64Encode() 62 inline std::string Base64EncodeWrapLines(const brillo::Blob& input) { in Base64EncodeWrapLines() 72 brillo::Blob blob; in Base64Decode()
|
D | secure_blob.h | 15 using Blob = std::vector<uint8_t>; variable 19 class BRILLO_EXPORT SecureBlob : public Blob { 22 using Blob::vector; // Inherit standard constructors from vector.
|
D | secure_blob.cc | 24 Blob::resize(count); in resize() 31 Blob::resize(count, value); in resize() 36 Blob::clear(); in clear()
|
/external/ImageMagick/Magick++/tests/ |
D | readWriteBlob.cpp | 24 class myBlob : public Blob 29 : Blob() in myBlob() 47 Blob::NewAllocator ); in myBlob() 102 Blob blob(static_cast<const unsigned char*>(blobData), blobLen); in main() 169 Blob blob; in main() 194 Blob blob; in main()
|
/external/javasqlite/src/main/java/SQLite/ |
D | Blob.java | 16 private Blob blob; 28 BlobR(Blob blob) { in BlobR() 162 private Blob blob; 174 BlobW(Blob blob) { in BlobW() 247 public class Blob { class
|
/external/clang/lib/Frontend/ |
D | SerializedDiagnosticReader.cpp | 183 StringRef Blob; in readDiagnosticBlock() local 184 unsigned RecID = Stream.readRecord(BlockOrCode, Record, &Blob); in readDiagnosticBlock() 195 if ((EC = visitCategoryRecord(Record[0], Blob))) in readDiagnosticBlock() 205 Record[5], Record[6], Blob))) in readDiagnosticBlock() 212 if ((EC = visitDiagFlagRecord(Record[0], Blob))) in readDiagnosticBlock() 220 if ((EC = visitFilenameRecord(Record[0], Record[1], Record[2], Blob))) in readDiagnosticBlock() 229 Location(Record[4], Record[5], Record[6], Record[7]), Blob))) in readDiagnosticBlock()
|
D | TestModuleFileExtension.cpp | 30 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // message in writeExtensionContents() 64 StringRef Blob; in Reader() local 65 unsigned RecCode = Stream.readRecord(Entry.ID, Record, &Blob); in Reader() 68 StringRef Message = Blob.substr(0, Record[0]); in Reader()
|
/external/llvm/include/llvm/Bitcode/ |
D | BitstreamWriter.h | 302 StringRef Blob, Optional<unsigned> Code) { in EmitRecordWithAbbrevImpl() argument 303 const char *BlobData = Blob.data(); in EmitRecordWithAbbrevImpl() 304 unsigned BlobLen = (unsigned) Blob.size(); in EmitRecordWithAbbrevImpl() 320 Op.getEncoding() != BitCodeAbbrevOp::Blob && in EmitRecordWithAbbrevImpl() 360 } else if (Op.getEncoding() == BitCodeAbbrevOp::Blob) { in EmitRecordWithAbbrevImpl() 368 assert(Blob.data() == BlobData && "BlobData got moved"); in EmitRecordWithAbbrevImpl() 369 assert(Blob.size() == BlobLen && "BlobLen got changed"); in EmitRecordWithAbbrevImpl() 370 emitBlob(Blob); in EmitRecordWithAbbrevImpl() 446 StringRef Blob) { in EmitRecordWithBlob() argument 447 EmitRecordWithAbbrevImpl(Abbrev, makeArrayRef(Vals), Blob, None); in EmitRecordWithBlob()
|
D | BitCodes.h | 97 Blob = 5 // 32-bit aligned array of 8-bit characters. enumerator 125 case Blob: in hasEncodingData()
|
/external/clang/test/Index/ |
D | print-type.cpp | 45 struct Blob { struct 49 int Blob::*member_pointer; argument 55 auto autoBlob = new Blob();
|
/external/llvm/tools/llvm-bcanalyzer/ |
D | llvm-bcanalyzer.cpp | 424 StringRef Blob) { in decodeMetadataStringsBlob() argument 425 if (Blob.empty()) in decodeMetadataStringsBlob() 435 StringRef Lengths = Blob.slice(0, StringsOffset); in decodeMetadataStringsBlob() 443 StringRef Strings = Blob.drop_front(StringsOffset); in decodeMetadataStringsBlob() 464 StringRef Blob) { in decodeBlob() argument 470 return decodeMetadataStringsBlob(Reader, Indent, Record, Blob); in decodeBlob() 571 StringRef Blob; in ParseBlock() local 573 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob); in ParseBlock() 661 if (Blob.data() && decodeBlob(Code, BlockID, *Stream.getBitStreamReader(), in ParseBlock() 662 Indent, Record, Blob)) { in ParseBlock() [all …]
|
/external/clang/lib/Serialization/ |
D | GlobalModuleIndex.cpp | 169 StringRef Blob; in GlobalModuleIndex() local 170 switch ((IndexRecordTypes)Cursor.readRecord(Entry.ID, Record, &Blob)) { in GlobalModuleIndex() 222 (const unsigned char *)Blob.data() + Record[0], in GlobalModuleIndex() 223 (const unsigned char *)Blob.data() + sizeof(uint32_t), in GlobalModuleIndex() 224 (const unsigned char *)Blob.data(), IdentifierIndexReaderTrait()); in GlobalModuleIndex() 574 StringRef Blob; in loadModuleFile() local 575 unsigned Code = InStream.readRecord(Entry.ID, Record, &Blob); in loadModuleFile() 627 (const unsigned char *)Blob.data() + Record[0], in loadModuleFile() 628 (const unsigned char *)Blob.data() + sizeof(uint32_t), in loadModuleFile() 629 (const unsigned char *)Blob.data())); in loadModuleFile() [all …]
|
D | ASTReader.cpp | 997 StringRef Blob; in ReadLexicalDeclContextStorage() local 999 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob); in ReadLexicalDeclContextStorage() 1016 Blob.data()), in ReadLexicalDeclContextStorage() 1017 Blob.size() / 4)); in ReadLexicalDeclContextStorage() 1033 StringRef Blob; in ReadVisibleDeclContextStorage() local 1035 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob); in ReadVisibleDeclContextStorage() 1043 auto *Data = (const unsigned char*)Blob.data(); in ReadVisibleDeclContextStorage() 1156 StringRef Blob; in ReadSourceManagerBlock() local 1157 switch (SLocEntryCursor.readRecord(E.ID, Record, &Blob)) { in ReadSourceManagerBlock() 1218 StringRef Blob; in ReadSLocEntry() local [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
D | BitstreamWriter.h | 299 StringRef Blob) { in EmitRecordWithAbbrevImpl() argument 300 const char *BlobData = Blob.data(); in EmitRecordWithAbbrevImpl() 301 unsigned BlobLen = (unsigned) Blob.size(); in EmitRecordWithAbbrevImpl() 343 } else if (Op.getEncoding() == BitCodeAbbrevOp::Blob) { in EmitRecordWithAbbrevImpl() 427 StringRef Blob) { in EmitRecordWithBlob() argument 428 EmitRecordWithAbbrevImpl(Abbrev, Vals, Blob); in EmitRecordWithBlob()
|
D | BitCodes.h | 94 Blob = 5 // 32-bit aligned array of 8-bit characters. enumerator 123 case Blob: in hasEncodingData()
|
/external/clang/tools/libclang/ |
D | CXLoadedDiagnostic.cpp | 53 const char *copyString(StringRef Blob) { in copyString() argument 54 char *mem = Alloc.Allocate<char>(Blob.size() + 1); in copyString() 55 memcpy(mem, Blob.data(), Blob.size()); in copyString() 56 mem[Blob.size()] = '\0'; in copyString()
|