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

  /external/webkit/Source/JavaScriptCore/runtime/
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))
ObjectConstructor.cpp 204 if (description->getPropertySlot(exec, exec->propertyNames().enumerable, enumerableSlot)) {
211 if (description->getPropertySlot(exec, exec->propertyNames().configurable, configurableSlot)) {
219 if (description->getPropertySlot(exec, exec->propertyNames().value, valueSlot)) {
226 if (description->getPropertySlot(exec, exec->propertyNames().writable, writableSlot)) {
233 if (description->getPropertySlot(exec, exec->propertyNames().get, getSlot)) {
249 if (description->getPropertySlot(exec, exec->propertyNames().set, setSlot)) {
JSObject.h 101 bool getPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
102 bool getPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
517 ALWAYS_INLINE bool JSObject::getPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
530 ALWAYS_INLINE bool JSObject::getPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
546 if (const_cast<JSObject*>(this)->getPropertySlot(exec, propertyName, slot))
555 if (const_cast<JSObject*>(this)->getPropertySlot(exec, propertyName, slot))
    [all...]
ArrayPrototype.cpp 140 if (!obj->getPropertySlot(exec, index, slot))
689 if (!thisObj->getPropertySlot(exec, k, slot))
743 if (!thisObj->getPropertySlot(exec, k, slot))
807 if (!thisObj->getPropertySlot(exec, k, slot))
862 if (!thisObj->getPropertySlot(exec, k, slot))
    [all...]
Operations.h 475 if (isStrictPut && !base->getPropertySlot(callFrame, property, slot))
479 if (base->getPropertySlot(callFrame, property, slot))
JSObject.cpp 207 return const_cast<JSObject*>(this)->getPropertySlot(exec, propertyName, slot);
213 return const_cast<JSObject*>(this)->getPropertySlot(exec, propertyName, slot);
JSArray.cpp 787 if ((!p.isNull()) && (asObject(p)->getPropertySlot(exec, i, slot)))
836 if ((!p.isNull()) && (asObject(p)->getPropertySlot(exec, i, slot)))
    [all...]
  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.cpp 141 if (kjsObject->getPropertySlot(exec, propertyName, slot))
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 107 if (o->getPropertySlot(callFrame, ident, slot)) {
146 if (o->getPropertySlot(callFrame, ident, slot)) {
177 if (globalObject->getPropertySlot(callFrame, ident, slot)) {
224 if (o->getPropertySlot(callFrame, ident, slot)) {
252 if (globalObject->getPropertySlot(callFrame, ident, slot)) {
308 if (base->getPropertySlot(callFrame, ident, slot)) {
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowCustom.cpp 241 if (asObject(proto)->getPropertySlot(exec, propertyName, slot)) {

Completed in 204 milliseconds