• Home
  • Raw
  • Download

Lines Matching refs:keyPath

60 …tr<IDBKey> checkKeyFromValueAndKeyPathInternal(SerializedScriptValue* value, const String& keyPath)  in checkKeyFromValueAndKeyPathInternal()  argument
64 IDBParseKeyPath(keyPath, idbKeyPath, parseError); in checkKeyFromValueAndKeyPathInternal()
69 void checkKeyPathNullValue(SerializedScriptValue* value, const String& keyPath) in checkKeyPathNullValue() argument
71 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); in checkKeyPathNullValue()
75 …> injectKey(PassRefPtr<IDBKey> key, PassRefPtr<SerializedScriptValue> value, const String& keyPath) in injectKey() argument
79 IDBParseKeyPath(keyPath, idbKeyPath, parseError); in injectKey()
84 …njection(PassRefPtr<IDBKey> prpKey, PassRefPtr<SerializedScriptValue> value, const String& keyPath) in checkInjection() argument
87 RefPtr<SerializedScriptValue> newValue = injectKey(key, value, keyPath); in checkInjection()
89 RefPtr<IDBKey> extractedKey = checkKeyFromValueAndKeyPathInternal(newValue.get(), keyPath); in checkInjection()
93 …ectionFails(PassRefPtr<IDBKey> key, PassRefPtr<SerializedScriptValue> value, const String& keyPath) in checkInjectionFails() argument
95 EXPECT_FALSE(injectKey(key, value, keyPath)); in checkInjectionFails()
98 void checkKeyPathStringValue(SerializedScriptValue* value, const String& keyPath, const String& exp… in checkKeyPathStringValue() argument
100 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); in checkKeyPathStringValue()
106 void checkKeyPathNumberValue(SerializedScriptValue* value, const String& keyPath, int expected) in checkKeyPathNumberValue() argument
108 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); in checkKeyPathNumberValue()