Searched defs:IndexedDBKey (Results 1 - 3 of 3) sorted by last modified time

/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_fake_backing_store.cc84 const IndexedDBKey& key,
123 const IndexedDBKey&,
152 const IndexedDBKey&,
119 KeyExistsInObjectStore( Transaction*, int64 database_id, int64 object_store_id, const IndexedDBKey&, RecordIdentifier* found_record_identifier, bool* found) argument
147 PutIndexDataForRecord( Transaction*, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey&, const RecordIdentifier&) argument
/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_key.cc28 static size_t CalculateArraySize(const IndexedDBKey::KeyArray& keys) {
46 static IndexedDBKey::KeyArray CopyKeyArray(const T& array) {
47 IndexedDBKey::KeyArray result;
50 result.push_back(IndexedDBKey(array[i]));
57 IndexedDBKey::IndexedDBKey() function in class:content::IndexedDBKey
63 IndexedDBKey::IndexedDBKey(WebIDBKeyType type) function in class:content::IndexedDBKey
68 IndexedDBKey::IndexedDBKey(doubl function in class:content::IndexedDBKey
76 IndexedDBKey::IndexedDBKey(const KeyArray& array) function in class:content::IndexedDBKey
83 IndexedDBKey::IndexedDBKey(const std::string& binary) function in class:content::IndexedDBKey
89 IndexedDBKey::IndexedDBKey(const base::string16& string) function in class:content::IndexedDBKey
[all...]
H A Dindexed_db_key.h23 class CONTENT_EXPORT IndexedDBKey { class in namespace:content
25 typedef std::vector<IndexedDBKey> KeyArray;
27 IndexedDBKey(); // Defaults to blink::WebIDBKeyTypeInvalid.
28 explicit IndexedDBKey(blink::WebIDBKeyType); // must be Null or Invalid
29 explicit IndexedDBKey(const KeyArray& array);
30 explicit IndexedDBKey(const std::string& binary);
31 explicit IndexedDBKey(const base::string16& string);
32 IndexedDBKey(double number,
34 ~IndexedDBKey();
38 bool IsLessThan(const IndexedDBKey
[all...]

Completed in 125 milliseconds