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

  /external/webkit/Source/WebCore/storage/
IDBAny.cpp 27 #include "IDBAny.h"
40 PassRefPtr<IDBAny> IDBAny::createInvalid()
42 return adoptRef(new IDBAny());
45 PassRefPtr<IDBAny> IDBAny::createNull()
47 RefPtr<IDBAny> idbAny = adoptRef(new IDBAny());
48 idbAny->setNull()
    [all...]
IDBAny.h 47 class IDBAny : public RefCounted<IDBAny> {
49 static PassRefPtr<IDBAny> createInvalid();
50 static PassRefPtr<IDBAny> createNull();
52 static PassRefPtr<IDBAny> create(T* idbObject)
54 RefPtr<IDBAny> any = IDBAny::createInvalid();
59 static PassRefPtr<IDBAny> create(PassRefPtr<T> idbObject)
61 RefPtr<IDBAny> any = IDBAny::createInvalid()
    [all...]

Completed in 775 milliseconds