Lines Matching full:propertyname
106 CFStringRef propertyName = (CFStringRef)CFArrayGetValueAtIndex(cfPropertyNames, i);
107 propertyNames.add(CFStringToIdentifier(propertyName, exec));
115 JSValue UserObjectImp::userObjectGetter(ExecState*, const Identifier& propertyName, const PropertySlot& slot)
121 CFStringRef cfPropName = IdentifierToCFString(propertyName);
130 bool UserObjectImp::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot)
135 CFStringRef cfPropName = IdentifierToCFString(propertyName);
146 if (kjsObject->getPropertySlot(exec, propertyName, slot))
150 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
153 void UserObjectImp::put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&)
158 CFStringRef cfPropName = IdentifierToCFString(propertyName);