/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebIDBKeyRange.h | 43 …WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen) { assign(lower, upper, l… in WebIDBKeyRange() argument 47 BLINK_EXPORT bool lowerOpen() const; 51 …BLINK_EXPORT void assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool uppe…
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebIDBKeyRange.cpp | 40 void WebIDBKeyRange::assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool up… in assign() argument 45 …m_private = IDBKeyRange::create(lower, upper, lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRang… in assign() 67 bool WebIDBKeyRange::lowerOpen() const in lowerOpen() function in blink::WebIDBKeyRange 69 return m_private.get() && m_private->lowerOpen(); in lowerOpen()
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBKeyRange.cpp | 121 …ext, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen, bool upperOpen,… in bound() argument 134 if (upper->isEqual(lower) && (lowerOpen || upperOpen)) { in bound() 139 …return IDBKeyRange::create(lower, upper, lowerOpen ? LowerBoundOpen : LowerBoundClosed, upperOpen … in bound()
|
D | IDBKeyRange.h | 66 bool lowerOpen() const { return m_lowerType == LowerBoundOpen; } in lowerOpen() function 72 …utionContext*, const ScriptValue& lower, const ScriptValue& upper, bool lowerOpen, bool upperOpen,…
|
D | IDBKeyRange.idl | 31 readonly attribute boolean lowerOpen; 37 …eption] static IDBKeyRange bound(any lower, any upper, optional boolean lowerOpen = false, optiona…
|
D | InspectorIndexedDBAgent.cpp | 374 bool lowerOpen; in idbKeyRangeFromKeyRange() local 375 if (!keyRange->getBoolean("lowerOpen", &lowerOpen)) in idbKeyRangeFromKeyRange() 377 …IDBKeyRange::LowerBoundType lowerBoundType = lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRange… in idbKeyRangeFromKeyRange()
|
/external/chromium_org/content/common/indexed_db/ |
D | indexed_db_key_range.h | 26 bool lowerOpen() const { return lower_open_; } in lowerOpen() function
|
D | indexed_db_param_traits.cc | 201 WriteParam(m, p.lowerOpen()); in Write() 234 LogParam(p.lowerOpen(), l); in Log()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | IndexedDBModel.js | 112 keyRange.lowerOpen = idbKeyRange.lowerOpen;
|
/external/chromium_org/content/child/indexed_db/ |
D | indexed_db_key_builders.cc | 105 key_range.lowerOpen(), in Build()
|
/external/chromium_org/content/browser/indexed_db/ |
D | indexed_db_backing_store.cc | 3649 cursor_options->low_open = range.lowerOpen(); in ObjectStoreCursorOptions() 3728 cursor_options->low_open = range.lowerOpen(); in IndexCursorOptions()
|