Lines Matching refs:propertyNames

70     putDirect(exec->globalData(), exec->globalData().propertyNames->name, jsString(exec, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | DontEnum);
71 putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(length), DontDelete | ReadOnly | DontEnum);
83 putDirect(exec->globalData(), exec->globalData().propertyNames->name, jsString(exec, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | DontEnum);
84 putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(length), DontDelete | ReadOnly | DontEnum);
94 putDirect(exec->globalData(), exec->globalData().propertyNames->name, jsString(exec, name.isNull() ? "" : name.ustring()), DontDelete | ReadOnly | DontEnum);
113 return asString(getDirect(exec->globalData(), exec->globalData().propertyNames->name))->tryGetValue();
118 JSValue displayName = getDirect(exec->globalData(), exec->globalData().propertyNames->displayName);
186 if (propertyName == exec->propertyNames().prototype) {
191 prototype->putDirect(exec->globalData(), exec->propertyNames().constructor, this, DontEnum);
192 putDirect(exec->globalData(), exec->propertyNames().prototype, prototype, DontDelete | DontEnum);
199 if (propertyName == exec->propertyNames().arguments) {
210 if (propertyName == exec->propertyNames().length) {
215 if (propertyName == exec->propertyNames().caller) {
233 if (propertyName == exec->propertyNames().prototype) {
239 if (propertyName == exec->propertyNames().arguments) {
247 if (propertyName == exec->propertyNames().length) {
252 if (propertyName == exec->propertyNames().caller) {
263 void JSFunction::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
268 getOwnPropertySlot(exec, exec->propertyNames().prototype, slot);
270 propertyNames.add(exec->propertyNames().arguments);
271 propertyNames.add(exec->propertyNames().callee);
272 propertyNames.add(exec->propertyNames().caller);
273 propertyNames.add(exec->propertyNames().length);
275 Base::getOwnPropertyNames(exec, propertyNames, mode);
284 if (propertyName == exec->propertyNames().prototype) {
291 if (propertyName == exec->propertyNames().arguments) {
295 if (propertyName == exec->propertyNames().caller) {
300 if (propertyName == exec->propertyNames().arguments || propertyName == exec->propertyNames().length)
309 if (propertyName == exec->propertyNames().arguments || propertyName == exec->propertyNames().length)