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 31 CSection* const m_pSection;
ctypeset.cpp 177 m_pSection(pSection) {}
182 ASSERT(m_pSection);
193 if (CLine* pLine = m_pSection->m_LineArray.GetAt(0)) {
195 y += m_pVT->GetLineLeading(m_pSection->m_SecInfo);
198 switch (m_pVT->GetAlignment(m_pSection->m_SecInfo)) {
203 nStart = (m_pVT->m_nCharArray - m_pSection->m_WordArray.GetSize()) / 2;
208 nStart = m_pVT->m_nCharArray - m_pSection->m_WordArray.GetSize();
213 for (int32_t w = 0, sz = m_pSection->m_WordArray.GetSize(); w < sz; w++) {
218 if (CPVT_WordInfo* pNextWord = m_pSection->m_WordArray.GetAt(w + 1)) {
222 if (CPVT_WordInfo* pWord = m_pSection->m_WordArray.GetAt(w))
    [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 296 milliseconds