Lines Matching refs:m_pBase
54 : m_AttrPool(pParent), m_pBase(&pBase), m_Constraint(pConstraint) { in AttributeProxy()
62 return m_pBase->isWholeArchive(); in isWholeArchive()
69 return m_pBase->isAsNeeded(); in isAsNeeded()
76 return m_pBase->isAddNeeded(); in isAddNeeded()
83 return m_pBase->isStatic(); in isStatic()
90 return m_pBase->isDynamic(); in isDynamic()
109 Attribute* copy = new Attribute(*m_pBase); in setWholeArchive()
111 ReplaceOrRecord(m_AttrPool, m_pBase, copy); in setWholeArchive()
115 Attribute* copy = new Attribute(*m_pBase); in unsetWholeArchive()
117 ReplaceOrRecord(m_AttrPool, m_pBase, copy); in unsetWholeArchive()
121 Attribute* copy = new Attribute(*m_pBase); in setAsNeeded()
123 ReplaceOrRecord(m_AttrPool, m_pBase, copy); in setAsNeeded()
127 Attribute* copy = new Attribute(*m_pBase); in unsetAsNeeded()
129 ReplaceOrRecord(m_AttrPool, m_pBase, copy); in unsetAsNeeded()
133 Attribute* copy = new Attribute(*m_pBase); in setAddNeeded()
135 ReplaceOrRecord(m_AttrPool, m_pBase, copy); in setAddNeeded()
139 Attribute* copy = new Attribute(*m_pBase); in unsetAddNeeded()
141 ReplaceOrRecord(m_AttrPool, m_pBase, copy); in unsetAddNeeded()
145 Attribute* copy = new Attribute(*m_pBase); in setStatic()
147 ReplaceOrRecord(m_AttrPool, m_pBase, copy); in setStatic()
151 Attribute* copy = new Attribute(*m_pBase); in setDynamic()
153 ReplaceOrRecord(m_AttrPool, m_pBase, copy); in setDynamic()
157 m_pBase = pBase; in assign()