Searched refs:Section (Results 1 - 25 of 119) sorted by relevance

12345

/external/llvm/include/llvm/MC/
H A DMCSymbol.h31 /// Section member is set to indicate what section it lives in. Otherwise, if
43 /// Section - The section the symbol is defined in. This is null for
46 const MCSection *Section; member in class:llvm::MCSymbol
63 : Name(name), Section(0), Value(0),
90 return Section != 0;
106 return Section == AbsolutePseudoSection;
113 return *Section;
117 void setSection(const MCSection &S) { Section = &S; }
121 Section = 0;
125 void setAbsolute() { Section
[all...]
H A DMCSectionCOFF.h38 MCSectionCOFF(StringRef Section, unsigned Characteristics, argument
40 : MCSection(SV_COFF, K), SectionName(Section),
H A DMCAsmBackend.h70 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
78 virtual bool isSectionAtomizable(const MCSection &Section) const {
H A DMCContext.h197 /// @name Section Management
203 StringRef Section,
208 StringRef Section,
211 return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);
214 const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
217 const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
223 const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics,
226 const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics, argument
228 return getCOFFSection (Section, Characteristics, 0, Kind);
207 getMachOSection(StringRef Segment, StringRef Section, unsigned TypeAndAttributes, SectionKind K) argument
H A DMCSectionELF.h48 MCSectionELF(StringRef Section, unsigned type, unsigned flags, argument
50 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
/external/webkit/Source/WebCore/inspector/front-end/
H A DPropertiesSection.js32 WebInspector.Section.call(this, title, subtitle);
44 WebInspector.PropertiesSection.prototype.__proto__ = WebInspector.Section.prototype;
/external/chromium/chrome/browser/ui/webui/
H A Dshown_sections_handler.h20 enum Section { enum
47 static void SetShownSection(PrefService* prefs, Section section);
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DDexFile.java72 * are added to it incrementally by calling the {@link org.jf.dexlib.Section#intern intern} method of
107 private final Section[] sectionsByType;
196 sectionsByType = new Section[] {
399 Section sections[] = new Section[] {
418 for (Section section: sections) {
438 * the <code>Section.intern()</code> method of <code>ClassDefsSection</code>
445 * Get the <code>Section</code> containing items of the same type as the given item
446 * @param item Get the <code>Section</code> that contains items of this type
448 * @return the <code>Section</cod
[all...]
H A DMapItem.java59 Section[] sections = dexFile.getOrderedSections();
85 Section[] sections = dexFile.getOrderedSections();
97 for (Section section: dexFile.getOrderedSections()) {
H A DIndexedSection.java34 public class IndexedSection<T extends Item> extends Section<T> {
H A DOffsettedSection.java33 public class OffsettedSection<T extends Item> extends Section<T> {
/external/llvm/lib/Transforms/Instrumentation/
H A DBlackList.h52 bool inSection(const StringRef Section, const StringRef Query);
/external/llvm/lib/MC/
H A DMCSymbol.cpp60 const MCSection *Section = Value->FindAssociatedSection(); local
61 if (Section)
62 setSection(*Section);
H A DELFObjectWriter.cpp61 const MCSectionELF &Section);
336 const MCSectionELF &Section);
418 // e_shentsize = Section header entry size
427 // e_shstrndx = Section # of '.shstrtab'
595 const MCSectionELF &Section = local
597 if (Section.getType() == ELF::SHT_RELA ||
598 Section.getType() == ELF::SHT_REL ||
599 Section.getType() == ELF::SHT_STRTAB ||
600 Section.getType() == ELF::SHT_SYMTAB ||
601 Section
651 const MCSectionELF &Section = local
833 const MCSectionELF &Section = local
842 const MCSectionELF &Section = local
917 const MCSectionELF &Section = local
985 const MCSectionELF &Section = local
1013 const MCSectionELF &Section = local
1172 const MCSectionELF &Section = local
1186 const MCSectionELF &Section = *Sections[I]; local
1224 const MCSectionELF &Section = local
1247 const MCSectionELF &Section = local
1260 WriteSection(MCAssembler &Asm, const SectionIndexMapTy &SectionIndexMap, uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size, uint64_t Alignment, const MCSectionELF &Section) argument
1364 WriteDataSectionData(MCAssembler &Asm, const MCAsmLayout &Layout, const MCSectionELF &Section) argument
1408 const MCSectionELF &Section = *Sections[i]; local
1429 const MCSectionELF &Section = local
1437 const MCSectionELF &Section = local
1447 const MCSectionELF &Section = local
1495 const MCSectionELF &Section = *Sections[i]; local
1516 const MCSectionELF &Section = *Sections[i]; local
[all...]
H A DMCNullStreamer.cpp31 virtual void ChangeSection(const MCSection *Section) { argument
65 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0, argument
67 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, argument
H A DMCContext.cpp157 // Section Management
161 getMachOSection(StringRef Segment, StringRef Section, argument
178 Name += Section;
185 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
190 getELFSection(StringRef Section, unsigned Type, unsigned Flags, argument
192 return getELFSection(Section, Type, Flags, Kind, 0, "");
196 getELFSection(StringRef Section, unsigned Type, unsigned Flags, argument
203 StringMapEntry<const MCSectionELF*> &Entry = Map.GetOrCreateValue(Section);
228 const MCSection *MCContext::getCOFFSection(StringRef Section, argument
237 StringMapEntry<const MCSectionCOFF*> &Entry = Map.GetOrCreateValue(Section);
[all...]
H A DMCSectionMachO.cpp1 //===- lib/MC/MCSectionMachO.cpp - MachO Code Section Representation ------===//
75 MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section, argument
78 assert(Segment.size() <= 16 && Section.size() <= 16 &&
86 if (i < Section.size())
87 SectionName[i] = Section[i];
181 StringRef &Section, // Out.
207 Section = Comma.first;
208 StripSpaces(Section);
211 if (Section.empty() || Section
179 ParseSectionSpecifier(StringRef Spec, StringRef &Segment, StringRef &Section, unsigned &TAA, bool &TAAParsed, unsigned &StubSize) argument
[all...]
H A DMCELFStreamer.cpp57 virtual void ChangeSection(const MCSection *Section);
93 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0, argument
97 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, argument
129 void SetSection(StringRef Section, unsigned Type, unsigned Flags, argument
131 SwitchSection(getContext().getELFSection(Section, Type, Flags, Kind));
169 const MCSectionELF &Section = local
172 if (Section.getFlags() & ELF::SHF_TLS)
207 void MCELFStreamer::ChangeSection(const MCSection *Section) { argument
208 const MCSymbol *Grp = static_cast<const MCSectionELF *>(Section)->getGroup();
211 this->MCObjectStreamer::ChangeSection(Section);
332 const MCSection *Section = getAssembler().getContext().getELFSection(".bss", local
498 const MCSection &Section = Symbol.getSection(); local
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp213 SectionEntry &Section = Sections[Rel.SectionID]; local
214 uint8_t *Target = Section.Address + Rel.Offset;
253 Value.Addend += Section.ObjAddress - Sections[Value.SectionID].ObjAddress;
264 (uint64_t)Section.Address + i->second,
268 Stubs[Value] = Section.StubOffset;
269 uint8_t *StubTargetAddr = createStubFunction(Section.Address +
270 Section.StubOffset);
271 RelocationEntry RE(Rel.SectionID, StubTargetAddr - Section.Address,
278 (uint64_t)Section.Address + Section
[all...]
H A DRuntimeDyldELF.cpp443 SectionEntry &Section = Sections[Rel.SectionID]; local
444 uint8_t *Target = Section.Address + Rel.Offset;
449 resolveRelocation(Target, (uint64_t)Target, (uint64_t)Section.Address +
455 Stubs[Value] = Section.StubOffset;
456 uint8_t *StubTargetAddr = createStubFunction(Section.Address +
457 Section.StubOffset);
458 RelocationEntry RE(Rel.SectionID, StubTargetAddr - Section.Address,
465 resolveRelocation(Target, (uint64_t)Target, (uint64_t)Section.Address +
466 Section.StubOffset, RelType, 0);
467 Section
472 SectionEntry &Section = Sections[Rel.SectionID]; local
[all...]
H A DRuntimeDyld.cpp219 const SectionRef &Section,
226 for (relocation_iterator i = Section.begin_relocations(),
227 e = Section.end_relocations(); i != e; i.increment(err), Check(err))
232 Check(Section.getContents(data));
233 Check(Section.getAlignment(Alignment64));
240 Check(Section.isRequiredForExecution(IsRequired));
241 Check(Section.isVirtual(IsVirtual));
242 Check(Section.isZeroInit(IsZeroInit));
243 Check(Section.getSize(DataSize));
277 Obj.updateSectionAddress(Section, (uint64_
218 emitSection(ObjectImage &Obj, const SectionRef &Section, bool IsCode) argument
298 findOrEmitSection(ObjectImage &Obj, const SectionRef &Section, bool IsCode, ObjSectionToIDMap &LocalSections) argument
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dpage_info_bubble_view.cc46 class Section : public views::View, class in namespace:__anon2571
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);
251 // Section
253 Section::Section(PageInfoBubbleVie function in class:Section
[all...]
/external/llvm/bindings/python/llvm/tests/
H A Dtest_object.py4 from ..object import Section namespace
21 assert isinstance(section, Section)
54 assert isinstance(section, Section)
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DOffsettedItem.java38 private Section addedTo;
71 Section.validateAlignment(alignment);
223 public final int place(Section addedTo, int offset) {
301 protected void place0(Section addedTo, int offset) {
H A DMapItem.java38 private final Section section;
67 public static void addMap(Section[] sections,
80 for (Section section : sections) {
124 private MapItem(ItemType type, Section section, Item firstItem,
161 private MapItem(Section section) {

Completed in 5523 milliseconds

12345