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

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKey.cpp 27 #include "modules/indexeddb/IDBKey.h"
31 IDBKey::~IDBKey()
35 bool IDBKey::isValid() const
50 int IDBKey::compare(const IDBKey* other) const
83 bool IDBKey::isLessThan(const IDBKey* other) const
89 bool IDBKey::isEqual(const IDBKey* other) cons
    [all...]
IDBKey.h 36 class IDBKey : public RefCounted<IDBKey> {
38 typedef Vector<RefPtr<IDBKey> > KeyArray;
40 static PassRefPtr<IDBKey> createInvalid()
42 return adoptRef(new IDBKey());
45 static PassRefPtr<IDBKey> createNumber(double number)
47 return adoptRef(new IDBKey(NumberType, number));
50 static PassRefPtr<IDBKey> createString(const String& string)
52 return adoptRef(new IDBKey(string));
55 static PassRefPtr<IDBKey> createDate(double date
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKey.cpp 31 #include "modules/indexeddb/IDBKey.h"
84 static PassRefPtr<IDBKey> convertFromWebIDBKeyArray(const WebVector<WebIDBKey>& array)
86 IDBKey::KeyArray keys;
94 keys.append(IDBKey::createString(array[i].string()));
97 keys.append(IDBKey::createDate(array[i].date()));
100 keys.append(IDBKey::createNumber(array[i].number()));
103 keys.append(IDBKey::createInvalid());
111 return IDBKey::createArray(keys);
114 static void convertToWebIDBKeyArray(const IDBKey::KeyArray& array, WebVector<WebIDBKey>& result)
119 RefPtr<IDBKey> key = array[i]
    [all...]

Completed in 543 milliseconds