OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebIDBKeyRange
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebKit/chromium/src/
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
::WebIDBKeyRange(const PassRefPtr<IDBKeyRange>& value
[
all
...]
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&);
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)
WebIDBObjectStoreImpl.h
61
void openCursor(const
WebIDBKeyRange
&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&);
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/
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_API void assign(const
WebIDBKeyRange
&);
56
WebIDBKeyRange
(const WTF::PassRefPtr<WebCore::IDBKeyRange>&);
57
WebIDBKeyRange
& operator=(const WTF::PassRefPtr<WebCore::IDBKeyRange>&);
WebIDBIndex.h
37
class
WebIDBKeyRange
;
65
virtual void openObjectCursor(const
WebIDBKeyRange
&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
66
virtual void openKeyCursor(const
WebIDBKeyRange
&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
WebIDBObjectStore.h
38
class
WebIDBKeyRange
;
85
virtual void openCursor(const
WebIDBKeyRange
&, unsigned short direction, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
Completed in 474 milliseconds