HomeSort by relevance Sort by last modified time
    Searched refs:m_pSection (Results 1 - 12 of 12) sorted by null

  /frameworks/compile/mclinker/include/mcld/LD/
DebugString.h 28 : m_pSection(NULL) {}
49 { m_pSection = &pSection; }
52 const LDSection* getSection() const { return m_pSection; }
53 LDSection* getSection() { return m_pSection; }
57 LDSection* m_pSection;
RelocData.h 63 const LDSection& getSection() const { return *m_pSection; }
64 LDSection& getSection() { return *m_pSection; }
97 LDSection* m_pSection;
SectionData.h 54 const LDSection& getSection() const { return *m_pSection; }
55 LDSection& getSection() { return *m_pSection; }
84 LDSection* m_pSection;
EhFrame.h 239 LDSection* m_pSection;
  /frameworks/compile/mclinker/lib/LD/
SectionData.cpp 25 SectionData::SectionData() : m_pSection(NULL) {
28 SectionData::SectionData(LDSection& pSection) : m_pSection(&pSection) {
RelocData.cpp 24 RelocData::RelocData() : m_pSection(NULL) {
27 RelocData::RelocData(LDSection& pSection) : m_pSection(&pSection) {
EhFrame.cpp 92 EhFrame::EhFrame() : m_pSection(NULL), m_pSectionData(NULL) {
96 : m_pSection(&pSection), m_pSectionData(NULL) {
120 assert(m_pSection != NULL);
121 return *m_pSection;
125 assert(m_pSection != NULL);
126 return *m_pSection;
DebugString.cpp 63 m_pSection->setSize(size);
  /external/pdfium/core/fpdfdoc/
ctypeset.h 32 CSection* const m_pSection;
ctypeset.cpp 179 m_pSection(pSection) {}
185 if (m_pSection->m_LineArray.empty())
197 CLine* pLine = m_pSection->m_LineArray.front().get();
204 pdfium::CollectionSize<int32_t>(m_pSection->m_WordArray)) /
211 pdfium::CollectionSize<int32_t>(m_pSection->m_WordArray);
217 sz = pdfium::CollectionSize<int32_t>(m_pSection->m_WordArray);
223 if (pdfium::IndexInBounds(m_pSection->m_WordArray, w + 1)) {
224 CPVT_WordInfo* pNextWord = m_pSection->m_WordArray[w + 1].get();
228 CPVT_WordInfo* pWord = m_pSection->m_WordArray[w].get();
240 if (w != pdfium::CollectionSize<int32_t>(m_pSection->m_WordArray) - 1)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 44 const LDSection* getSection() const { return m_pSection; }
45 LDSection* getSection() { return m_pSection; }
58 LDSection* m_pSection;
91 const LDSection* getSection() const { return m_pSection; }
92 LDSection* getSection() { return m_pSection; }
94 void setSection(LDSection* pSection) { m_pSection = pSection; }
132 LDSection* m_pSection;
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 52 m_pSection = LDSection::Create(pName, LDFileFormat::TEXT, 0, 0);
53 SectionData* sd = SectionData::Create(*m_pSection);
54 m_pSection->setSectionData(sd);
64 m_pSection = LDSection::Create("", LDFileFormat::TEXT, 0, 0);
65 SectionData* sd = SectionData::Create(*m_pSection);
66 m_pSection->setSectionData(sd);
88 m_pSection = LDSection::Create(pName, LDFileFormat::TEXT, 0, 0);
89 SectionData* sd = SectionData::Create(*m_pSection);
90 m_pSection->setSectionData(sd);
100 m_pSection = LDSection::Create(m_Name, LDFileFormat::TEXT, 0, 0)
    [all...]

Completed in 121 milliseconds