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

  /external/webkit/Source/WebCore/storage/
IDBKey.cpp 27 #include "IDBKey.h"
33 IDBKey::IDBKey()
38 IDBKey::~IDBKey()
42 bool IDBKey::isLessThan(const IDBKey* other) const
65 bool IDBKey::isEqual(const IDBKey* other) const
IDBKey.h 37 class IDBKey : public ThreadSafeRefCounted<IDBKey> {
39 static PassRefPtr<IDBKey> createNull()
41 RefPtr<IDBKey> idbKey(new IDBKey());
42 idbKey->m_type = NullType;
43 return idbKey.release();
46 static PassRefPtr<IDBKey> createNumber(double number)
48 RefPtr<IDBKey> idbKey(new IDBKey())
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebIDBKey.cpp 34 #include "IDBKey.h"
98 m_private = IDBKey::createNull();
103 m_private = IDBKey::createString(string);
108 m_private = IDBKey::createDate(date);
113 m_private = IDBKey::createNumber(number);
148 WebIDBKey::WebIDBKey(const PassRefPtr<IDBKey>& value)
153 WebIDBKey& WebIDBKey::operator=(const PassRefPtr<IDBKey>& value)
159 WebIDBKey::operator PassRefPtr<IDBKey>() const

Completed in 301 milliseconds