Searched refs:keyPathElement (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | IDBBindingUtilities.cpp | 237 static bool get(v8::Isolate* isolate, v8::Handle<v8::Value>& object, const String& keyPathElement, … in get() argument 239 if (object->IsString() && keyPathElement == "length") { in get() 244 return object->IsObject() && getValueFrom(v8String(isolate, keyPathElement), result); in get() 247 static bool canSet(v8::Handle<v8::Value>& object, const String& keyPathElement) in canSet() argument 252 static bool set(v8::Isolate* isolate, v8::Handle<v8::Value>& object, const String& keyPathElement, … in set() argument 254 …return canSet(object, keyPathElement) && setValue(object, v8String(isolate, keyPathElement), v8Val… in set() 280 const String& keyPathElement = keyPathElements[i]; in canInjectNthValueOnKeyPath() local 281 if (!get(isolate, parentValue, keyPathElement, currentValue)) in canInjectNthValueOnKeyPath() 282 return canSet(parentValue, keyPathElement); in canInjectNthValueOnKeyPath() 295 const String& keyPathElement = keyPathElements[i]; in ensureNthValueOnKeyPath() local [all …]
|