HomeSort by relevance Sort by last modified time
    Searched refs:Section (Results 76 - 100 of 216) sorted by null

1 2 34 5 6 7 8 9

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
UniformItemSection.java 25 * A section of a {@code .dex} file which consists of a sequence of
29 public abstract class UniformItemSection extends Section {
EncodedArrayItem.java 101 protected void place0(Section addedTo, int offset) {
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedArrayItem.java 92 protected void place0(Section addedTo, int offset) {
UniformItemSection.java 25 * A section of a {@code .dex} file which consists of a sequence of
29 public abstract class UniformItemSection extends Section {
  /dalvik/dx/src/com/android/dx/io/
FieldId.java 56 public void writeTo(DexBuffer.Section out) {
MethodId.java 56 public void writeTo(DexBuffer.Section out) {
ProtoId.java 53 public void writeTo(DexBuffer.Section out) {
DexBuffer.java 200 public Section open(int position) {
204 return new Section(position);
207 public Section appendSection(int maxByteCount, String name) {
209 Section result = new Section(name, length, limit);
261 private DexBuffer.Section in = open(tableOfContents.classDefs.off);
305 public final class Section implements ByteInput, ByteOutput {
311 private Section(String name, int position, int limit) {
317 private Section(int position) {
318 this("section", position, data.length)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
EncodedArrayItem.java 92 protected void place0(Section addedTo, int offset) {
UniformItemSection.java 25 * A section of a {@code .dex} file which consists of a sequence of
29 public abstract class UniformItemSection extends Section {
  /external/llvm/include/llvm/IR/
GlobalValue.h 73 std::string Section; // Section to emit this into, empty mean default
95 bool hasSection() const { return !Section.empty(); }
96 const std::string &getSection() const { return Section; }
97 void setSection(StringRef S) { Section = S; }
  /external/llvm/lib/Object/
Object.cpp 30 // ObjectFile Section iterators
115 // Section Relocation iterators
116 LLVMRelocationIteratorRef LLVMGetRelocations(LLVMSectionIteratorRef Section) {
117 relocation_iterator SI = (*unwrap(Section))->begin_relocations();
125 LLVMBool LLVMIsRelocationIteratorAtEnd(LLVMSectionIteratorRef Section,
127 return (*unwrap(SI) == (*unwrap(Section))->end_relocations()) ? 1 : 0;
COFFObjectFile.cpp 79 // Verify that the section points to a valid entry in the section table.
82 report_fatal_error("Section was outside of section table.");
86 "Section did not point to the beginning of a section");
110 const coff_section *Section = NULL;
111 if (error_code ec = getSection(symb->SectionNumber, Section))
118 else if (Section)
119 Result = Section->PointerToRawData + symb->Value
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBuildAttrs.h 21 // AttrType (below) entries in the .ARM.attributes section in the ELF.
28 Section = 2,
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 75 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
77 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
124 // isSymbolLinkerVisible uses the section.
304 // it has to be in a coalesced section, but this isn't enforced.
341 void MCMachOStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
343 MCSectionData &SectData = getAssembler().getOrCreateSectionData(*Section);
345 // The symbol may not be present, which only creates the section.
349 // FIXME: Assert that this section has the zerofill type.
362 Symbol->setSection(*Section);
364 // Update the maximum alignment on the zero fill section if necessary
    [all...]
MCPureStreamer.cpp 42 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
61 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
125 assert(getCurrentSection() && "Cannot emit before setting section!");
151 void MCPureStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
172 // Update the maximum alignment on the current section if necessary.
187 // Update the maximum alignment on the current section if necessary.
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 36 bool ParseSectionSwitch(const char *Segment, const char *Section,
53 addDirectiveHandler<&DarwinAsmParser::ParseDirectiveSection>(".section");
71 // Special section directives.
181 // Named Section Directive
361 const char *Section,
365 return TokError("unexpected token in section switching directive");
371 Segment, Section, TAA, StubSize,
378 // alignment on the section (e.g., if one manually inserts bytes into the
379 // section, then just issuing the section switch directive will not realig
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 70 /// Parent - The data for the section this fragment is in.
83 /// Offset - The offset of this fragment in its section. This is ~0 until
574 const MCSection *Section;
576 /// Ordinal - The section index in the assemblers section list.
579 /// LayoutOrder - The index of this section in the layout order.
582 /// Alignment - The maximum alignment seen in this section.
597 /// HasInstructions - Whether this section has had instructions emitted into
606 MCSectionData(const MCSection &Section, MCAssembler *A = 0);
608 const MCSection &getSection() const { return *Section; }
    [all...]
MCObjectStreamer.h 79 virtual void ChangeSection(const MCSection *Section);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 345 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
346 const MCSectionELF &ES = static_cast<const MCSectionELF&>(Section);
416 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
425 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
429 virtual bool isSectionAtomizable(const MCSection &Section) const {
430 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 136 // section size right.
168 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
185 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 54 Section = 3,
262 static const uint32_t section_flag = Section << TYPE_OFFSET;
  /frameworks/compile/mclinker/lib/Fragment/
Relocation.cpp 93 if (m_pSymInfo->type() == ResolveInfo::Section &&
153 // Update value keep in addend if we meet a section symbol
154 if (m_pSymInfo->type() == ResolveInfo::Section) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 32 import org.eclipse.ui.forms.widgets.Section;
35 * Generic page's section part that displays all attributes of a given {@link UiElementNode}.
104 * Setup the section that contains this part.
106 * This is called by the constructor to set the section's title and description
112 * @param sectionTitle The section part's title
113 * @param sectionDescription The section part's description
116 Section section = getSection(); local
117 section.setText(sectionTitle);
118 section.setDescription(sectionDescription)
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 42 /// SectionEntry - represents a section emitted into memory by the dynamic
46 /// Name - section name.
49 /// Address - address in the linker's memory where the section resides.
52 /// Size - section size.
55 /// LoadAddress - the address of the section in the target process's memory.
65 /// ObjAddress - address of the section in the in-memory object file. Used
79 /// SectionID - the section this relocation points to.
82 /// Offset - offset into the section.
89 /// used to make a relocation section relative instead of symbol relative.
98 /// the section to which the relocation points (represented by a SectionID)
    [all...]

Completed in 1540 milliseconds

1 2 34 5 6 7 8 9