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

1 2 3

  /external/libvpx/vpx_ports/
emms.asm 14 section .text label
x86_abi_support.asm 283 ; Name of the rodata section
288 %define SECTION_RODATA section .text
291 section .text label
295 %define SECTION_RODATA section .rodata
301 section .note.GNU-stack noalloc noexec nowrite progbits label
302 section .text label
304 section .note.GNU-stack noalloc noexec nowrite progbits label
305 section .text label
  /external/elfutils/tests/
newscn.c 26 Elf_Scn *section; local
50 section = elf_newscn (elf);
51 section = elf_nextscn (elf, section);
52 assert (section == NULL);
  /build/tools/soslim/
common.c 9 Elf_Scn* section = NULL; local
10 while ((section = elf_nextscn(elf, section)) != NULL) {
11 if (match(elf, section, user_data))
  /external/bluetooth/bluez/tools/
parser.y 71 statement : section '{' rfcomm_options '}'
83 section : WORD label
  /external/elfcopy/
common.c 9 Elf_Scn* section = NULL; local
10 while ((section = elf_nextscn(elf, section)) != NULL) {
11 if (match(elf, section, user_data))
  /external/libvpx/vp8/encoder/x86/
dct_mmx.asm 14 section .text 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/libvpx/vp8/encoder/
tokenize.h 32 int section; member in struct:__anon5139
  /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/WebCore/rendering/
RenderTableRow.h 39 RenderTableSection* section() const { return toRenderTableSection(parent()); } function in class:WebCore::RenderTableRow
  /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/webkit/WebCore/accessibility/
AccessibilityTableCell.cpp 100 RenderTableSection* section = renderCell->section(); local
102 if (!table || !section)
111 if (tableSection == section)
153 RenderTableSection* section = renderCell->section(); local
154 if (!section)
157 RenderTableCell* headerCell = section->cellAt(row, 0).cell;
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java 16 * Provides a scrolling text view previewing a named section of a
41 String section = intent.getStringExtra("section"); local
42 if (section == null || section.length() == 0) {
43 section = "SYSTEM LOG";
50 String text = BugReportParser.extractSystemLogs(in, section);
  /external/webkit/WebCore/html/
HTMLTableRowElement.cpp 96 HTMLTableSectionElement* section = static_cast<HTMLTableSectionElement*>(node); local
97 for (Node* row = section->firstChild(); row; row = row->nextSibling()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 24 import org.eclipse.ui.forms.widgets.Section;
29 * Section part for editing the properties in an Export editor.
35 Section section = getSection(); local
37 section.setText("Export Properties");
38 section.setDescription("Properties of export.properties:");
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.");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewExportPart.java 33 import org.eclipse.ui.forms.widgets.Section;
37 * Export section part for overview page.
44 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
46 Section section = getSection(); local
47 section.setText("Exporting");
59 section.setDescription("Library project cannot be exported.");
63 section.setDescription("To export the application for distribution, you have the following options:");
OverviewLinksPart.java 29 import org.eclipse.ui.forms.widgets.Section;
32 * Links section part for overview page.
40 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
42 Section section = getSection(); local
43 section.setText("Links");
44 section.setDescription("The content of the Android Manifest is made up of three sections. You can also edit the XML directly.");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 35 import org.eclipse.ui.forms.widgets.Section;
55 * Utility class that derives from SectionPart, constructs the Section with
65 * The section style includes a description and a title bar by default.
78 * The section style includes a description and a title bar by default.
79 * You can add extra styles, like Section.TWISTIE.
84 * @param use_description True if the Section.DESCRIPTION style should be added.
89 Section.TITLE_BAR |
90 (use_description ? Section.DESCRIPTION : 0));
98 * If the parent composite is a Section, the new composite is set as a client.
161 * Forces the section to recompute its layout and redraw
165 Section section = getSection(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 49 import org.eclipse.ui.forms.widgets.Section;
68 private Section mMasterSection;
185 * Creates a TableWrapLayout in the DetailsPage, which in turns contains a Section.
192 * + Section (with title/description && fill_grab horizontal)
199 * @return The new Section
201 private Section createMasterSection(Composite parent) {
207 Section section = toolkit.createSection(parent, Section.TITLE_BAR); local
208 section.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.TOP))
386 Section section = toolkit.createSection(masterTable, local
429 Section section = ((Section) unknownTable.getParent()); local
    [all...]

Completed in 1628 milliseconds

1 2 3