Searched defs:Blob (Results 1 - 25 of 29) sorted by relevance

12

/external/ImageMagick/Magick++/lib/Magick++/
H A DBlob.h20 class MagickPPExport Blob class in namespace:Magick
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_);
51 // free this data since the Blob class manages its own data. The
52 // user must be finished with the data before allowing the Blob t
[all...]
/external/ImageMagick/Magick++/lib/
H A DBlob.cpp6 // Implementation of Blob
13 #include "Magick++/Blob.h"
18 Magick::Blob::Blob(void) function in class:Magick::Blob
23 Magick::Blob::Blob(const void* data_,const size_t length_) function in class:Magick::Blob
28 Magick::Blob::Blob(const Magick::Blob& blob_) function in class:Magick::Blob
35 Magick::Blob
[all...]
/external/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp183 StringRef Blob; local
184 unsigned RecID = Stream.readRecord(BlockOrCode, Record, &Blob);
195 if ((EC = visitCategoryRecord(Record[0], Blob)))
205 Record[5], Record[6], Blob)))
212 if ((EC = visitDiagFlagRecord(Record[0], Blob)))
220 if ((EC = visitFilenameRecord(Record[0], Record[1], Record[2], Blob)))
229 Location(Record[4], Record[5], Record[6], Record[7]), Blob)))
H A DTestModuleFileExtension.cpp30 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // message
64 StringRef Blob; local
65 unsigned RecCode = Stream.readRecord(Entry.ID, Record, &Blob);
68 StringRef Message = Blob.substr(0, Record[0]);
/external/javasqlite/src/main/java/SQLite/
H A DBlob.java13 * Blob instance
16 private Blob blob;
28 BlobR(Blob blob) {
159 * Blob instance
162 private Blob blob;
174 BlobW(Blob blob) {
247 public class Blob { class
/external/clang/test/Index/
H A Dprint-type.cpp45 struct Blob { struct
49 int Blob::*member_pointer;
55 auto autoBlob = new Blob();
127 // CHECK: StructDecl=Blob:45:8 (Definition) [type=Blob] [typekind=Record] [isPOD=1] [nbFields=2]
129 // CHECK: VarDecl=member_pointer:49:12 (Definition) [type=int Blob::*] [typekind=MemberPointer] [isPOD=1]
141 // CHECK: VarDecl=autoBlob:55:6 (Definition) [type=Blob *] [typekind=Auto] [canonicaltype=Blob *] [canonicaltypekind=Pointer] [isPOD=1]
142 // CHECK: CXXNewExpr= [type=Blob *] [typekind=Pointer] [isPOD=1] [pointeetype=Blob] [pointeekin
[all...]
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.cpp53 const char *copyString(StringRef Blob) { argument
54 char *mem = Alloc.Allocate<char>(Blob.size() + 1);
55 memcpy(mem, Blob.data(), Blob.size());
56 mem[Blob.size()] = '\0';
/external/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp61 case BitCodeAbbrevOp::Blob:
82 case BitCodeAbbrevOp::Blob:
120 Op.getEncoding() != BitCodeAbbrevOp::Blob) {
137 report_fatal_error("Array element type can't be an Array or a Blob");
156 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob);
157 // Blob case. Read the number of bytes as a vbr6.
178 StringRef *Blob) {
197 CodeOp.getEncoding() == BitCodeAbbrevOp::Blob)
198 report_fatal_error("Abbreviation starts with an Array or a Blob");
210 Op.getEncoding() != BitCodeAbbrevOp::Blob) {
176 readRecord(unsigned AbbrevID, SmallVectorImpl<uint64_t> &Vals, StringRef *Blob) argument
[all...]
H A DBitcodeReader.cpp448 StringRef Blob,
2036 StringRef Blob,
2048 if (StringsOffset > Blob.size())
2051 StringRef Lengths = Blob.slice(0, StringsOffset);
2055 // Ensure that Blob doesn't get invalidated, even if this is reading from
2059 StringRef Strings = Blob.drop_front(StringsOffset);
2178 StringRef Blob; local
2179 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
2698 parseMetadataStrings(Record, Blob, NextMetadataNo))
2035 parseMetadataStrings(ArrayRef<uint64_t> Record, StringRef Blob, unsigned &NextMetadataNo) argument
/external/llvm/include/llvm/Bitcode/
H A DBitCodes.h97 Blob = 5 // 32-bit aligned array of 8-bit characters. enumerator in enum:llvm::BitCodeAbbrevOp::Encoding
125 case Blob:
H A DBitstreamWriter.h296 /// data that should be emitted as part of the Blob or Array operand that is
302 StringRef Blob, Optional<unsigned> Code) {
303 const char *BlobData = Blob.data();
304 unsigned BlobLen = (unsigned) Blob.size();
320 Op.getEncoding() != BitCodeAbbrevOp::Blob &&
342 "Blob data and record entries specified for array!");
360 } else if (Op.getEncoding() == BitCodeAbbrevOp::Blob) {
366 "Blob data and record entries specified for blob operand!");
368 assert(Blob.data() == BlobData && "BlobData got moved");
369 assert(Blob
301 EmitRecordWithAbbrevImpl(unsigned Abbrev, ArrayRef<uintty> Vals, StringRef Blob, Optional<unsigned> Code) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
H A DBitCodes.h94 Blob = 5 // 32-bit aligned array of 8-bit characters. enumerator in enum:llvm::BitCodeAbbrevOp::Encoding
123 case Blob:
H A DBitstreamWriter.h295 /// data that should be emitted as part of the Blob or Array operand that is
299 StringRef Blob) {
300 const char *BlobData = Blob.data();
301 unsigned BlobLen = (unsigned) Blob.size();
325 "Blob data and record entries specified for array!");
343 } else if (Op.getEncoding() == BitCodeAbbrevOp::Blob) {
351 "Blob data and record entries specified for blob operand!");
385 "Blob data specified for record that doesn't use it!");
427 StringRef Blob) {
428 EmitRecordWithAbbrevImpl(Abbrev, Vals, Blob);
298 EmitRecordWithAbbrevImpl(unsigned Abbrev, SmallVectorImpl<uintty> &Vals, StringRef Blob) argument
[all...]
/external/skia/src/gpu/ops/
H A DGrAtlasTextOp.h29 typedef GrAtlasTextBlob Blob; typedef in class:final
32 Blob* fBlob;
/external/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp424 StringRef Blob) {
425 if (Blob.empty())
435 StringRef Lengths = Blob.slice(0, StringsOffset);
439 // Ensure that Blob doesn't get invalidated, even if this is reading from a
443 StringRef Strings = Blob.drop_front(StringsOffset);
464 StringRef Blob) {
470 return decodeMetadataStringsBlob(Reader, Indent, Record, Blob);
571 StringRef Blob; local
573 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
661 if (Blob
422 decodeMetadataStringsBlob(BitstreamReader &Reader, StringRef Indent, ArrayRef<uint64_t> Record, StringRef Blob) argument
462 decodeBlob(unsigned Code, unsigned BlockID, BitstreamReader &Reader, StringRef Indent, ArrayRef<uint64_t> Record, StringRef Blob) argument
[all...]
/external/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp169 StringRef Blob; local
170 switch ((IndexRecordTypes)Cursor.readRecord(Entry.ID, Record, &Blob)) {
222 (const unsigned char *)Blob.data() + Record[0],
223 (const unsigned char *)Blob.data() + sizeof(uint32_t),
224 (const unsigned char *)Blob.data(), IdentifierIndexReaderTrait());
574 StringRef Blob; local
575 unsigned Code = InStream.readRecord(Entry.ID, Record, &Blob);
627 (const unsigned char *)Blob.data() + Record[0],
628 (const unsigned char *)Blob.data() + sizeof(uint32_t),
629 (const unsigned char *)Blob
[all...]
H A DASTReader.cpp997 StringRef Blob; local
999 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob);
1016 Blob.data()),
1017 Blob.size() / 4));
1033 StringRef Blob; local
1035 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob);
1043 auto *Data = (const unsigned char*)Blob.data();
1156 StringRef Blob; local
1157 switch (SLocEntryCursor.readRecord(E.ID, Record, &Blob)) {
1218 StringRef Blob;
1251 StringRef Blob; local
1910 StringRef Blob; local
2297 StringRef Blob; local
3860 parseModuleFileExtensionMetadata( const SmallVectorImpl<uint64_t> &Record, StringRef Blob, ModuleFileExtensionMetadata &Metadata) argument
3904 StringRef Blob; local
4090 StringRef Blob; local
4140 StringRef Blob; local
4274 StringRef Blob; local
4319 StringRef Blob; local
4383 StringRef Blob; local
4442 StringRef Blob; local
4900 StringRef Blob; local
[all...]
/external/flatbuffers/include/flatbuffers/
H A Dflexbuffers.h223 class Blob : public Sized { class in namespace:flexbuffers
225 Blob(const uint8_t *data, uint8_t byte_width) function in class:flexbuffers::Blob
228 static Blob EmptyBlob() {
230 return Blob(empty_blob + 1, 1);
478 Blob AsBlob() const {
480 return Blob(Indirect(), byte_width_);
482 return Blob::EmptyBlob();
859 size_t Blob(const void *data, size_t len) { function in class:flexbuffers::FLATBUFFERS_FINAL_CLASS
862 size_t Blob(const std::vector<uint8_t> &v) { function in class:flexbuffers::FLATBUFFERS_FINAL_CLASS
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1764 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1782 SmallString<256> Blob; local
1784 BitstreamWriter W(Blob);
1791 Record.push_back(Blob.size());
1795 Blob.append(cast<MDString>(MD)->getString());
1798 Stream.EmitRecordWithBlob(createMetadataStringsAbbrev(), Record, Blob); local
/external/sqlite/dist/orig/
H A Dsqlite3.c158946 typedef struct Blob Blob; typedef in typeref:struct:Blob
158955 struct Blob { struct
[all...]
/external/sqlite/dist/
H A Dsqlite3.c158958 typedef struct Blob Blob; typedef in typeref:struct:Blob
158967 struct Blob { struct
[all...]
/external/guice/extensions/persist/lib/
H A Ddb4o-6.4.14.8131-java5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/db4o/ com/db4o/activation/ com/db4o/cluster/ com/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 1218 milliseconds

12