Searched refs:WebIDBKeyRange (Results 1 - 8 of 8) sorted by relevance
/external/webkit/Source/WebKit/chromium/src/ |
H A D | WebIDBKeyRange.cpp | 27 #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...] |
H A D | WebIDBIndexImpl.h | 51 virtual void openObjectCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&); 52 virtual void openKeyCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&);
|
H A D | WebIDBIndexImpl.cpp | 36 #include "WebIDBKeyRange.h" 71 void WebIDBIndexImpl::openObjectCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec) 76 void WebIDBIndexImpl::openKeyCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
|
H A D | WebIDBObjectStoreImpl.h | 61 void openCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&);
|
H A D | WebIDBObjectStoreImpl.cpp | 38 #include "WebIDBKeyRange.h" 111 void WebIDBObjectStoreImpl::openCursor(const WebIDBKeyRange& keyRange, unsigned short direction, WebIDBCallbacks* callbacks, const WebIDBTransaction& transaction, WebExceptionCode& ec)
|
/external/webkit/Source/WebKit/chromium/public/ |
H A D | WebIDBKeyRange.h | 39 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 D | WebIDBIndex.h | 37 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 D | WebIDBObjectStore.h | 38 class WebIDBKeyRange; 85 virtual void openCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
|
Completed in 84 milliseconds