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

  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKeyRange.cpp 27 #include "public/platform/WebIDBKeyRange.h"
37 void WebIDBKeyRange::assign(const WebIDBKeyRange& other)
42 void WebIDBKeyRange::assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen)
50 void WebIDBKeyRange::reset()
55 WebIDBKey WebIDBKeyRange::lower() const
62 WebIDBKey WebIDBKeyRange::upper() const
69 bool WebIDBKeyRange::lowerOpen() const
74 bool WebIDBKeyRange::upperOpen() const
79 WebIDBKeyRange::WebIDBKeyRange(const PassRefPtr<IDBKeyRange>& value
    [all...]
webkit.target.darwin-arm.mk 184 third_party/WebKit/Source/web/WebIDBKeyRange.cpp \
webkit.target.darwin-mips.mk 184 third_party/WebKit/Source/web/WebIDBKeyRange.cpp \
webkit.target.darwin-x86.mk 184 third_party/WebKit/Source/web/WebIDBKeyRange.cpp \
webkit.target.linux-arm.mk 184 third_party/WebKit/Source/web/WebIDBKeyRange.cpp \
webkit.target.linux-mips.mk 184 third_party/WebKit/Source/web/WebIDBKeyRange.cpp \
webkit.target.linux-x86.mk 184 third_party/WebKit/Source/web/WebIDBKeyRange.cpp \
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBKeyRange.h 39 class WebIDBKeyRange {
41 ~WebIDBKeyRange() { reset(); }
43 WebIDBKeyRange(const WebIDBKeyRange& keyRange) { assign(keyRange); }
44 WebIDBKeyRange(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen) { assign(lower, upper, lowerOpen, upperOpen); }
51 WEBKIT_EXPORT void assign(const WebIDBKeyRange&);
56 WebIDBKeyRange(const WTF::PassRefPtr<WebCore::IDBKeyRange>&);
57 WebIDBKeyRange& operator=(const WTF::PassRefPtr<WebCore::IDBKeyRange>&);
WebIDBDatabase.h 40 class WebIDBKeyRange;
72 virtual void get(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, bool keyOnly, WebIDBCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
77 virtual void openCursor(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, unsigned short direction, bool keyOnly, TaskType, WebIDBCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
78 virtual void count(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, WebIDBCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
79 virtual void deleteRange(long long transactionId, long long objectStoreId, const WebIDBKeyRange&, WebIDBCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/chromium_org/content/child/indexed_db/
indexed_db_key_builders.h 14 #include "third_party/WebKit/public/platform/WebIDBKeyRange.h"
34 static IndexedDBKeyRange Build(const WebKit::WebIDBKeyRange& key_range);
proxy_webidbdatabase_impl.h 47 const WebKit::WebIDBKeyRange&,
69 const WebKit::WebIDBKeyRange&,
77 const WebKit::WebIDBKeyRange&,
81 const WebKit::WebIDBKeyRange&,
proxy_webidbdatabase_impl.cc 24 using WebKit::WebIDBKeyRange;
101 const WebIDBKeyRange& key_range,
178 const WebIDBKeyRange& key_range,
201 const WebIDBKeyRange& key_range,
217 const WebIDBKeyRange& key_range,
indexed_db_key_builders.cc 11 using WebKit::WebIDBKeyRange;
93 const WebIDBKeyRange& key_range) {

Completed in 254 milliseconds