Home
last modified time | relevance | path

Searched refs:m_SectionList (Results 1 – 2 of 2) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
DELFSegment.h43 iterator begin() { return m_SectionList.begin(); } in begin()
44 const_iterator begin() const { return m_SectionList.begin(); } in begin()
45 iterator end() { return m_SectionList.end(); } in end()
46 const_iterator end() const { return m_SectionList.end(); } in end()
48 reverse_iterator rbegin() { return m_SectionList.rbegin(); } in rbegin()
49 const_reverse_iterator rbegin() const { return m_SectionList.rbegin(); } in rbegin()
50 reverse_iterator rend() { return m_SectionList.rend(); } in rend()
51 const_reverse_iterator rend() const { return m_SectionList.rend(); } in rend()
53 LDSection* front() { return m_SectionList.front(); } in front()
54 const LDSection* front() const { return m_SectionList.front(); } in front()
[all …]
/frameworks/compile/mclinker/lib/LD/
DELFSegment.cpp74 return m_SectionList.insert(pPos, pSection); in insert()
81 m_SectionList.push_back(pSection); in append()