Home | History | Annotate | Download | only in LD

Lines Matching refs:pOther

124 EhFrame& EhFrame::merge(EhFrame& pOther)
126 ObjectBuilder::MoveSectionData(*pOther.getSectionData(), *m_pSectionData);
128 m_CIEs.reserve(pOther.numOfCIEs() + m_CIEs.size());
129 for (cie_iterator cie = pOther.cie_begin(); cie != pOther.cie_end(); ++cie)
132 m_FDEs.reserve(pOther.numOfFDEs() + m_FDEs.size());
133 for (fde_iterator fde = pOther.fde_begin(); fde != pOther.fde_end(); ++fde)
136 pOther.m_CIEs.clear();
137 pOther.m_FDEs.clear();