Searched defs:Section (Results 1 - 25 of 60) sorted by relevance

123

/external/webkit/Source/WebCore/inspector/front-end/
H A DSection.js30 WebInspector.Section = function(title, subtitle)
56 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/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/llvm/include/llvm/MC/
H A DMCSectionCOFF.h38 MCSectionCOFF(StringRef Section, unsigned Characteristics, argument
40 : MCSection(SV_COFF, K), SectionName(Section),
H A DMCSectionELF.h48 MCSectionELF(StringRef Section, unsigned type, unsigned flags, argument
50 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
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 DMCStreamer.h144 /// @name Symbol & Section Management
192 /// @p Section. This is required to update CurSection.
195 void SwitchSection(const MCSection *Section) { argument
196 assert(Section && "Cannot switch to a null section!");
199 if (Section != curSection) {
200 SectionStack.back().first = Section;
201 ChangeSection(Section);
206 /// emitted to @p Section. This is required to update CurSection. This
208 void SwitchSectionNoChange(const MCSection *Section) { argument
209 assert(Section
[all...]
/external/llvm/lib/MC/
H A DMCSymbol.cpp60 const MCSection *Section = Value->FindAssociatedSection(); local
61 if (Section)
62 setSection(*Section);
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 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 DMCMachOStreamer.cpp74 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
76 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
335 void MCMachOStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol, argument
337 MCSectionData &SectData = getAssembler().getOrCreateSectionData(*Section);
356 Symbol->setSection(*Section);
365 void MCMachOStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, argument
367 EmitZerofill(Section, Symbol, Size, ByteAlignment);
H A DMCObjectStreamer.cpp156 void MCObjectStreamer::ChangeSection(const MCSection *Section) { argument
157 assert(Section && "Cannot switch to a null section!");
159 CurSectionData = &getAssembler().getOrCreateSectionData(*Section);
/external/llvm/lib/Transforms/Instrumentation/
H A DBlackList.cpp96 bool BlackList::inSection(const StringRef Section, argument
98 Regex *FunctionRegex = Entries[Section];
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp154 const MCSection &Section = SectionLabel->getSection(); local
158 assert((!Label->isInSection() || &Label->getSection() == &Section) &&
159 "Section offset using wrong section base for label");
163 if (Section.isBaseAddressKnownZero()) {
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFObjectWriter.cpp76 const MCSectionELF &Section = local
88 << Section.getSectionName() << "/"
102 StringSwitch<bool>(Section.getSectionName())
114 StringSwitch<bool>(Section.getSectionName())
126 StringSwitch<bool>(Section.getSectionName())
/external/llvm/test/Scripts/
H A Delf-dump55 class Section: class in inherits:
210 s = Section(f)
227 print " # Section %s" % index
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DSection.java40 public abstract class Section<T extends Item> { class
75 protected Section(DexFile dexFile, ItemType itemType) { method in class:Section
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DSection.java27 public abstract class Section { class
69 public Section(String name, DexFile file, int alignment) { method in class:Section
/external/llvm/bindings/python/llvm/
H A Dobject.py19 Section, Symbol, and Relocation, respectively.
30 relocations, call get_relocations() on a Section instance.
40 To aid working around this limitation, each Section, Symbol, and Relocation
53 # This is OK. Each Section is only accessed inside its own iteration slot.
93 "Section",
123 This is a generator for llvm.object.Section instances.
134 last = Section(sections)
176 class Section(LLVMObject): class in inherits:LLVMObject
182 Section instances can currently only be created from an ObjectFile
197 raise Exception('Section instanc
[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...]
/external/llvm/lib/Object/
H A DObject.cpp30 // ObjectFile Section iterators
115 // Section Relocation iterators
116 LLVMRelocationIteratorRef LLVMGetRelocations(LLVMSectionIteratorRef Section) { argument
117 relocation_iterator SI = (*unwrap(Section))->begin_relocations();
125 LLVMBool LLVMIsRelocationIteratorAtEnd(LLVMSectionIteratorRef Section, argument
127 return (*unwrap(SI) == (*unwrap(Section))->end_relocations()) ? 1 : 0;
/external/chromium/chrome/browser/ui/views/
H A Dpage_info_bubble_view.cc46 class Section : public views::View, class in namespace:__anon2570
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/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp435 else if (Key == "Objective-C Image Info Section")
442 StringRef Segment, Section;
446 MCSectionMachO::ParseSectionSpecifier(SectionVal, Segment, Section,
450 report_fatal_error("Invalid section specifier '" + Section + "': " +
455 getContext().getMachOSection(Segment, Section, TAA, StubSize,
469 StringRef Segment, Section; local
473 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
484 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
/external/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp33 bool ParseSectionSwitch(StringRef Section,
163 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, argument
171 Section, Characteristics, Kind));
H A DELFAsmParser.cpp31 bool ParseSectionSwitch(StringRef Section, unsigned Type,
190 bool ELFAsmParser::ParseSectionSwitch(StringRef Section, unsigned Type, argument
197 Section, Type, Flags, Kind));

Completed in 1380 milliseconds

123