Lines Matching full:cell
274 inline JSObject* asObject(JSCell* cell)
276 ASSERT(cell->isObject());
277 return static_cast<JSObject*>(cell);
603 JSCell* cell = asCell();
605 if (cell->fastGetOwnPropertySlot(exec, propertyName, slot))
607 JSValue prototype = asObject(cell)->prototype();
610 cell = asObject(prototype);
628 JSCell* cell = const_cast<JSCell*>(asCell());
630 if (cell->getOwnPropertySlot(exec, propertyName, slot))
632 JSValue prototype = asObject(cell)->prototype();
635 cell = prototype.asCell();