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)
63 void checkInjection(PassRefPtr<IDBKey> prpKey, ScriptValue& value, const String& keyPath)
65 RefPtr<IDBKey> key = prpKey;
68 RefPtr<IDBKey> extractedKey = checkKeyFromValueAndKeyPathInternal(value, keyPath);
72 void checkInjectionFails(PassRefPtr<IDBKey> key, ScriptValue& value, const String& keyPath
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKey.h 37 class IDBKey : public RefCounted<IDBKey> {
39 typedef Vector<RefPtr<IDBKey> > KeyArray;
41 static PassRefPtr<IDBKey> createInvalid()
43 return adoptRef(new IDBKey());
46 static PassRefPtr<IDBKey> createNumber(double number)
48 return adoptRef(new IDBKey(NumberType, number));
51 static PassRefPtr<IDBKey> createBinary(PassRefPtr<SharedBuffer> binary)
53 return adoptRef(new IDBKey(binary));
56 static PassRefPtr<IDBKey> createString(const String& string
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp 51 #include "modules/indexeddb/IDBKey.h"
313 static PassRefPtr<IDBKey> idbKeyFromInspectorObject(JSONObject* key)
315 RefPtr<IDBKey> idbKey;
330 idbKey = IDBKey::createNumber(number);
335 idbKey = IDBKey::createString(string);
340 idbKey = IDBKey::createDate(date)
    [all...]

Completed in 35 milliseconds