Home | History | Annotate | Download | only in runtime

Lines Matching refs:m_attributes

41     return !(m_attributes & ReadOnly);
46 return !(m_attributes & DontEnum);
51 return !(m_attributes & DontDelete);
72 m_attributes = ReadOnly | DontDelete | DontEnum;
90 m_attributes = attributes;
97 m_attributes &= ~ReadOnly;
108 m_attributes = attributes;
111 m_attributes &= ~ReadOnly;
118 m_attributes &= ~ReadOnly;
120 m_attributes |= ReadOnly;
127 m_attributes &= ~DontEnum;
129 m_attributes |= DontEnum;
136 m_attributes &= ~DontDelete;
138 m_attributes |= DontDelete;
145 m_attributes |= Setter;
146 m_attributes &= ~ReadOnly;
152 m_attributes |= Getter;
153 m_attributes &= ~ReadOnly;
170 unsigned mismatch = other.m_attributes ^ m_attributes;
183 unsigned mismatch = other.m_attributes ^ m_attributes;
185 unsigned newAttributes = m_attributes & defaultAttributes;