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

1 2 3 4 5 6 7 8 9

  /dalvik/dx/src/com/android/dx/dex/
TableOfContents.java 34 public final Section header = new Section(0x0000);
35 public final Section stringIds = new Section(0x0001);
36 public final Section typeIds = new Section(0x0002);
37 public final Section protoIds = new Section(0x0003);
38 public final Section fieldIds = new Section(0x0004)
123 Section section = getSection(type); local
147 Section section = sections[i]; local
    [all...]
  /external/llvm/include/llvm/MC/
MCSymbol.h 31 /// Section member is set to indicate what section it lives in. Otherwise, if
32 /// it is a reference to an external entity, it has a null section.
34 // Special sentinal value for the absolute pseudo section.
43 /// Section - The section the symbol is defined in. This is null for
46 const MCSection *Section;
63 : Name(name), Section(0), Value(0),
88 /// Defined symbols are either absolute or in some section.
90 return Section != 0
    [all...]
MCSectionCOFF.h 23 /// MCSectionCOFF - This represents a section on Windows
28 /// Characteristics - This is the Characteristics field of a section,
32 /// Selection - This is the Selection field for the section symbol, if
33 /// it is a COMDAT section (Characteristics & IMAGE_SCN_LNK_COMDAT) != 0
38 MCSectionCOFF(StringRef Section, unsigned Characteristics,
40 : MCSection(SV_COFF, K), SectionName(Section),
43 "alignment must not be set upon section creation");
48 /// ShouldOmitSectionDirective - Decides whether a '.section' directive
49 /// should be printed before the section name
MCELFStreamer.h 53 virtual void ChangeSection(const MCSection *Section);
75 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
77 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
116 void SetSection(StringRef Section, unsigned Type, unsigned Flags,
MCStreamer.h 44 /// state to know what the current section is etc.
87 /// SectionStack - This is stack of current and previous section
172 /// @name Symbol & Section Management
175 /// getCurrentSection - Return the current section that the streamer is
183 /// getPreviousSection - Return the previous section that the streamer is
191 /// ChangeSection - Update streamer for a new active section.
194 /// section changes.
197 /// pushSection - Save the current and previous section on the
198 /// section stack.
204 /// popSection - Restore the current and previous section fro
    [all...]
MCAsmBackend.h 62 /// reside in a different section.
78 /// doesSectionRequireSymbols - Check whether the given section requires that
80 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
84 /// isSectionAtomizable - Check whether the given section can be split into
88 virtual bool isSectionAtomizable(const MCSection &Section) const {
  /external/webkit/Source/WebCore/inspector/front-end/
PropertiesSection.js 32 WebInspector.Section.call(this, title, subtitle);
39 this.propertiesTreeOutline.section = this;
44 WebInspector.PropertiesSection.prototype.__proto__ = WebInspector.Section.prototype;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.h 35 void resolveX86_64Relocation(const SectionEntry &Section,
41 void resolveX86Relocation(const SectionEntry &Section,
47 void resolveARMRelocation(const SectionEntry &Section,
53 void resolveMIPSRelocation(const SectionEntry &Section,
59 void resolvePPC64Relocation(const SectionEntry &Section,
65 virtual void resolveRelocation(const SectionEntry &Section,
RuntimeDyldELF.cpp 193 void RuntimeDyldELF::resolveX86_64Relocation(const SectionEntry &Section,
203 uint64_t *Target = reinterpret_cast<uint64_t*>(Section.Address + Offset);
216 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
225 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress
227 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
228 uint64_t FinalAddress = Section.LoadAddress + Offset;
238 void RuntimeDyldELF::resolveX86Relocation(const SectionEntry &Section,
247 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress
249 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
256 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddres
    [all...]
RuntimeDyldMachO.cpp 24 void RuntimeDyldMachO::resolveRelocation(const SectionEntry &Section,
29 uint8_t *LocalAddress = Section.Address + Offset;
30 uint64_t FinalAddress = Section.LoadAddress + Offset;
216 SectionEntry &Section = Sections[Rel.SectionID];
249 assert(si != se && "No section containing relocation!");
258 // The MachO addend is an offset from the current section. We need it
259 // to be an offset from the destination section
260 Value.Addend += Section.ObjAddress - Sections[Value.SectionID].ObjAddress;
270 resolveRelocation(Section, Rel.Offset,
271 (uint64_t)Section.Address + i->second
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BlackList.h 55 bool inSection(const StringRef Section, const StringRef Query) const;
  /external/chromium/chrome/browser/ui/webui/
shown_sections_handler.h 20 enum Section {
21 // If one of these is set, the corresponding section shows large thumbnails,
29 // If one of these is set, then the corresponding section is shown in a menu
45 // Expands |section|, collapsing any previously expanded section. This is the
46 // same thing that happens if a user clicks on |section|.
47 static void SetShownSection(PrefService* prefs, Section section);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
DexFile.java 72 * are added to it incrementally by calling the {@link org.jf.dexlib.Section#intern intern} method of
105 * A mapping from ItemType to the section that contains items of the given type
107 private final Section[] sectionsByType;
179 * A private constructor containing common code to initialize the section maps and lists
189 sectionsByType = new Section[] {
399 Section sections[] = new Section[] {
418 for (Section section: sections) {
419 if (section == null)
654 Section section = sections[sectionsPosition]; local
667 Section section = sections[sectionsPosition]; local
    [all...]
  /external/llvm/lib/MC/
MCSymbol.cpp 16 // Sentinel value for the absolute pseudo section.
59 // Variables should always be marked as in the same "section" as the value.
60 const MCSection *Section = Value->FindAssociatedSection();
61 if (Section)
62 setSection(*Section);
ELFObjectWriter.cpp 60 const MCSectionELF &Section);
113 // This holds the .strtab section index.
115 // This holds the .symtab section index.
264 // Map from a group section to the signature symbol
266 // Map from a signature symbol to the group section
268 // Map from a section to the section with the relocations
270 // Map from a section to its offset
276 /// \param SectionIndexMap - Maps a section to its index.
277 /// \param RevGroupMap - Maps a signature symbol to the group section
    [all...]
MCSectionMachO.cpp 1 //===- lib/MC/MCSectionMachO.cpp - MachO Code Section Representation ------===//
16 /// SectionTypeDescriptors - These are strings that describe the various section
18 /// section type list.
49 /// SectionAttrDescriptors - This is an array of descriptors for section
70 { 0, "none", 0 }, // used if section has no attributes but has a stub size
75 MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section,
78 assert(Segment.size() <= 16 && Section.size() <= 16 &&
79 "Segment or section string too long");
86 if (i < Section.size())
87 SectionName[i] = Section[i]
    [all...]
  /external/chromium/chrome/browser/ui/views/
page_info_bubble_view.cc 44 // A section contains an image that shows a status (good or bad), a title, an
46 class Section : public views::View,
49 Section(PageInfoBubbleView* owner,
53 virtual ~Section();
66 // The view that owns this Section object.
77 DISALLOW_COPY_AND_ASSIGN(Section);
150 layout->AddView(new Section(this, info, icon, cert_id_ > 0));
176 Section section(this, info, icon, cert_id_ > 0);
177 size.Enlarge(0, section.GetHeightForWidth(size.width()))
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 49 private final DexBuffer.Section headerOut;
52 private final DexBuffer.Section idsDefsOut;
54 private final DexBuffer.Section mapListOut;
56 private final DexBuffer.Section typeListOut;
58 private final DexBuffer.Section classDataOut;
60 private final DexBuffer.Section codeOut;
62 private final DexBuffer.Section stringDataOut;
64 private final DexBuffer.Section debugInfoOut;
66 private final DexBuffer.Section encodedArrayOut;
69 private final DexBuffer.Section annotationsDirectoryOut
324 TableOfContents.Section section = getSection(source.getTableOfContents()); local
614 TableOfContents.Section section = in.getTableOfContents().annotationSets; local
624 TableOfContents.Section section = in.getTableOfContents().annotationsDirectories; local
634 TableOfContents.Section section = in.getTableOfContents().encodedArrays; local
    [all...]
  /external/smack/src/org/xbill/DNS/
Message.java 14 * @see Section
84 m.addRecord(r, Section.QUESTION);
111 if (i == Section.ADDITIONAL) {
157 * Adds a record to a section of the Message, and adjusts the header.
159 * @see Section
162 addRecord(Record r, int section) {
163 if (sections[section] == null)
164 sections[section] = new LinkedList();
165 header.incCount(section);
166 sections[section].add(r)
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64ELFStreamer.cpp 49 /// of A64 code or data in a section. In practice, this emission does not rely
66 virtual void ChangeSection(const MCSection *Section) {
71 LastEMS = LastMappingSymbols.lookup(Section);
73 MCELFStreamer::ChangeSection(Section);
84 /// This is one of the functions used to emit data into an ELF section, so the
92 /// This is one of the functions used to emit data into an ELF section, so the
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewInfoPart.java 28 import org.eclipse.ui.forms.widgets.Section;
31 * Generic info section part for overview page: it displays all the attributes from
41 "Manifest General Attributes", // section title
42 "Defines general information about the AndroidManifest.xml", // section description
43 Section.TWISTIE | Section.EXPANDED);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
OffsettedItem.java 35 * {@code null-ok;} section the item was added to, or {@code null} if
38 private Section addedTo;
41 * {@code >= -1;} assigned offset of the item from the start of its section,
71 Section.validateAlignment(alignment);
183 * the section which the instance was written to.
212 * Indicates that this item has been added to the given section at
216 * @param addedTo {@code non-null;} the section this instance has
219 * section where this instance was placed
223 public final int place(Section addedTo, int offset) {
297 * @param addedTo {@code non-null;} the section this instance has been added t
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
OffsettedItem.java 35 * {@code null-ok;} section the item was added to, or {@code null} if
38 private Section addedTo;
41 * {@code >= -1;} assigned offset of the item from the start of its section,
71 Section.validateAlignment(alignment);
183 * the section which the instance was written to.
212 * Indicates that this item has been added to the given section at
216 * @param addedTo {@code non-null;} the section this instance has
219 * section where this instance was placed
223 public final int place(Section addedTo, int offset) {
297 * @param addedTo {@code non-null;} the section this instance has been added t
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
OffsettedItem.java 35 * {@code null-ok;} section the item was added to, or {@code null} if
38 private Section addedTo;
41 * {@code >= -1;} assigned offset of the item from the start of its section,
71 Section.validateAlignment(alignment);
183 * the section which the instance was written to.
212 * Indicates that this item has been added to the given section at
216 * @param addedTo {@code non-null;} the section this instance has
219 * section where this instance was placed
223 public final int place(Section addedTo, int offset) {
297 * @param addedTo {@code non-null;} the section this instance has been added t
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportLinksPart.java 31 import org.eclipse.ui.forms.widgets.Section;
34 * Links section part for export properties page.
42 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
43 Section section = getSection(); local
44 section.setText("Links");
45 section.setDescription("TODO SOME TEXT HERE. You can also edit the XML directly.");

Completed in 686 milliseconds

1 2 3 4 5 6 7 8 9