OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IDBKeyRange
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.h
39
class
IDBKeyRange
: public ScriptWrappable, public RefCounted<
IDBKeyRange
> {
50
static PassRefPtr<
IDBKeyRange
> create(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, LowerBoundType lowerType, UpperBoundType upperType)
52
return adoptRef(new
IDBKeyRange
(lower, upper, lowerType, upperType));
54
static PassRefPtr<
IDBKeyRange
> create(PassRefPtr<IDBKey> prpKey);
55
~
IDBKeyRange
() { }
57
// Implement the
IDBKeyRange
IDL
66
static PassRefPtr<
IDBKeyRange
> only(ScriptExecutionContext*, const ScriptValue& key, ExceptionState&);
67
static PassRefPtr<
IDBKeyRange
> lowerBound(ScriptExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
68
static PassRefPtr<
IDBKeyRange
> upperBound(ScriptExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&)
[
all
...]
IDBKeyRange.cpp
27
#include "modules/indexeddb/
IDBKeyRange
.h"
38
PassRefPtr<
IDBKeyRange
>
IDBKeyRange
::create(PassRefPtr<IDBKey> prpKey)
41
return adoptRef(new
IDBKeyRange
(key, key, LowerBoundClosed, UpperBoundClosed));
44
IDBKeyRange
::
IDBKeyRange
(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, LowerBoundType lowerType, UpperBoundType upperType)
53
ScriptValue
IDBKeyRange
::lowerValue(ScriptExecutionContext* context) const
59
ScriptValue
IDBKeyRange
::upperValue(ScriptExecutionContext* context) const
65
PassRefPtr<
IDBKeyRange
>
IDBKeyRange
::only(PassRefPtr<IDBKey> prpKey, ExceptionState& es
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
WebIDBKeyRange.cpp
31
#include "modules/indexeddb/
IDBKeyRange
.h"
47
m_private =
IDBKeyRange
::create(lower, upper, lowerOpen ?
IDBKeyRange
::LowerBoundOpen :
IDBKeyRange
::LowerBoundClosed, upperOpen ?
IDBKeyRange
::UpperBoundOpen :
IDBKeyRange
::UpperBoundClosed);
79
WebIDBKeyRange::WebIDBKeyRange(const PassRefPtr<
IDBKeyRange
>& value)
84
WebIDBKeyRange& WebIDBKeyRange::operator=(const PassRefPtr<
IDBKeyRange
>& value)
90
WebIDBKeyRange::operator PassRefPtr<
IDBKeyRange
>() const
Completed in 248 milliseconds