Searched refs:pIdx (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnostic.h34 DiagnosticEngine::ArgumentKind getArgKind(unsigned int pIdx) const {
35 assert(pIdx < getNumArgs() && "Argument index is out of range!");
36 return (DiagnosticEngine::ArgumentKind)m_Engine.state().ArgumentKinds[pIdx];
39 const std::string &getArgStdStr(unsigned int pIdx) const {
40 assert(getArgKind(pIdx) == DiagnosticEngine::ak_std_string &&
42 return m_Engine.state().ArgumentStrs[pIdx];
45 const char* getArgCStr(unsigned int pIdx) const {
46 assert(getArgKind(pIdx) == DiagnosticEngine::ak_c_string &&
48 return reinterpret_cast<const char*>(m_Engine.state().ArgumentVals[pIdx]);
51 int getArgSInt(unsigned int pIdx) cons
[all...]
H A DLDContext.h51 const LDSection* getSection(unsigned int pIdx) const;
52 LDSection* getSection(unsigned int pIdx);
63 const LDSymbol* getSymbol(unsigned int pIdx) const;
64 LDSymbol* getSymbol(unsigned int pIdx);
/frameworks/compile/mclinker/lib/LD/
H A DLDContext.cpp28 LDSection* LDContext::getSection(unsigned int pIdx) argument
30 if (pIdx >= m_SectionTable.size())
32 return m_SectionTable[pIdx];
35 const LDSection* LDContext::getSection(unsigned int pIdx) const
37 if (pIdx >= m_SectionTable.size())
39 return m_SectionTable[pIdx];
72 LDSymbol* LDContext::getSymbol(unsigned int pIdx) argument
74 if (pIdx >= m_SymTab.size())
76 return m_SymTab[pIdx];
79 const LDSymbol* LDContext::getSymbol(unsigned int pIdx) cons
[all...]

Completed in 133 milliseconds