Lines Matching refs:propertyNames

67         unsigned length = min(get(exec, exec->propertyNames().length).toUInt32(exec), maxSize);
102 unsigned length = get(exec, exec->propertyNames().length).toUInt32(exec);
166 defineOwnProperty(exec, exec->propertyNames().caller, descriptor, false);
178 defineOwnProperty(exec, exec->propertyNames().callee, descriptor, false);
193 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) {
198 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee)) {
206 if (propertyName == exec->propertyNames().caller && d->isStrictMode)
224 if (propertyName == exec->propertyNames().length && LIKELY(!d->overrodeLength)) {
229 if (propertyName == exec->propertyNames().callee && LIKELY(!d->overrodeCallee)) {
237 if (propertyName == exec->propertyNames().caller && d->isStrictMode)
243 void Arguments::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
248 propertyNames.add(Identifier(exec, UString::number(i)));
250 propertyNames.add(exec->propertyNames().callee);
251 propertyNames.add(exec->propertyNames().length);
253 JSObject::getOwnPropertyNames(exec, propertyNames, mode);
282 if (propertyName == exec->propertyNames().length && !d->overrodeLength) {
288 if (propertyName == exec->propertyNames().callee && !d->overrodeCallee) {
297 if (propertyName == exec->propertyNames().caller && d->isStrictMode)
334 if (propertyName == exec->propertyNames().length && !d->overrodeLength) {
339 if (propertyName == exec->propertyNames().callee && !d->overrodeCallee) {
347 if (propertyName == exec->propertyNames().caller && !d->isStrictMode)