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

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBAny.cpp 27 #include "modules/indexeddb/IDBAny.h"
39 PassRefPtr<IDBAny> IDBAny::createInvalid()
41 return adoptRef(new IDBAny(UndefinedType));
44 PassRefPtr<IDBAny> IDBAny::createNull()
46 return adoptRef(new IDBAny(NullType));
49 PassRefPtr<IDBAny> IDBAny::createString(const String& value)
51 return adoptRef(new IDBAny(value))
    [all...]
IDBAny.h 49 class IDBAny : public RefCounted<IDBAny> {
51 static PassRefPtr<IDBAny> createInvalid();
52 static PassRefPtr<IDBAny> createNull();
53 static PassRefPtr<IDBAny> createString(const String&);
55 static PassRefPtr<IDBAny> create(T* idbObject)
57 return adoptRef(new IDBAny(idbObject));
60 static PassRefPtr<IDBAny> create(const T& idbObject)
62 return adoptRef(new IDBAny(idbObject));
65 static PassRefPtr<IDBAny> create(PassRefPtr<T> idbObject
    [all...]

Completed in 340 milliseconds