Searched defs:pOther (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/mclinker/include/mcld/ADT/
H A DFlags.h25 Flags(const Flags& pOther) argument
26 : m_Data(pOther.m_Data) {}
54 Flags& operator=(Flags pOther) { argument
55 m_Data = pOther.m_Data;
59 Flags operator^ (Flags pOther) const
60 { return Flags(m_Data^pOther.m_Data); }
62 Flags operator^ (Enum pOther) const
63 { return Flags(m_Data^pOther); }
65 Flags& operator^= (Flags pOther) { argument
66 m_Data ^= pOther
70 operator ^=(Enum pOther) argument
81 operator |=(Flags pOther) argument
86 operator |=(Enum pOther) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DEhFrame.cpp124 EhFrame& EhFrame::merge(EhFrame& pOther) argument
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
[all...]
H A DResolveInfo.cpp120 void ResolveInfo::setOther(uint32_t pOther) argument
122 setVisibility(static_cast<ResolveInfo::Visibility>(pOther & 0x3));

Completed in 120 milliseconds