HomeSort by relevance Sort by last modified time
    Searched refs:WebIDBKey (Results 1 - 23 of 23) sorted by null

  /external/webkit/Source/WebKit/chromium/src/
WebIDBKey.cpp 29 #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 key
    [all...]
WebIDBKeyRange.cpp 33 #include "WebIDBKey.h"
44 void WebIDBKeyRange::assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen)
46 if (lower.type() == WebIDBKey::InvalidType && upper.type() == WebIDBKey::InvalidType)
57 WebIDBKey WebIDBKeyRange::lower() const
60 return WebIDBKey::createInvalid();
64 WebIDBKey WebIDBKeyRange::upper() const
67 return WebIDBKey::createInvalid();
WebIDBCursorImpl.h 48 virtual WebIDBKey key() const;
49 virtual WebIDBKey primaryKey() const;
52 virtual void continueFunction(const WebIDBKey&, WebIDBCallbacks*, WebExceptionCode&);
WebIDBCursorImpl.cpp 35 #include "WebIDBKey.h"
55 WebIDBKey WebIDBCursorImpl::key() const
60 WebIDBKey WebIDBCursorImpl::primaryKey() const
75 void WebIDBCursorImpl::continueFunction(const WebIDBKey& key, WebIDBCallbacks* callbacks, WebExceptionCode& ec)
WebIDBObjectStoreImpl.h 52 void get(const WebIDBKey& key, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&);
53 void put(const WebSerializedScriptValue&, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&);
54 void deleteFunction(const WebIDBKey& key, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&);
WebIDBIndexImpl.h 53 virtual void getObject(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&);
54 virtual void getKey(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&);
WebIDBCallbacksImpl.h 47 virtual void onSuccess(const WebIDBKey&);
WebIDBIndexImpl.cpp 35 #include "WebIDBKey.h"
81 void WebIDBIndexImpl::getObject(const WebIDBKey& keyRange, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
86 void WebIDBIndexImpl::getKey(const WebIDBKey& keyRange, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
WebIDBObjectStoreImpl.cpp 37 #include "WebIDBKey.h"
70 void WebIDBObjectStoreImpl::get(const WebIDBKey& key, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
75 void WebIDBObjectStoreImpl::put(const WebSerializedScriptValue& value, const WebIDBKey& key, PutMode putMode, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
80 void WebIDBObjectStoreImpl::deleteFunction(const WebIDBKey& key, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
IDBCallbacksProxy.cpp 40 #include "WebIDBKey.h"
79 m_callbacks->onSuccess(WebIDBKey(idbKey));
WebIDBCallbacksImpl.cpp 40 #include "WebIDBKey.h"
72 void WebIDBCallbacksImpl::onSuccess(const WebIDBKey& key)
AssertMatchingEnums.cpp 74 #include "WebIDBKey.h"
386 COMPILE_ASSERT_MATCHING_ENUM(WebIDBKey::NullType, IDBKey::NullType);
387 COMPILE_ASSERT_MATCHING_ENUM(WebIDBKey::StringType, IDBKey::StringType);
388 COMPILE_ASSERT_MATCHING_ENUM(WebIDBKey::DateType, IDBKey::DateType);
389 COMPILE_ASSERT_MATCHING_ENUM(WebIDBKey::NumberType, IDBKey::NumberType);
PlatformBridge.cpp 47 #include "WebIDBKey.h"
517 WebVector<WebIDBKey> webKeys;
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebIDBKey.h 40 class WebIDBKey {
43 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&, const WebSerializedScriptValue&, const WebIDBKeyPath&)
    [all...]
WebIDBCursor.h 32 #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(); }
WebIDBKeyRange.h 36 class WebIDBKey;
44 WebIDBKeyRange(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen) { assign(lower, upper, lowerOpen, upperOpen); }
46 WEBKIT_API WebIDBKey lower() const;
47 WEBKIT_API WebIDBKey upper() const;
52 WEBKIT_API void assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen);
WebIDBIndex.h 36 class WebIDBKey;
67 virtual void getObject(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
68 virtual void getKey(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
WebIDBCallbacks.h 36 class WebIDBKey;
51 virtual void onSuccess(const WebIDBKey&) { WEBKIT_ASSERT_NOT_REACHED(); }
WebIDBObjectStore.h 62 virtual void get(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
70 virtual void put(const WebSerializedScriptValue&, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
71 virtual void deleteFunction(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
WebKitClient.h 61 class WebIDBKey;
146 virtual void createIDBKeysFromSerializedValuesAndKeyPath(const WebVector<WebSerializedScriptValue>& values, const WebString& keyPath, WebVector<WebIDBKey>& keys) { }
147 virtual WebSerializedScriptValue injectIDBKeyIntoSerializedValue(const WebIDBKey& key, const WebSerializedScriptValue& value, const WebString& keyPath) { return WebSerializedScriptValue(); }
  /external/chromium/webkit/glue/
idb_bindings.h 11 class WebIDBKey;
23 std::vector<WebKit::WebIDBKey>* values);
26 const WebKit::WebIDBKey& key,
idb_bindings.cc 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h"
18 using WebKit::WebIDBKey;
25 std::vector<WebIDBKey>* values) {
34 values->push_back(WebIDBKey::createInvalid());
37 WebIDBKey::createFromValueAndKeyPath(*i, web_idb_key_path));
44 const WebIDBKey& key,
47 return WebIDBKey::injectIDBKeyIntoSerializedValue(
  /external/chromium/chrome/browser/
idbbindingutilities_browsertest.cc 30 std::vector<WebKit::WebIDBKey> values;
36 ASSERT_EQ(WebKit::WebIDBKey::StringType, values[0].type());
38 ASSERT_EQ(WebKit::WebIDBKey::InvalidType, values[1].type());
47 ASSERT_EQ(WebKit::WebIDBKey::InvalidType, values[0].type());
48 ASSERT_EQ(WebKit::WebIDBKey::InvalidType, values[1].type());
58 ASSERT_EQ(WebKit::WebIDBKey::InvalidType, values[0].type());
59 ASSERT_EQ(WebKit::WebIDBKey::InvalidType, values[1].type());
153 if (i->type() == WebKit::WebIDBKey::StringType) {
155 } else if (i->type() == WebKit::WebIDBKey::NumberType) {

Completed in 483 milliseconds