Home | History | Annotate | Download | only in LD

Lines Matching full:resolveinfo

1 //===- ResolveInfo.h ------------------------------------------------------===//
22 /** \class ResolveInfo
23 * \brief ResolveInfo records the information about how to resolve a symbol.
37 class ResolveInfo
97 static ResolveInfo* Create(const key_type& pKey);
99 static void Destroy(ResolveInfo*& pInfo);
101 static ResolveInfo* Null();
131 void override(const ResolveInfo& pForm);
133 void overrideAttributes(const ResolveInfo& pFrom);
135 void overrideVisibility(const ResolveInfo& pFrom);
140 void setLink(const ResolveInfo* pTarget) {
141 m_Ptr.info_ptr = const_cast<ResolveInfo*>(pTarget);
189 ResolveInfo* link()
192 const ResolveInfo* link() const
245 ResolveInfo* info_ptr;
267 ResolveInfo();
268 ResolveInfo(const ResolveInfo& pCopy);
269 ResolveInfo& operator=(const ResolveInfo& pCopy);
270 ~ResolveInfo();