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

/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBKeyRange.h39 class WebIDBKeyRange { class in namespace:WebKit
41 ~WebIDBKeyRange() { reset(); }
43 WebIDBKeyRange(const WebIDBKeyRange& keyRange) { assign(keyRange); } function in class:WebKit::WebIDBKeyRange
44 WebIDBKeyRange(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen) { assign(lower, upper, lowerOpen, upperOpen); } function in class:WebKit::WebIDBKeyRange
51 WEBKIT_API void assign(const WebIDBKeyRange&);
56 WebIDBKeyRange(const WTF::PassRefPtr<WebCore::IDBKeyRange>&);
57 WebIDBKeyRange& operator=(const WTF::PassRefPtr<WebCore::IDBKeyRange>&);
H A DWebIDBIndex.h37 class WebIDBKeyRange;
65 virtual void openObjectCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
66 virtual void openKeyCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
H A DWebIDBObjectStore.h38 class WebIDBKeyRange;
85 virtual void openCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
/external/webkit/Source/WebKit/chromium/src/
H A DWebIDBKeyRange.cpp27 #include "WebIDBKeyRange.h"
39 void WebIDBKeyRange::assign(const WebIDBKeyRange& other)
44 void WebIDBKeyRange::assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen)
52 void WebIDBKeyRange::reset()
57 WebIDBKey WebIDBKeyRange::lower() const
64 WebIDBKey WebIDBKeyRange::upper() const
71 bool WebIDBKeyRange::lowerOpen() const
76 bool WebIDBKeyRange::upperOpen() const
81 WebIDBKeyRange function in class:WebKit::WebIDBKeyRange
[all...]

Completed in 89 milliseconds