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) {
36 static IndexedDBKey::KeyArray CopyKeyArray(const T& array) {
37 IndexedDBKey::KeyArray result;
40 result.push_back(IndexedDBKey(array[i]));
47 IndexedDBKey::IndexedDBKey()
53 IndexedDBKey::IndexedDBKey(WebIDBKeyType type)
58 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 blink::WebIDBKeyTypeInvalid.
27 IndexedDBKey(blink::WebIDBKeyType); // must be Null or Invalid
28 explicit IndexedDBKey(const KeyArray& array);
29 explicit IndexedDBKey(const std::string& binary);
30 explicit IndexedDBKey(const base::string16& str);
31 IndexedDBKey(double number,
33 ~IndexedDBKey();
37 int Compare(const IndexedDBKey& other) const
    [all...]

Completed in 1789 milliseconds