Searched defs:SectionTable (Results 1 - 4 of 4) sorted by path

/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp2021 std::vector<std::string> SectionTable; local
2178 SectionTable.push_back(S);
2208 if (Record[5]-1 >= SectionTable.size())
2210 Section = SectionTable[Record[5]-1];
2266 if (Record[6]-1 >= SectionTable.size())
2268 Func->setSection(SectionTable[Record[6]-1]);
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp2315 std::vector<std::string> SectionTable; local
2446 SectionTable.push_back(S);
2476 if (Record[5]-1 >= SectionTable.size())
2478 Section = SectionTable[Record[5]-1];
2534 if (Record[6]-1 >= SectionTable.size())
2536 Func->setSection(SectionTable[Record[6]-1]);
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDContext.h34 typedef std::vector<LDSection*> SectionTable; typedef in class:mcld::LDContext
35 typedef SectionTable::iterator sect_iterator;
36 typedef SectionTable::const_iterator const_sect_iterator;
85 SectionTable m_SectionTable;
87 SectionTable m_RelocSections;
/frameworks/compile/mclinker/include/mcld/
H A DModule.h47 typedef std::vector<LDSection*> SectionTable; typedef in class:mcld::Module
48 typedef SectionTable::iterator iterator;
49 typedef SectionTable::const_iterator const_iterator;
106 const SectionTable& getSectionTable() const { return m_SectionTable; }
107 SectionTable& getSectionTable() { return m_SectionTable; }
170 SectionTable m_SectionTable;

Completed in 117 milliseconds