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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
Section.js 35 WebInspector.Section = function(title, subtitle)
38 this.element.className = "section";
61 WebInspector.Section.prototype = {
  /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)
26 assert len(section.contents) == section.siz
    [all...]
  /external/llvm/include/llvm/IR/
GlobalObject.h 36 std::string Section; // Section to emit this into, empty means default
45 const char *getSection() const { return Section.c_str(); }
  /external/llvm/lib/MC/
ConstantPools.cpp 51 AssemblerConstantPools::getConstantPool(const MCSection *Section) {
52 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section);
60 AssemblerConstantPools::getOrCreateConstantPool(const MCSection *Section) {
61 return ConstantPools[Section];
64 static void emitConstantPool(MCStreamer &Streamer, const MCSection *Section,
67 Streamer.SwitchSection(Section);
77 const MCSection *Section = CPI->first;
80 emitConstantPool(Streamer, Section, CP);
85 const MCSection *Section = Streamer.getCurrentSection().first;
86 if (ConstantPool *CP = getConstantPool(Section)) {
    [all...]
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);
WinCOFFStreamer.cpp 98 "Got non-COFF section in the COFF backend!");
124 "Got non-COFF section in the COFF backend!");
185 "Got non-COFF section in the COFF backend!");
199 assert(!Symbol->isInSection() && "Symbol must not already have a section!");
201 const MCSection *Section = getContext().getObjectFileInfo()->getBSSSection();
202 MCSectionData &SectionData = getAssembler().getOrCreateSectionData(*Section);
209 AssignSection(Symbol, Section);
220 void MCWinCOFFStreamer::EmitZerofill(const MCSection *Section,
226 void MCWinCOFFStreamer::EmitTBSSSymbol(const MCSection *Section,
236 // TODO: Implement this if you want to emit .comment section in COFF obj files
    [all...]
  /external/llvm/lib/Object/
ELFYAML.cpp 19 ELFYAML::Section::~Section() {}
659 IO.mapOptional("Section", Symbol.Section, StringRef());
672 static void commonSectionMapping(IO &IO, ELFYAML::Section &Section) {
673 IO.mapOptional("Name", Section.Name, StringRef());
674 IO.mapRequired("Type", Section.Type);
675 IO.mapOptional("Flags", Section.Flags, ELFYAML::ELF_SHF(0));
676 IO.mapOptional("Address", Section.Address, Hex64(0))
    [all...]
COFFYAML.cpp 20 Section::Section() { memset(&Header, 0, sizeof(COFF::section)); }
378 void MappingTraits<COFFYAML::Section>::mapping(IO &IO, COFFYAML::Section &Sec) {
  /external/chromium_org/courgette/
types_win_pe.h 13 // PE file section header. This struct has the same layout as the
18 struct Section {
32 COMPILE_ASSERT(sizeof(Section) == 40, section_is_40_bytes);
  /external/chromium_org/tools/grit/grit/gather/
rc.py 43 class Section(regexp.RegexpGatherer):
44 '''A section from a resource file.'''
49 for inclusion in a resource section.'''
65 super(Section, self)._RegExpParse(rexp, text_to_parse)
98 class Dialog(Section):
99 '''A resource section that contains a dialog resource.'''
101 # A typical dialog resource section looks like this:
153 class Menu(Section):
154 '''A resource section that contains a menu resource.'''
156 # A typical menu resource section looks something like this
    [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(nullptr), Value(nullptr),
88 /// Defined symbols are either absolute or in some section.
90 return Section != nullptr
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 156 /// section. This can be done with a special directive if the target supports
158 /// of the section.
160 /// SectionLabel is a temporary label emitted at the start of the section that
170 // Get the section that we're referring to, based on SectionLabel.
171 const MCSection &Section = SectionLabel->getSection();
173 // If Label has already been emitted, verify that it is in the same section as
174 // section label for sanity.
175 assert((!Label->isInSection() || &Label->getSection() == &Section) &&
176 "Section offset using wrong section base for label")
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MachObjectWriter.cpp 132 // AArch64 pcrel relocation addends do not include the section offset.
172 // SymbolNum of 0 indicates the absolute section.
233 "'. Must have non-local symbol earlier in section.");
238 "'. Must have non-local symbol earlier in section.");
272 const MCSectionMachO &Section = static_cast<const MCSectionMachO &>(
276 // (i.e., it's not in the symbol table associated with a section) resolve
304 if (Section.hasAttribute(MachO::S_ATTR_DEBUG))
309 // sections, and for pointer-sized relocations (.quad), we allow section
320 // we have to be in a debug info section.
321 if (!Section.hasAttribute(MachO::S_ATTR_DEBUG) && Log2Size != 3
    [all...]
  /external/smack/src/org/xbill/DNS/
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...]
  /frameworks/av/include/media/stagefright/
MediaCodecList.h 55 enum Section {
70 Section mCurrentSection;
71 Vector<Section> mPastSections;
  /hardware/libhardware/modules/camera/
VendorTags.cpp 40 // Describes a vendor tag section
41 struct Section {
48 // Entry arrays for each section
75 const Section DemoSections[DEMO_SECTION_COUNT] = {
90 // Get a static handle to a specific vendor tag section
91 const Section* getSection(uint32_t tag)
93 uint32_t section = (tag - vendor_section_start) >> 16; local
96 ALOGE("%s: Tag 0x%x before vendor section", __func__, tag);
100 if (section >= DEMO_SECTION_COUNT) {
101 ALOGE("%s: Tag 0x%x after vendor section", __func__, tag)
111 const Section* section = getSection(tag); local
161 const Section* section = getSection(tag); local
    [all...]
  /external/lldb/source/Core/
Section.cpp 1 //===-- Section.cpp ---------------------------------------------*- C++ -*-===//
10 #include "lldb/Core/Section.h"
18 Section::Section (const ModuleSP &module_sp,
44 // printf ("Section::Section(%p): module=%p, sect_id = 0x%16.16" PRIx64 ", addr=[0x%16.16" PRIx64 " - 0x%16.16" PRIx64 "), file [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 "), flags = 0x%8.8x, name = %s\n",
48 Section::Section (const lldb::SectionSP &parent_section_sp,
75 // printf ("Section::Section(%p): module=%p, sect_id = 0x%16.16" PRIx64 ", addr=[0x%16.16" PRIx64 " - 0x%16.16" PRIx64 "), file (…)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
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/
Section.java 23 * A section of a {@code .dex} file. Each section consists of a list
26 public abstract class Section {
68 public Section(String name, DexFile file, int alignment) {
193 * be contained in this section. This is only valid to call
218 * Gets the collection of all the items in this section.
279 * Returns the name of this section, for annotation purposes.
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
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/lldb/include/lldb/Core/
Section.h 1 //===-- Section.h -----------------------------------------------*- C++ -*-===//
47 FindSectionIndex (const Section* sect);
105 class Section :
106 public std::enable_shared_from_this<Section>,
112 // Create a root section (one that has no parent)
113 Section (const lldb::ModuleSP &module_sp,
124 // Create a section that is a child of parent_section_sp
125 Section (const lldb::SectionSP &parent_section_sp, // NULL for top level sections, non-NULL for child sections
137 ~Section ();
140 Compare (const Section& a, const Section& b)
    [all...]
  /external/llvm/bindings/python/llvm/
object.py 19 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.
55 for section in obj.get_sections():
56 section_names.append(section.name)
96 "Section",
126 This is a generator for llvm.object.Section instances.
137 last = Section(sections)
179 class Section(LLVMObject)
330 def section(self): member in class:Symbol
    [all...]
  /external/llvm/include/llvm/Object/
COFFYAML.h 49 struct Section {
50 COFF::section Header;
55 Section();
74 std::vector<Section> Sections;
81 LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Section)
179 struct MappingTraits<COFFYAML::Section> {
180 static void mapping(IO &IO, COFFYAML::Section &Sec);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 133 // SymbolNum of 0 indicates the absolute section.
172 // section has only temporary symbols and thus the symbols don't have base
173 // symbols. This is encoded using the section ordinal and non-extern
231 const MCSectionMachO &Section = static_cast<const MCSectionMachO&>(
233 if (Section.hasAttribute(MachO::S_ATTR_DEBUG))
248 // The index is the section ordinal (1-based).
412 Twine("Section too large, can't encode "
552 // SymbolNum of 0 indicates the absolute section.
578 // The index is the section ordinal (1-based).
  /external/llvm/tools/lli/
RemoteMemoryManager.cpp 99 Allocation &Section = UnmappedSections[i];
100 if (Section.IsCode) {
101 unsigned Size = Section.MB.size();
102 unsigned Align = Section.Alignment;
106 // section.
108 // Save off the address of the new section and allocate its space.
109 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset));
116 Allocation &Section = UnmappedSections[i];
117 if (!Section.IsCode) {
118 unsigned Size = Section.MB.size()
    [all...]

Completed in 349 milliseconds

1 2 3 4