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

  /external/chromium_org/content/common/indexed_db/
indexed_db_key.cc 28 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()
63 IndexedDBKey::IndexedDBKey(WebIDBKeyType type)
68 IndexedDBKey::IndexedDBKey(double number, WebIDBKeyType type
    [all...]
indexed_db_key.h 23 class CONTENT_EXPORT IndexedDBKey {
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& other) const
    [all...]

Completed in 1294 milliseconds