Home | History | Annotate | Download | only in JavaScriptGlue

Lines Matching refs:propertyName

101                 CFStringRef propertyName = (CFStringRef)CFArrayGetValueAtIndex(cfPropertyNames, i);
102 propertyNames.add(CFStringToIdentifier(propertyName, exec));
110 JSValue UserObjectImp::userObjectGetter(ExecState*, JSValue slotBase, const Identifier& propertyName)
116 CFStringRef cfPropName = IdentifierToCFString(propertyName);
125 bool UserObjectImp::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot)
130 CFStringRef cfPropName = IdentifierToCFString(propertyName);
141 if (kjsObject->getPropertySlot(exec, propertyName, slot))
145 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
148 void UserObjectImp::put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&)
153 CFStringRef cfPropName = IdentifierToCFString(propertyName);