Searched defs:WebIDBKeyRange (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBKeyRange.h38 class WebIDBKeyRange { class in namespace:blink
40 ~WebIDBKeyRange() { reset(); }
42 WebIDBKeyRange(const WebIDBKeyRange& keyRange) { assign(keyRange); } function in class:blink::WebIDBKeyRange
43 WebIDBKeyRange(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen) { assign(lower, upper, lowerOpen, upperOpen); } function in class:blink::WebIDBKeyRange
50 BLINK_EXPORT void assign(const WebIDBKeyRange&);
55 WebIDBKeyRange(IDBKeyRange*);
56 WebIDBKeyRange& operator=(IDBKeyRange*);
H A DWebIDBDatabase.h43 class WebIDBKeyRange;
66 virtual void get(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, bool keyOnly, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } argument
70 virtual void openCursor(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, WebIDBCursorDirection, bool keyOnly, WebIDBTaskType, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } argument
71 virtual void count(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } argument
72 virtual void deleteRange(long long transactionId, long long objectStoreId, const WebIDBKeyRange&, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebIDBKeyRange.cpp27 #include "public/platform/WebIDBKeyRange.h"
35 void WebIDBKeyRange::assign(const WebIDBKeyRange& other)
40 void WebIDBKeyRange::assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen)
48 void WebIDBKeyRange::reset()
53 WebIDBKey WebIDBKeyRange::lower() const
60 WebIDBKey WebIDBKeyRange::upper() const
67 bool WebIDBKeyRange::lowerOpen() const
72 bool WebIDBKeyRange::upperOpen() const
77 WebIDBKeyRange function in class:blink::WebIDBKeyRange
[all...]

Completed in 251 milliseconds