HomeSort by relevance Sort by last modified time
    Searched refs:getSection (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/llvm/lib/MC/
MCObjectWriter.cpp 52 const MCSection &SecA = DataA.getSymbol().AliasedSymbol().getSection();
53 const MCSection &SecB = FB.getParent()->getSection();
WinCOFFStreamer.cpp 208 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
234 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
284 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
292 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
MachObjectWriter.cpp 120 if (NextSD.getSection().isVirtualSection())
206 if (SD.getSection().isVirtualSection()) {
217 const MCSectionMachO &Section = cast<MCSectionMachO>(SD.getSection());
436 cast<MCSectionMachO>(it->SectionData->getSection());
452 cast<MCSectionMachO>(it->SectionData->getSection());
486 SectionIndexMap[&it->getSection()] = Index;
529 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
562 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
656 const MCSection &SecA = SA.getSection();
657 const MCSection &SecB = FB.getParent()->getSection();
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
LDContext.h 54 const LDSection* getSection(unsigned int pIdx) const;
55 LDSection* getSection(unsigned int pIdx);
57 const LDSection* getSection(const std::string& pName) const;
58 LDSection* getSection(const std::string& pName);
RelocData.h 65 const LDSection& getSection() const { return *m_pSection; }
66 LDSection& getSection() { return *m_pSection; }
SectionData.h 60 const LDSection& getSection() const { return *m_pSection; }
61 LDSection& getSection() { return *m_pSection; }
EhFrame.h 101 const LDSection& getSection() const;
102 LDSection& getSection();
  /frameworks/compile/mclinker/lib/LD/
LDContext.cpp 28 LDSection* LDContext::getSection(unsigned int pIdx)
35 const LDSection* LDContext::getSection(unsigned int pIdx) const
42 LDSection* LDContext::getSection(const std::string& pName)
52 const LDSection* LDContext::getSection(const std::string& pName) const
ELFReaderIf.cpp 58 if (NULL == pInput.context()->getSection(pShndx) ||
59 LDFileFormat::Ignore == pInput.context()->getSection(pShndx)->kind())
117 LDSection* sect_hdr = pInput.context()->getSection(pShndx);
EhFrame.cpp 80 const LDSection& EhFrame::getSection() const
86 LDSection& EhFrame::getSection()
ELFReader.cpp 58 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset();
59 uint32_t size = pSD.getSection().size();
109 if (NULL == pInput.context()->getSection(st_shndx))
131 section = pInput.context()->getSection(st_shndx);
408 info->section->setLink(pInput.context()->getSection(info->sh_link));
412 info->section->setLink(pInput.context()->getSection(info->sh_info));
480 const LDSection* dynamic_sect = pInput.context()->getSection(".dynamic");
567 uint64_t offset = pInput.fileOffset() + pSD.getSection().offset();
568 uint64_t size = pSD.getSection().size();
618 if (NULL == pInput.context()->getSection(st_shndx)
    [all...]
  /frameworks/compile/mclinker/lib/Core/
Module.cpp 37 LDSection* Module::getSection(const std::string& pName)
47 const LDSection* Module::getSection(const std::string& pName) const
IRBuilder.cpp 394 pSD.getSection().align());
395 pSD.getSection().setSize(pSD.getSection().size() + size);
410 pEhFrame.getSection().align());
411 pEhFrame.getSection().setSize(pEhFrame.getSection().size() + size);
419 pEhFrame.getSection().setSize(pEhFrame.getSection().size() + pFDE.size());
427 pEhFrame.getSection().setSize(pEhFrame.getSection().size() + pCIE.size())
    [all...]
  /frameworks/compile/mclinker/unittests/
SectionDataTest.cpp 47 EXPECT_TRUE(s->getSection().name() == "test" && \
48 s->getSection().kind() == LDFileFormat::Null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportPropertiesPage.java 71 mFieldsPart.getSection().setLayoutData(new ColumnLayoutData());
75 mLinksPart.getSection().setLayoutData(new ColumnLayoutData());
ExportFieldsPart.java 35 Section section = getSection();
  /frameworks/compile/mclinker/lib/Object/
ObjectBuilder.cpp 57 LDSection* target = m_Module.getSection(output_name);
107 uint32_t offset = pTo.getSection().size();
109 if (pFrom.getSection().align() > 1) {
111 align = new AlignFragment(pFrom.getSection().align(), // alignment
114 pFrom.getSection().align() - 1 // max bytes to emit
134 pTo.getSection().setSize(offset);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewPage.java 91 mOverviewPart.getSection().setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
97 exportPart.getSection().setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
101 mOverviewLinkPart.getSection().setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
ApplicationPage.java 90 mTooglePart.getSection().setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
93 mAttrPart.getSection().setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
  /external/llvm/include/llvm/MC/
MCSymbol.h 109 /// getSection - Get the section associated with a defined, non-absolute
111 const MCSection &getSection() const {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
ResizableDialog.java 168 if (settings.getSection(sectionName) == null) {
171 return settings.getSection(sectionName);
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 150 const MCSection &Section = SectionLabel->getSection();
154 assert((!Label->isInSection() || &Label->getSection() == &Section) &&
  /frameworks/compile/mclinker/include/mcld/
Module.h 122 LDSection* getSection(const std::string& pName);
123 const LDSection* getSection(const std::string& pName) const;
  /frameworks/compile/mclinker/lib/Fragment/
Relocation.cpp 87 Address sect_addr = m_TargetAddress.frag()->getParent()->getSection().addr();
95 return m_pSymInfo->outSymbol()->fragRef()->frag()->getParent()->getSection().addr();
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 235 TableOfContents.Section aSection = getSection(dexA.getTableOfContents());
236 TableOfContents.Section bSection = getSection(dexB.getTableOfContents());
237 getSection(contentsOut).off = out.getPosition();
291 getSection(contentsOut).size = outCount;
299 getSection(contentsOut).off = out.getPosition();
320 getSection(contentsOut).size = outCount;
324 TableOfContents.Section section = getSection(source.getTableOfContents());
339 abstract TableOfContents.Section getSection(TableOfContents tableOfContents);
377 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) {
399 @Override TableOfContents.Section getSection(TableOfContents tableOfContents)
    [all...]

Completed in 594 milliseconds

1 2 3 4 5