Searched defs:JSCell (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DJSCell.h41 // If WTF_MAKE_NONCOPYABLE is applied to JSCell we end up with a bunch of
42 // undefined references to the JSCell copy constructor and assignment operator
52 class JSCell : MSVCBugWorkaround { class in namespace:JSC
54 class JSCell {
55 WTF_MAKE_NONCOPYABLE(JSCell);
78 explicit JSCell(VPtrStealingHackType) { } function in class:JSC::JSCell
79 JSCell(JSGlobalData&, Structure*);
80 virtual ~JSCell();
146 return OBJECT_OFFSETOF(JSCell, m_structure);
165 inline JSCell function in class:JSC::JSCell
[all...]
H A DWriteBarrier.h32 class JSCell;
35 inline void writeBarrier(JSGlobalData&, const JSCell*, JSValue) argument
39 inline void writeBarrier(JSGlobalData&, const JSCell*, JSCell*) argument
58 void set(JSGlobalData& globalData, const JSCell* owner, T* value)
60 this->m_cell = reinterpret_cast<JSCell*>(value);
90 JSCell** slot() { return &m_cell; }
99 this->m_cell = reinterpret_cast<JSCell*>(value);
106 JSCell* m_cell;
111 void set(JSGlobalData& globalData, const JSCell* owne
[all...]

Completed in 626 milliseconds