HomeSort by relevance Sort by last modified time
    Searched defs:Blob (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/sync/syncable/
blob.h 15 typedef std::vector<uint8> Blob;
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Blob.cpp 32 #include "core/fileapi/Blob.h"
39 #include "platform/blob/BlobRegistry.h"
40 #include "platform/blob/BlobURL.h"
57 Blob* blob = static_cast<Blob*>(registrableObject); local
58 BlobRegistry::registerPublicBlobURL(origin, publicURL, blob->blobDataHandle());
74 Blob::Blob(PassRefPtr<BlobDataHandle> dataHandle)
80 Blob::~Blob(
    [all...]
Blob.h 36 #include "platform/blob/BlobData.h"
48 class Blob : public RefCountedWillBeGarbageCollectedFinalized<Blob>, public ScriptWrappable, public URLRegistrable {
51 static PassRefPtrWillBeRawPtr<Blob> create()
53 return adoptRefWillBeNoop(new Blob(BlobDataHandle::create()));
56 static PassRefPtrWillBeRawPtr<Blob> create(PassRefPtr<BlobDataHandle> blobDataHandle)
58 return adoptRefWillBeNoop(new Blob(blobDataHandle));
61 virtual ~Blob();
64 virtual PassRefPtrWillBeRawPtr<Blob> slice(long long start, long long end, const String& contentType, ExceptionState&) const;
67 PassRefPtrWillBeRawPtr<Blob> slice(ExceptionState& exceptionState) cons
    [all...]
  /external/clang/test/Index/
print-type.cpp 45 struct Blob {
48 int Blob::*member_pointer;
118 // CHECK: StructDecl=Blob:45:8 (Definition) [type=Blob] [typekind=Record] [isPOD=1]
120 // CHECK: VarDecl=member_pointer:48:12 (Definition) [type=int Blob::*] [typekind=MemberPointer] [isPOD=1]
  /external/javasqlite/src/main/java/SQLite/
Blob.java 7 * SQLite 3.4.0 incremental blob I/O interface.
13 * Blob instance
16 private Blob blob; field in class:BlobR
25 * Contruct InputStream from blob instance.
28 BlobR(Blob blob) {
29 this.blob = blob;
39 int ret = blob.size - pos
162 private Blob blob; field in class:BlobW
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/blob/
BlobData.h 106 // Constructor for Blob type.
108 : type(Blob)
132 Blob,
139 RefPtr<BlobDataHandle> blobDataHandle; // For Blob type.
185 // The value of the size property for a Blob who has this data.
186 // BlobDataItem::toEndOfFile if the Blob has a file whose size was not yet determined.
205 // For empty blob construction.
  /external/chromium_org/third_party/smhasher/src/
Types.h 29 // Mix the given blob of data into the verification code
31 void MixVCode ( const void * blob, int len );
36 typedef void (*pfHash) ( const void * blob, const int len, const uint32_t seed, void * out );
192 class Blob
196 Blob()
204 Blob ( int x )
214 Blob ( const Blob & k )
222 Blob & operator = ( const Blob & k
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 50 const char *copyString(StringRef Blob) {
51 char *mem = Alloc.Allocate<char>(Blob.size() + 1);
52 memcpy(mem, Blob.data(), Blob.size());
53 mem[Blob.size()] = '\0';
226 StringRef Blob,
233 StringRef Blob,
448 StringRef Blob,
452 if (Blob.size() > 65536) {
458 if (allowEmptyString && Record.size() >= 1 && Blob.size() == 0)
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 96 Blob = 5 // 32-bit aligned array of 8-bit characters.
124 case Blob:
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 417 StringRef Blob;
418 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
449 if (Blob.data()) {
450 outs() << " blob data = ";
452 for (unsigned i = 0, e = Blob.size(); i != e; ++i)
453 if (!isprint(static_cast<unsigned char>(Blob[i]))) {
459 outs() << "'" << Blob << "'";
461 outs() << "unprintable, " << Blob.size() << " bytes.";
  /external/chromium_org/chrome/browser/password_manager/
native_backend_kwallet_x_unittest.cc 44 typedef std::basic_string<uint8_t> Blob; // std::string is binary-safe.
77 Blob* value) const {
102 const Blob& value) {
110 typedef std::map<std::string, Blob> Folder;
544 TestKWallet::Blob value;
568 TestKWallet::Blob(bytes, length)) ? 0 : 1);
584 TestKWallet::Blob value;
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 169 StringRef Blob;
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;
575 unsigned Code = InStream.readRecord(Entry.ID, Record, &Blob);
623 (const unsigned char *)Blob.data() + Record[0],
624 (const unsigned char *)Blob.data() + sizeof(uint32_t),
625 (const unsigned char *)Blob.data()))
    [all...]
ASTReader.cpp     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 2774 milliseconds