HomeSort by relevance Sort by last modified time
    Searched refs:getPropertySlot (Results 1 - 10 of 10) sorted by null

  /external/webkit/JavaScriptCore/runtime/
ObjectConstructor.cpp 168 if (description->getPropertySlot(exec, exec->propertyNames().enumerable, enumerableSlot)) {
175 if (description->getPropertySlot(exec, exec->propertyNames().configurable, configurableSlot)) {
183 if (description->getPropertySlot(exec, exec->propertyNames().value, valueSlot)) {
190 if (description->getPropertySlot(exec, exec->propertyNames().writable, writableSlot)) {
197 if (description->getPropertySlot(exec, exec->propertyNames().get, getSlot)) {
213 if (description->getPropertySlot(exec, exec->propertyNames().set, setSlot)) {
JSCell.cpp 121 // It calls getPropertySlot, not getOwnPropertySlot.
124 if (!object->getPropertySlot(exec, identifier, slot))
133 // It calls getPropertySlot, not getOwnPropertySlot.
136 if (!object->getPropertySlot(exec, identifier, slot))
JSObject.h 97 bool getPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
98 bool getPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
385 ALWAYS_INLINE bool JSObject::getPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
398 ALWAYS_INLINE bool JSObject::getPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
414 if (const_cast<JSObject*>(this)->getPropertySlot(exec, propertyName, slot))
423 if (const_cast<JSObject*>(this)->getPropertySlot(exec, propertyName, slot))
599 if (!prototype->getPropertySlot(exec, propertyName, slot))
624 if (!prototype->getPropertySlot(exec, propertyName, slot))
ArrayPrototype.cpp 140 if (!obj->getPropertySlot(exec, index, slot))
618 if (!thisObj->getPropertySlot(exec, k, slot))
671 if (!thisObj->getPropertySlot(exec, k, slot))
730 if (!thisObj->getPropertySlot(exec, k, slot))
782 if (!thisObj->getPropertySlot(exec, k, slot))
830 if (!thisObj->getPropertySlot(exec, k, slot))
    [all...]
JSObject.cpp 191 return const_cast<JSObject*>(this)->getPropertySlot(exec, propertyName, slot);
197 return const_cast<JSObject*>(this)->getPropertySlot(exec, propertyName, slot);
Operations.h 404 if (next == end || base->getPropertySlot(callFrame, property, slot))
  /external/webkit/JavaScriptGlue/
UserObjectImp.cpp 146 if (kjsObject->getPropertySlot(exec, propertyName, slot))
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /external/webkit/WebCore/bindings/js/
JSDOMWindowCustom.cpp 261 if (asObject(proto)->getPropertySlot(exec, propertyName, slot)) {
    [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 107 if (o->getPropertySlot(callFrame, ident, slot)) {
140 if (o->getPropertySlot(callFrame, ident, slot)) {
170 if (globalObject->getPropertySlot(callFrame, ident, slot)) {
220 if (base->getPropertySlot(callFrame, ident, slot)) {
    [all...]

Completed in 160 milliseconds