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

12 3 4 5 6 7 8 9

  /external/llvm/include/llvm/MC/
MCSectionELF.h 27 /// MCSectionELF - This represents a section on linux, lots of unix variants
30 /// SectionName - This is the name of the section. The referenced memory is
34 /// Type - This is the sh_type field of a section, drawn from the enums below.
37 /// Flags - This is the sh_flags field of a section, drawn from the enums.
41 /// EntrySize - The size of each entry in this section. This size only
43 /// section does not contain fixed-sized entries 'EntrySize' will be 0.
50 MCSectionELF(StringRef Section, unsigned type, unsigned flags,
52 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
57 /// ShouldOmitSectionDirective - Decides whether a '.section' directive
58 /// should be printed before the section nam
    [all...]
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 101 static std::string getSectionFlagStr(const SectionRef &Section) {
106 {{ &SectionRef::isText, "text,", "Section.isText() failed" },
107 { &SectionRef::isData, "data,", "Section.isData() failed" },
108 { &SectionRef::isBSS, "bss,", "Section.isBSS() failed" },
110 "Section.isRequiredForExecution() failed" },
111 { &SectionRef::isVirtual, "virtual,", "Section.isVirtual() failed" },
112 { &SectionRef::isZeroInit, "zeroinit,", "Section.isZeroInit() failed" },
114 "Section.isReadOnlyData() failed" }};
119 checkError((Section.*Work[I].MemF)(B), Work[I].ErrorStr);
178 static void dumpSection(const SectionRef &Section, const ObjectFile *obj)
    [all...]
  /external/smack/src/org/xbill/DNS/
