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 27 static size_t CalculateArraySize(const IndexedDBKey::KeyArray& keys) {
35 static IndexedDBKey::KeyArray CopyKeyArray(const T& array) {
36 IndexedDBKey::KeyArray result;
39 result.push_back(IndexedDBKey(array[i]));
46 IndexedDBKey::IndexedDBKey()
52 IndexedDBKey::IndexedDBKey(WebIDBKeyType type)
57 IndexedDBKey::IndexedDBKey(double number, WebIDBKeyType type
    [all...]
indexed_db_key.h 22 class CONTENT_EXPORT IndexedDBKey {
24 typedef std::vector<IndexedDBKey> KeyArray;
26 IndexedDBKey(); // Defaults to WebKit::WebIDBKeyTypeInvalid.
27 IndexedDBKey(WebKit::WebIDBKeyType); // must be Null or Invalid
28 explicit IndexedDBKey(const KeyArray& array);
29 explicit IndexedDBKey(const string16& str);
30 IndexedDBKey(double number,
32 ~IndexedDBKey();
36 int Compare(const IndexedDBKey& other) const;
37 bool IsLessThan(const IndexedDBKey& other) const
    [all...]

Completed in 161 milliseconds