Lines Matching refs:pIdx
28 LDSection* LDContext::getSection(unsigned int pIdx) { in getSection() argument
29 if (pIdx >= m_SectionTable.size()) in getSection()
31 return m_SectionTable[pIdx]; in getSection()
34 const LDSection* LDContext::getSection(unsigned int pIdx) const { in getSection()
35 if (pIdx >= m_SectionTable.size()) in getSection()
37 return m_SectionTable[pIdx]; in getSection()
67 LDSymbol* LDContext::getSymbol(unsigned int pIdx) { in getSymbol() argument
68 if (pIdx >= m_SymTab.size()) in getSymbol()
70 return m_SymTab[pIdx]; in getSymbol()
73 const LDSymbol* LDContext::getSymbol(unsigned int pIdx) const { in getSymbol()
74 if (pIdx >= m_SymTab.size()) in getSymbol()
76 return m_SymTab[pIdx]; in getSymbol()