SIG0.java 50 message.addRecord(sig, Section.ADDITIONAL);
67 Record [] additional = message.getSectionArray(Section.ADDITIONAL);
Section.java 11 public final class Section {
13 /** The question (first) section */
16 /** The answer (second) section */
19 /** The authority (third) section */
22 /** The additional (fourth) section */
26 /** The zone (first) section of a dynamic update message */
29 /** The prerequisite (second) section of a dynamic update message */
32 /** The update (third) section of a dynamic update message */
35 private static Mnemonic sections = new Mnemonic("Message Section",
61 Section() {}
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 37 import org.eclipse.ui.forms.widgets.Section;
57 * Utility class that derives from SectionPart, constructs the Section with
67 * The section style includes a description and a title bar by default.
80 * The section style includes a description and a title bar by default.
81 * You can add extra styles, like Section.TWISTIE.
86 * @param use_description True if the Section.DESCRIPTION style should be added.
91 Section.TITLE_BAR |
92 (use_description ? Section.DESCRIPTION : 0));
100 * If the parent composite is a Section, the new composite is set as a client.
163 * Forces the section to recompute its layout and redraw
167 Section section = getSection(); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MapItem.java 37 /** {@code non-null;} section this instance covers */
38 private final Section section; field in class:MapItem
61 * given map section.
64 * @param mapSection {@code non-null;} the section that the resulting map
67 public static void addMap(Section[] sections,
80 for (Section section : sections) {
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
    [all...]
Section.java 24 * A section of a {@code .dex} file. Each section consists of a list
27 public abstract class Section {
69 public Section(String name, DexFile file, int alignment) {
194 * be contained in this section. This is only valid to call
219 * Gets the collection of all the items in this section.
280 * Returns the name of this section, for annotation purposes.
  /dalvik/dx/src/com/android/dx/dex/file/
MapItem.java 37 /** {@code non-null;} section this instance covers */
38 private final Section section; field in class:MapItem
61 * given map section.
64 * @param mapSection {@code non-null;} the section that the resulting map
67 public static void addMap(Section[] sections,
80 for (Section section : sections) {
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
    [all...]
Section.java 24 * A section of a {@code .dex} file. Each section consists of a list
27 public abstract class Section {
69 public Section(String name, DexFile file, int alignment) {
194 * be contained in this section. This is only valid to call
219 * Gets the collection of all the items in this section.
280 * Returns the name of this section, for annotation purposes.
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MapItem.java 37 /** {@code non-null;} section this instance covers */
38 private final Section section; field in class:MapItem
61 * given map section.
64 * @param mapSection {@code non-null;} the section that the resulting map
67 public static void addMap(Section[] sections,
80 for (Section section : sections) {
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
    [all...]
  /external/llvm/lib/MC/
MCELFStreamer.cpp 36 inline void MCELFStreamer::SetSection(StringRef Section, unsigned Type,
38 SwitchSection(getContext().getELFSection(Section, Type, Flags, Kind));
86 const MCSectionELF &Section =
89 if (Section.getFlags() & ELF::SHF_TLS)
111 void MCELFStreamer::ChangeSection(const MCSection *Section) {
114 report_fatal_error("Unterminated .bundle_lock when changing a section");
115 const MCSymbol *Grp = static_cast<const MCSectionELF *>(Section)->getGroup();
118 this->MCObjectStreamer::ChangeSection(Section);
239 const MCSection *Section = getAssembler().getContext().getELFSection(".bss",
244 Symbol->setSection(*Section);
    [all...]
MCContext.cpp 202 // Section Management
206 getMachOSection(StringRef Segment, StringRef Section,
210 // We unique sections by their segment/section pair. The returned section
211 // may not have the same flags as the requested section, if so this should be
223 Name += Section;
229 // Otherwise, return a new section.
230 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
235 getELFSection(StringRef Section, unsigned Type, unsigned Flags,
237 return getELFSection(Section, Type, Flags, Kind, 0, "")
    [all...]
WinCOFFStreamer.cpp 70 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
72 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
100 void SetSection(StringRef Section,
103 SwitchSection(getContext().getCOFFSection(Section, Characteristics, Kind));
142 assert(!Symbol->isInSection() && "Symbol must not already have a section!");
157 const MCSection *Section = MCStreamer::getContext().getCOFFSection(
160 MCSectionData &SectionData = getAssembler().getOrCreateSectionData(*Section);
167 Symbol->setSection(*Section);
209 : true) && "Got non COFF section in the COFF backend!");
235 : true) && "Got non COFF section in the COFF backend!")
    [all...]
MCNullStreamer.cpp 33 virtual void ChangeSection(const MCSection *Section) {
38 assert(getCurrentSection() && "Cannot emit before setting section!");
69 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
71 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
  /external/llvm/bindings/python/llvm/tests/
test_object.py 4 from ..object import Section
19 for section in o.get_sections():
21 assert isinstance(section, Section)
22 assert isinstance(section.name, str)
23 assert isinstance(section.size, long)
24 assert isinstance(section.contents, str)
25 assert isinstance(section.address, long)
29 for section in o.get_sections():
30 section.cache(
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
MapItem.java 36 * SectionInfo instance for every section in the DexFile, with the number of items
37 * in and offset of that section.
41 * This item is read in immediately after the HeaderItem, and the section info contained
59 Section[] sections = dexFile.getOrderedSections();
61 //or map section, so add 2 to the length
85 Section[] sections = dexFile.getOrderedSections();
97 for (Section section: dexFile.getOrderedSections()) {
100 writeSectionInfo(out, section.ItemType, section.getItems().size(), section.getOffset())
    [all...]
IndexedSection.java 34 public class IndexedSection<T extends Item> extends Section<T> {
37 * Create a new indexed section
38 * @param dexFile The <code>DexFile</code> that this section belongs to
39 * @param itemType The itemType that this section will hold
55 * Gets the item at the specified index in this section, or null if the index is -1
57 * @return the item at the specified index in this section, or null if the index is -1
68 * Gets the item at the specified index in this section
70 * @return the item at the specified index in this section
OffsettedSection.java 33 public class OffsettedSection<T extends Item> extends Section<T> {
  /system/media/camera/docs/
metadata_helpers.py 27 return isinstance(x, metadata_model.Section) or \
36 Find all descendants that are Section or InnerNamespace instances.
42 A list of Section/InnerNamespace instances
51 Find the closest ancestor that is either a Section or InnerNamespace.
57 An instance of Section or InnerNamespace
67 node: a Section or InnerNamespace instance
76 if not isinstance(node, metadata_model.Section) and \
78 raise TypeError("expected node to be a Section or InnerNamespace")
83 search_path = isinstance(node, metadata_model.Section) and node.kinds \
  /dalvik/dx/src/com/android/dx/io/
EncodedValue.java 40 public void writeTo(DexBuffer.Section out) {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 41 DEBUG(dbgs() << "Resolving relocations Section #" << i
56 llvm_unreachable("Attempting to remap address of unknown section!");
150 // If it's the first relocation in this section, find its SectionID
179 // Allocate memory for the section
217 const SectionRef &Section,
224 for (relocation_iterator i = Section.begin_relocations(),
225 e = Section.end_relocations(); i != e; i.increment(err), Check(err))
230 Check(Section.getContents(data));
231 Check(Section.getAlignment(Alignment64));
240 Check(Section.isRequiredForExecution(IsRequired))
    [all...]
RuntimeDyldMachO.h 58 virtual void resolveRelocation(const SectionEntry &Section,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewExportPart.java 37 import org.eclipse.ui.forms.widgets.Section;
41 * Export section part for overview page.
49 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
51 Section section = getSection(); local
52 section.setText("Exporting");
64 section.setDescription("Library project cannot be exported.");
68 section.setDescription("To export the application for distribution, you have the following options:");
OverviewLinksPart.java 31 import org.eclipse.ui.forms.widgets.Section;
34 * Links section part for overview page.
42 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
44 Section section = getSection(); local
45 section.setText("Links");
46 section.setDescription("The content of the Android Manifest is made up of three sections. You can also edit the XML directly.");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 48 import org.eclipse.ui.forms.widgets.Section;
66 private Section mMasterSection;
190 * Creates a TableWrapLayout in the DetailsPage, which in turns contains a Section.
197 * + Section (with title/description && fill_grab horizontal)
204 * @return The new Section
206 private Section createMasterSection(Composite parent) {
212 Section section = toolkit.createSection(parent, Section.TITLE_BAR); local
213 section.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.TOP))
392 Section section = toolkit.createSection(masterTable, local
437 Section section = ((Section) unknownTable.getParent()); local
    [all...]

Completed in 1763 milliseconds

12 3 4 5 6 7 8 9