Home | History | Annotate | Download | only in API

Lines Matching full:propertyname

242 bool JSObjectHasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName)
249 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData()));
252 JSValueRef JSObjectGetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
259 JSValue jsValue = jsObject->get(exec, propertyName->identifier(&exec->globalData()));
268 void JSObjectSetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSPropertyAttributes attributes, JSValueRef* exception)
274 Identifier name(propertyName->identifier(&exec->globalData()));
324 bool JSObjectDeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
331 bool result = jsObject->deleteProperty(exec, propertyName->identifier(&exec->globalData()));
491 void JSPropertyNameAccumulatorAddName(JSPropertyNameAccumulatorRef array, JSStringRef propertyName)
495 propertyNames->add(propertyName->identifier(propertyNames->globalData()));