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 31 #include "modules/indexeddb/IDBKey.h"
39 IDBKey* checkKeyFromValueAndKeyPathInternal(v8::Isolate* isolate, const ScriptValue& value, const String& keyPath)
52 bool injectKey(ScriptState* scriptState, IDBKey* key, ScriptValue& value, const String& keyPath)
60 void checkInjection(ScriptState* scriptState, IDBKey* key, ScriptValue& value, const String& keyPath)
64 IDBKey* extractedKey = checkKeyFromValueAndKeyPathInternal(scriptState->isolate(), value, keyPath);
68 void checkInjectionFails(ScriptState* scriptState, IDBKey* key, ScriptValue& value, const String& keyPath)
75 IDBKey* idbKey = checkKeyFromValueAndKeyPathInternal(isolate, value, keyPath);
76 ASSERT_TRUE(idbKey);
77 ASSERT_EQ(IDBKey::StringType, idbKey->type())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKey.h 37 class IDBKey : public GarbageCollectedFinalized<IDBKey> {
39 typedef HeapVector<Member<IDBKey> > KeyArray;
41 static IDBKey* createInvalid()
43 return new IDBKey();
46 static IDBKey* createNumber(double number)
48 return new IDBKey(NumberType, number);
51 static IDBKey* createBinary(PassRefPtr<SharedBuffer> binary)
53 return new IDBKey(binary);
56 static IDBKey* createString(const String& string
    [all...]
InspectorIndexedDBAgent.cpp 51 #include "modules/indexeddb/IDBKey.h"
315 static IDBKey* idbKeyFromInspectorObject(JSONObject* key)
317 IDBKey* idbKey;
332 idbKey = IDBKey::createNumber(number);
337 idbKey = IDBKey::createString(string);
342 idbKey = IDBKey::createDate(date)
    [all...]

Completed in 93 milliseconds