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

1 2

  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBKey.h 40 class WebIDBKey {
43 WebIDBKey() { }
44 ~WebIDBKey() { reset(); }
46 BLINK_EXPORT static WebIDBKey createArray(const WebVector<WebIDBKey>&);
47 BLINK_EXPORT static WebIDBKey createBinary(const WebData&);
48 BLINK_EXPORT static WebIDBKey createString(const WebString&);
49 BLINK_EXPORT static WebIDBKey createDate(double);
50 BLINK_EXPORT static WebIDBKey createNumber(double);
51 BLINK_EXPORT static WebIDBKey createInvalid()
    [all...]
WebIDBCallbacks.h 40 class WebIDBKey;
51 virtual void onSuccess(WebIDBCursor*, const WebIDBKey&, const WebIDBKey& primaryKey, const WebData&) { BLINK_ASSERT_NOT_REACHED(); }
53 virtual void onSuccess(const WebIDBKey&) { BLINK_ASSERT_NOT_REACHED(); }
55 virtual void onSuccess(const WebData&, const WebIDBKey&, const WebIDBKeyPath&) { BLINK_ASSERT_NOT_REACHED(); }
58 virtual void onSuccess(const WebIDBKey&, const WebIDBKey& primaryKey, const WebData&) { BLINK_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 BLINK_EXPORT WebIDBKey lower() const;
47 BLINK_EXPORT WebIDBKey upper() const;
52 BLINK_EXPORT void assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen);
WebIDBCursor.h 31 #include "WebIDBKey.h"
49 virtual void continueFunction(const WebIDBKey&, const WebIDBKey& primaryKey, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
WebIDBDatabase.h 38 class WebIDBKey;
72 typedef WebVector<WebIDBKey> WebIndexKeys;
76 virtual void put(long long transactionId, long long objectStoreId, const WebData& value, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
77 virtual void setIndexKeys(long long transactionId, long long objectStoreId, const WebIDBKey&, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKey.cpp 29 #include "public/platform/WebIDBKey.h"
37 WebIDBKey WebIDBKey::createArray(const WebVector<WebIDBKey>& array)
39 WebIDBKey key;
44 WebIDBKey WebIDBKey::createBinary(const WebData& binary)
46 WebIDBKey key;
51 WebIDBKey WebIDBKey::createString(const WebString& string
    [all...]
WebIDBKeyRange.cpp 29 #include "public/platform/WebIDBKey.h"
42 void WebIDBKeyRange::assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen)
55 WebIDBKey WebIDBKeyRange::lower() const
58 return WebIDBKey::createInvalid();
62 WebIDBKey WebIDBKeyRange::upper() const
65 return WebIDBKey::createInvalid();
  /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_org/content/child/indexed_db/
indexed_db_key_builders.h 12 #include "third_party/WebKit/public/platform/WebIDBKey.h"
17 class WebIDBKey;
24 static IndexedDBKey Build(const blink::WebIDBKey& key);
29 static blink::WebIDBKey Build(const content::IndexedDBKey& key);
indexed_db_key_builders.cc 10 using blink::WebIDBKey;
23 static content::IndexedDBKey::KeyArray CopyKeyArray(const WebIDBKey& other) {
26 const WebVector<WebIDBKey>& array = other.array();
44 IndexedDBKey IndexedDBKeyBuilder::Build(const blink::WebIDBKey& key) {
69 WebIDBKey WebIDBKeyBuilder::Build(const IndexedDBKey& key) {
73 blink::WebVector<WebIDBKey> web_array(array.size());
77 return WebIDBKey::createArray(web_array);
80 return WebIDBKey::createBinary(key.binary());
82 return WebIDBKey::createString(key.string());
84 return WebIDBKey::createDate(key.date())
    [all...]
webidbcursor_impl.h 20 #include "third_party/WebKit/public/platform/WebIDBKey.h"
32 virtual void continueFunction(const blink::WebIDBKey& key,
34 virtual void continueFunction(const blink::WebIDBKey& key,
35 const blink::WebIDBKey& primary_key,
indexed_db_dispatcher_unittest.cc 20 using blink::WebIDBKey;
67 WebVector<WebVector<WebIDBKey> >());
webidbcursor_impl.cc 16 using blink::WebIDBKey;
55 void WebIDBCursorImpl::continueFunction(const WebIDBKey& key,
57 continueFunction(key, WebIDBKey::createNull(), callbacks_ptr);
60 void WebIDBCursorImpl::continueFunction(const WebIDBKey& key,
61 const WebIDBKey& primary_key,
webidbcursor_impl_unittest.cc 20 using blink::WebIDBKey;
73 virtual void onSuccess(const WebIDBKey& key,
74 const WebIDBKey& primaryKey,
89 WebIDBKey null_key;
webidbdatabase_impl.h 50 const blink::WebIDBKey&,
57 const blink::WebIDBKey&,
webidbdatabase_impl.cc 22 using blink::WebIDBKey;
111 const WebIDBKey& key,
132 const WebIDBKey& primary_key,
indexed_db_dispatcher.h 129 const blink::WebVector<blink::WebVector<blink::WebIDBKey> >&
indexed_db_dispatcher.cc 27 using blink::WebIDBKey;
329 const WebVector<WebVector<WebIDBKey> >& index_keys) {
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
WebIDBCallbacksImpl.h 43 class WebIDBKey;
60 virtual void onSuccess(blink::WebIDBCursor*, const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&);
62 virtual void onSuccess(const blink::WebIDBKey&);
64 virtual void onSuccess(const blink::WebData&, const blink::WebIDBKey&, const blink::WebIDBKeyPath&);
67 virtual void onSuccess(const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&);
WebIDBCallbacksImpl.cpp 40 #include "public/platform/WebIDBKey.h"
47 using blink::WebIDBKey;
81 void WebIDBCallbacksImpl::onSuccess(WebIDBCursor* cursor, const WebIDBKey& key, const WebIDBKey& primaryKey, const WebData& value)
91 void WebIDBCallbacksImpl::onSuccess(const WebIDBKey& key)
101 void WebIDBCallbacksImpl::onSuccess(const WebData& value, const WebIDBKey& key, const WebIDBKeyPath& keyPath)
116 void WebIDBCallbacksImpl::onSuccess(const WebIDBKey& key, const WebIDBKey& primaryKey, const WebData& value)
  /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) {
  /external/chromium_org/content/common/indexed_db/
indexed_db_key.h 17 class WebIDBKey;
indexed_db_key.cc 12 using blink::WebIDBKey;
  /external/chromium_org/content/browser/indexed_db/
indexed_db_dispatcher_host.cc 30 using blink::WebIDBKey;
    [all...]

Completed in 192 milliseconds

1 2