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

1 2 3 4 5

  /external/libvpx/vpx_ports/
x86_abi_support.asm 278 ; Name of the rodata section
283 %define SECTION_RODATA section .text
286 section .text label
289 %define SECTION_RODATA section .rodata
295 section .note.GNU-stack noalloc noexec nowrite progbits label
296 section .text label
298 section .note.GNU-stack noalloc noexec nowrite progbits label
299 section .text label
emms.asm 14 section .text label
  /external/elfutils/tests/
newscn.c 42 Elf_Scn *section; local
66 section = elf_newscn (elf);
67 section = elf_nextscn (elf, section);
68 assert (section == NULL);
  /external/bluetooth/bluez/tools/
parser.y 71 statement : section '{' rfcomm_options '}'
83 section : WORD label
  /external/qemu/distrib/sdl-1.2.12/src/hermes/
mmx_main.asm 16 SECTION .text
73 section .note.GNU-stack noalloc noexec nowrite progbits label
x86_main.asm 18 SECTION .text
74 section .note.GNU-stack noalloc noexec nowrite progbits label
mmxp2_32.asm 61 SECTION .text
404 section .note.GNU-stack noalloc noexec nowrite progbits label
x86p_16.asm 24 SECTION .text
489 section .note.GNU-stack noalloc noexec nowrite progbits label
x86p_32.asm 27 SECTION .text
1044 section .note.GNU-stack noalloc noexec nowrite progbits label
  /external/openssl/crypto/conf/
cnf_save.c 85 char *section; local
94 printf("[ %s ]\n",cv->section);
100 section=(v->section == NULL)?"None":v->section;
  /external/webkit/Source/WebCore/html/
HTMLTableRowElement.cpp 84 HTMLTableSectionElement* section = static_cast<HTMLTableSectionElement*>(node); local
85 for (Node* row = section->firstChild(); row; row = row->nextSibling()) {
  /external/webkit/Source/WebCore/rendering/
RenderTableRow.h 39 RenderTableSection* section() const { return toRenderTableSection(parent()); } function in class:WebCore::RenderTableRow
  /frameworks/compile/linkloader/include/impl/
ELFSymbol.hxx 36 ELFSectionTy const *section = owner->getSectionByIndex(index); local
38 *static_cast<ELFSectionStrTabTy const *>(section);
66 // Set the section header index
142 "STT_OBJECT with not BITS section.");
160 rsl_assert(sec != 0 && "STT_OBJECT with null section.");
222 "STT_FUNC with not PROGBITS section.");
225 rsl_assert(sec != 0 && "STT_FUNC with null section.");
252 "STT_SECTION with not BITS section.");
255 rsl_assert(sec != 0 && "STT_SECTION with null section.");
281 "STT_SECTION with not BITS section.")
    [all...]
  /frameworks/compile/mclinker/lib/LD/
SectionMerger.cpp 40 // wildcard to a user-defined output section.
49 LDSection* section; local
55 section = (*it).outputSection;
57 section = m_Output.getSection(pName);
59 assert(NULL != section);
60 return section;
ELFObjectReader.cpp 68 /// readObject - read section header and create LDSections.
85 LDContext::sect_iterator section, sectEnd = pInput.context()->sectEnd(); local
86 for (section = pInput.context()->sectBegin(); section != sectEnd; ++section) {
87 // ignore the section if the LDSection* in input context is NULL
88 if (NULL == *section)
91 switch((*section)->kind()) {
94 assert(NULL != (*section)->getLink());
97 *(*section)->getLink()
218 LDContext::sect_iterator section, sectEnd = pInput.context()->sectEnd(); 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...]
  /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...]
  /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/webkit/Source/WebCore/accessibility/
AccessibilityTableCell.cpp 111 RenderTableSection* section = renderCell->section(); local
113 if (!table || !section)
122 if (tableSection == section)
164 RenderTableSection* section = renderCell->section(); local
165 if (!section)
168 RenderTableCell* headerCell = section->primaryCellAt(row, 0);
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 66 /// readSectionHeaders - read ELF section header table and create LDSections
71 /// readRegularSection - read a regular section and create fragments.
76 /// readRegularSection - read a target section and create fragments.
105 /// LinkInfo - some section needs sh_link and sh_info, remember them.
107 LDSection* section; member in struct:mcld::ELFReaderIF::LinkInfo
179 /// readSectionHeaders - read ELF section header table and create LDSections
184 /// readRegularSection - read a regular section and create fragments.
189 /// readRegularSection - read a target section and create fragments.