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/bindings/v8/
IDBBindingUtilitiesTest.cpp 32 #include "modules/indexeddb/IDBKey.h"
41 PassRefPtr<IDBKey> checkKeyFromValueAndKeyPathInternal(const ScriptValue& value, const String& keyPath)
51 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath);
52 ASSERT_FALSE(idbKey.get());
55 bool injectKey(PassRefPtr<IDBKey> key, ScriptValue& value, const String& keyPath)
62 void checkInjection(PassRefPtr<IDBKey> prpKey, ScriptValue& value, const String& keyPath)
64 RefPtr<IDBKey> key = prpKey;
67 RefPtr<IDBKey> extractedKey = checkKeyFromValueAndKeyPathInternal(value, keyPath);
71 void checkInjectionFails(PassRefPtr<IDBKey> key, ScriptValue& value, const String& keyPath
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
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/core/inspector/
InspectorIndexedDBAgent.cpp 52 #include "modules/indexeddb/IDBKey.h"
323 static PassRefPtr<IDBKey> idbKeyFromInspectorObject(JSONObject* key)
325 RefPtr<IDBKey> idbKey;
340 idbKey = IDBKey::createNumber(number);
345 idbKey = IDBKey::createString(string);
350 idbKey = IDBKey::createDate(date)
    [all...]

Completed in 74 milliseconds