Searched defs:WebIDBKey (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBKey.h40 class WebIDBKey { class in namespace:WebKit
43 WebIDBKey() { } function in class:WebKit::WebIDBKey
44 ~WebIDBKey() { reset(); }
46 WEBKIT_API static WebIDBKey createNull();
47 WEBKIT_API static WebIDBKey createString(const WebString&);
48 WEBKIT_API static WebIDBKey createDate(double);
49 WEBKIT_API static WebIDBKey createNumber(double);
50 WEBKIT_API static WebIDBKey createInvalid();
51 WEBKIT_API static WebIDBKey createFromValueAndKeyPath(const WebSerializedScriptValue&, const WebIDBKeyPath&);
52 WEBKIT_API static WebSerializedScriptValue injectIDBKeyIntoSerializedValue(const WebIDBKey
54 WebIDBKey(const WebIDBKey& e) { assign(e); } function in class:WebKit::WebIDBKey
[all...]
H A DWebIDBCallbacks.h36 class WebIDBKey;
51 virtual void onSuccess(const WebIDBKey&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
H A DWebIDBCursor.h32 #include "WebIDBKey.h"
48 virtual WebIDBKey key() const
51 return WebIDBKey::createInvalid();
53 virtual WebIDBKey primaryKey() const
56 return WebIDBKey::createInvalid();
62 WebIDBKey key;
66 virtual void value(WebSerializedScriptValue& serializedScriptValue, WebIDBKey& key) const
77 virtual void continueFunction(const WebIDBKey&, WebIDBCallbacks*, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
H A DWebIDBIndex.h36 class WebIDBKey;
67 virtual void getObject(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
68 virtual void getKey(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
H A DWebIDBObjectStore.h62 virtual void get(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
70 virtual void put(const WebSerializedScriptValue&, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
71 virtual void deleteFunction(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
/external/webkit/Source/WebKit/chromium/src/
H A DWebIDBKey.cpp29 #include "WebIDBKey.h"
44 WebIDBKey WebIDBKey::createNull()
46 WebIDBKey key;
51 WebIDBKey WebIDBKey::createString(const WebString& string)
53 WebIDBKey key;
58 WebIDBKey WebIDBKey::createDate(double date)
60 WebIDBKey ke
148 WebIDBKey::WebIDBKey(const PassRefPtr<IDBKey>& value) function in class:WebKit::WebIDBKey
[all...]

Completed in 925 milliseconds