HomeSort by relevance Sort by last modified time
    Searched defs:IDBKeyRange (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.cpp 27 #include "modules/indexeddb/IDBKeyRange.h"
36 IDBKeyRange* IDBKeyRange::fromScriptValue(ExecutionContext* context, const ScriptValue& value, ExceptionState& exceptionState)
41 IDBKeyRange* range = scriptValueToIDBKeyRange(toIsolate(context), value);
51 return new IDBKeyRange(key, key, LowerBoundClosed, UpperBoundClosed);
54 IDBKeyRange::IDBKeyRange(IDBKey* lower, IDBKey* upper, LowerBoundType lowerType, UpperBoundType upperType)
62 void IDBKeyRange::trace(Visitor* visitor)
68 ScriptValue IDBKeyRange::lowerValue(ScriptState* scriptState) const
73 ScriptValue IDBKeyRange::upperValue(ScriptState* scriptState) cons
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKeyRange.cpp 30 #include "modules/indexeddb/IDBKeyRange.h"
45 m_private = IDBKeyRange::create(lower, upper, lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRange::LowerBoundClosed, upperOpen ? IDBKeyRange::UpperBoundOpen : IDBKeyRange::UpperBoundClosed);
77 WebIDBKeyRange::WebIDBKeyRange(IDBKeyRange* value)
82 WebIDBKeyRange& WebIDBKeyRange::operator=(IDBKeyRange* value)
88 WebIDBKeyRange::operator IDBKeyRange*() const

Completed in 33 milliseconds