HomeSort by relevance Sort by last modified time
    Searched full:m_slot (Results 1 - 1 of 1) sorted by null

  /external/webkit/Source/JavaScriptCore/heap/
Handle.h 56 bool operator!() const { return !m_slot || !*m_slot; }
60 operator UnspecifiedBoolType*() const { return (m_slot && *m_slot) ? reinterpret_cast<UnspecifiedBoolType*>(1) : 0; }
64 : m_slot(slot)
68 void swap(HandleBase& other) { std::swap(m_slot, other.m_slot); }
70 HandleSlot slot() const { return m_slot; }
73 m_slot = slot;
77 HandleSlot m_slot; member in class:JSC::HandleBase
    [all...]

Completed in 203 milliseconds