Searched refs:keyPathElement (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | IDBBindingUtilities.cpp | 216 static bool get(v8::Handle<v8::Value>& object, const String& keyPathElement, v8::Handle<v8::Value>&… in get() argument 218 if (object->IsString() && keyPathElement == "length") { in get() 223 return object->IsObject() && getValueFrom(v8String(isolate, keyPathElement), result); in get() 226 static bool canSet(v8::Handle<v8::Value>& object, const String& keyPathElement) in canSet() argument 231 static bool set(v8::Handle<v8::Value>& object, const String& keyPathElement, const v8::Handle<v8::V… in set() argument 233 …return canSet(object, keyPathElement) && setValue(object, v8String(isolate, keyPathElement), v8Val… in set() 259 const String& keyPathElement = keyPathElements[i]; in canInjectNthValueOnKeyPath() local 260 if (!get(parentValue, keyPathElement, currentValue, isolate)) in canInjectNthValueOnKeyPath() 261 return canSet(parentValue, keyPathElement); in canInjectNthValueOnKeyPath() 274 const String& keyPathElement = keyPathElements[i]; in ensureNthValueOnKeyPath() local [all …]
|