Lines Matching refs:propertyName

241 bool JSObjectHasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName)
248 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData()));
251 JSValueRef JSObjectGetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
258 JSValue jsValue = jsObject->get(exec, propertyName->identifier(&exec->globalData()));
267 void JSObjectSetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSPropertyAttributes attributes, JSValueRef* exception)
273 Identifier name(propertyName->identifier(&exec->globalData()));
323 bool JSObjectDeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
330 bool result = jsObject->deleteProperty(exec, propertyName->identifier(&exec->globalData()));
367 JSValueRef JSObjectGetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName)
373 Identifier name(propertyName->identifier(&exec->globalData()));
381 bool JSObjectSetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value)
387 Identifier name(propertyName->identifier(&exec->globalData()));
399 bool JSObjectDeletePrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName)
404 Identifier name(propertyName->identifier(&exec->globalData()));
542 void JSPropertyNameAccumulatorAddName(JSPropertyNameAccumulatorRef array, JSStringRef propertyName)
546 propertyNames->add(propertyName->identifier(propertyNames->globalData()));