• Home
  • Raw
  • Download

Lines Matching refs:propertyNameRef

113     RefPtr<OpaqueJSString> propertyNameRef;  in getOwnPropertySlot()  local
118 if (!propertyNameRef) in getOwnPropertySlot()
119 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in getOwnPropertySlot()
121 if (hasProperty(ctx, thisRef, propertyNameRef.get())) { in getOwnPropertySlot()
126 if (!propertyNameRef) in getOwnPropertySlot()
127 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in getOwnPropertySlot()
129 …if (JSValueRef value = getProperty(ctx, thisRef, propertyNameRef.get(), toRef(exec->exceptionSlot(… in getOwnPropertySlot()
164 RefPtr<OpaqueJSString> propertyNameRef; in put() local
169 if (!propertyNameRef) in put()
170 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in put()
172 … if (setProperty(ctx, thisRef, propertyNameRef.get(), valueRef, toRef(exec->exceptionSlot()))) in put()
181 if (!propertyNameRef) in put()
182 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in put()
184 … if (setProperty(ctx, thisRef, propertyNameRef.get(), valueRef, toRef(exec->exceptionSlot()))) in put()
209 RefPtr<OpaqueJSString> propertyNameRef; in deleteProperty() local
213 if (!propertyNameRef) in deleteProperty()
214 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in deleteProperty()
216 if (deleteProperty(ctx, thisRef, propertyNameRef.get(), toRef(exec->exceptionSlot()))) in deleteProperty()
437 RefPtr<OpaqueJSString> propertyNameRef; in staticValueGetter() local
443 if (!propertyNameRef) in staticValueGetter()
444 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in staticValueGetter()
446 …if (JSValueRef value = getProperty(toRef(exec), thisRef, propertyNameRef.get(), toRef(exec->except… in staticValueGetter()
484 RefPtr<OpaqueJSString> propertyNameRef; in callbackGetter() local
488 if (!propertyNameRef) in callbackGetter()
489 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in callbackGetter()
491 …if (JSValueRef value = getProperty(toRef(exec), thisRef, propertyNameRef.get(), toRef(exec->except… in callbackGetter()