Searched defs:IDBAny (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBAny.cpp27 #include "modules/indexeddb/IDBAny.h"
37 PassRefPtr<IDBAny> IDBAny::createUndefined()
39 return adoptRef(new IDBAny(UndefinedType));
42 PassRefPtr<IDBAny> IDBAny::createNull()
44 return adoptRef(new IDBAny(NullType));
47 PassRefPtr<IDBAny> IDBAny::createString(const String& value)
49 return adoptRef(new IDBAny(valu
52 IDBAny::IDBAny(Type type) function in class:WebCore::IDBAny
137 IDBAny::IDBAny(PassRefPtr<DOMStringList> value) function in class:WebCore::IDBAny
144 IDBAny::IDBAny(PassRefPtr<IDBCursor> value) function in class:WebCore::IDBAny
151 IDBAny::IDBAny(PassRefPtr<IDBDatabase> value) function in class:WebCore::IDBAny
158 IDBAny::IDBAny(PassRefPtr<IDBIndex> value) function in class:WebCore::IDBAny
165 IDBAny::IDBAny(PassRefPtr<IDBTransaction> value) function in class:WebCore::IDBAny
172 IDBAny::IDBAny(PassRefPtr<IDBObjectStore> value) function in class:WebCore::IDBAny
179 IDBAny::IDBAny(PassRefPtr<SharedBuffer> value) function in class:WebCore::IDBAny
186 IDBAny::IDBAny(PassRefPtr<SharedBuffer> value, PassRefPtr<IDBKey> key, const IDBKeyPath& keyPath) function in class:WebCore::IDBAny
195 IDBAny::IDBAny(PassRefPtr<IDBKey> key) function in class:WebCore::IDBAny
202 IDBAny::IDBAny(const IDBKeyPath& value) function in class:WebCore::IDBAny
209 IDBAny::IDBAny(const String& value) function in class:WebCore::IDBAny
216 IDBAny::IDBAny(int64_t value) function in class:WebCore::IDBAny
[all...]
H A DIDBAny.h49 class IDBAny : public RefCounted<IDBAny> { class in namespace:WebCore
51 static PassRefPtr<IDBAny> createUndefined();
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> creat
[all...]

Completed in 170 milliseconds