Searched refs:isSetOnFlags2 (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DJSTypeInfo.h94 bool overridesGetPropertyNames() const { return isSetOnFlags2(OverridesGetPropertyNames); }
95 bool prohibitsPropertyCaching() const { return isSetOnFlags2(ProhibitsPropertyCaching); }
96 bool hasImpureGetOwnPropertySlot() const { return isSetOnFlags2(HasImpureGetOwnPropertySlot); }
97 bool newImpurePropertyFiresWatchpoints() const { return isSetOnFlags2(NewImpurePropertyFiresWatchpoints); }
98 bool structureIsImmortal() const { return isSetOnFlags2(StructureIsImmortal); }
117 bool isSetOnFlags2(unsigned flag) const { ASSERT(flag >= (1 << 8)); return m_flags2 & (flag >> 8); } function in class:JSC::TypeInfo

Completed in 115 milliseconds