Home | History | Annotate | Download | only in js

Lines Matching defs:slot

55 bool JSHistory::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
72 slot.setCustom(this, nonCachingStaticBackFunctionGetter);
75 slot.setCustom(this, nonCachingStaticForwardFunctionGetter);
78 slot.setCustom(this, nonCachingStaticGoFunctionGetter);
85 slot.setCustom(this, objectToStringFunctionGetter);
91 slot.setUndefined();
109 PropertySlot slot;
113 slot.setCustom(this, nonCachingStaticBackFunctionGetter);
114 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
117 slot.setCustom(this, nonCachingStaticForwardFunctionGetter);
118 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
121 slot.setCustom(this, nonCachingStaticGoFunctionGetter);
122 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
129 PropertySlot slot;
130 slot.setCustom(this, objectToStringFunctionGetter);
131 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());