Home
last modified time | relevance | path

Searched defs:IndexDataValue (Results 1 – 6 of 6) sorted by relevance

/dports/www/firefox-esr/firefox-91.8.0/dom/indexedDB/
H A DActorsParentCommon.cpp492 IndexDataValue::IndexDataValue() : mIndexId(0), mUnique(false) { in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
497 IndexDataValue::IndexDataValue(IndexDataValue&& aOther) in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
508 IndexDataValue::IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
516 IndexDataValue::IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
/dports/www/firefox/firefox-99.0/dom/indexedDB/
H A DActorsParentCommon.cpp503 IndexDataValue::IndexDataValue() : mIndexId(0), mUnique(false) { in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
508 IndexDataValue::IndexDataValue(IndexDataValue&& aOther) in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
519 IndexDataValue::IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
527 IndexDataValue::IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
/dports/mail/thunderbird/thunderbird-91.8.0/dom/indexedDB/
H A DActorsParentCommon.cpp492 IndexDataValue::IndexDataValue() : mIndexId(0), mUnique(false) { in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
497 IndexDataValue::IndexDataValue(IndexDataValue&& aOther) in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
508 IndexDataValue::IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
516 IndexDataValue::IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, in IndexDataValue() function in mozilla::dom::indexedDB::IndexDataValue
/dports/lang/spidermonkey60/firefox-60.9.0/dom/indexedDB/
H A DActorsParent.cpp440 struct IndexDataValue final { struct
441 int64_t mIndexId;
442 Key mKey;
443 Key mSortKey;
444 bool mUnique;
446 IndexDataValue() : mIndexId(0), mUnique(false) { in IndexDataValue() argument
450 explicit IndexDataValue(const IndexDataValue& aOther) in IndexDataValue() function
460 IndexDataValue(int64_t aIndexId, bool aUnique, const Key& aKey) in IndexDataValue() argument
467 IndexDataValue(int64_t aIndexId, bool aUnique, const Key& aKey, in IndexDataValue() argument
475 ~IndexDataValue() { MOZ_COUNT_DTOR(IndexDataValue); } in ~IndexDataValue()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/indexedDB/
H A DActorsParent.cpp459 struct IndexDataValue final struct
461 int64_t mIndexId;
462 Key mKey;
463 Key mSortKey;
464 bool mUnique;
466 IndexDataValue() in IndexDataValue() function
474 IndexDataValue(const IndexDataValue& aOther) in IndexDataValue() function
485 IndexDataValue(int64_t aIndexId, bool aUnique, const Key& aKey) in IndexDataValue() function
495 IndexDataValue(int64_t aIndexId, bool aUnique, const Key& aKey, in IndexDataValue() argument
507 ~IndexDataValue() in ~IndexDataValue()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/dom/indexedDB/
H A DActorsParent.cpp451 struct IndexDataValue final { struct
452 IndexOrObjectStoreId mIndexId;
453 Key mPosition;
454 Key mLocaleAwarePosition;
455 bool mUnique;
457 IndexDataValue() : mIndexId(0), mUnique(false) { in IndexDataValue() function
461 explicit IndexDataValue(const IndexDataValue& aOther) in IndexDataValue() function
471 IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, in IndexDataValue() function
479 IndexDataValue(IndexOrObjectStoreId aIndexId, bool aUnique, in IndexDataValue() argument
502 bool operator<(const IndexDataValue& aOther) const { in operator <()