Home
last modified time | relevance | path

Searched refs:sections (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/external/webkit/Tools/Scripts/
Dupdate-iexploder-cssproperties98 my @sections = ();
102 @sections = <IN>;
105 return @sections;
115 my @sections = readiExploderFile($iexploderPath);
116 $sections[0] = generateEntityListFromFile($webcorePath);
117 writeiExploderFile($iexploderPath, @sections);
123 my ($filename, @sections) = @_;
126 print OUT join("", @sections);
/external/webkit/Source/WebCore/WebCore.gyp/scripts/
Daction_makenames.py66 sections = []
74 sections.append(args[:dashes])
82 sections.append(args)
86 return sections
90 sections = SplitArgsIntoSections(args[1:])
91 assert len(sections) == 2 or len(sections) == 3
92 (outputs, inputs) = sections[:2]
93 if len(sections) == 3:
94 options = sections[2]
Daction_useragentstylesheets.py54 sections = []
62 sections.append(args[:dashes])
70 sections.append(args)
74 return sections
78 sections = SplitArgsIntoSections(args[1:])
79 assert len(sections) == 2
80 (outputs, inputs) = sections
Daction_maketokenizer.py51 sections = []
59 sections.append(args[:dashes])
67 sections.append(args)
71 return sections
75 sections = SplitArgsIntoSections(args[1:])
76 assert len(sections) == 2
77 (outputs, inputs) = sections
Drule_binding.py57 sections = []
65 sections.append(args[:dashes])
73 sections.append(args)
77 return sections
81 sections = SplitArgsIntoSections(args[1:])
82 assert len(sections) == 3, sections
83 (base, inputs, options) = sections
Daction_csspropertynames.py53 sections = []
61 sections.append(args[:dashes])
69 sections.append(args)
73 return sections
Daction_cssvaluekeywords.py57 sections = []
65 sections.append(args[:dashes])
73 sections.append(args)
77 return sections
/external/smali/dexlib/src/main/java/org/jf/dexlib/
DDexFile.java399 Section sections[] = new Section[] { in DexFile() local
418 for (Section section: sections) { in DexFile()
614 Section[] sections = new Section[sectionCount]; in getOrderedSections() local
618 sections[sectionCount++] = section; in getOrderedSections()
622 Arrays.sort(sections, new Comparator<Section>() { in getOrderedSections()
628 return sections; in getOrderedSections()
644 Section[] sections; in place() local
646 sections = this.getOrderedSections(); in place()
648 sections = new Section[indexedSections.length + offsettedSections.length]; in place()
649 System.arraycopy(indexedSections, 0, sections, 0, indexedSections.length); in place()
[all …]
DMapItem.java59 Section[] sections = dexFile.getOrderedSections(); in placeItem() local
62 return offset + 4 + (sections.length + 2) * 12; in placeItem()
85 Section[] sections = dexFile.getOrderedSections(); in writeItem() local
87 out.annotate("map_size: 0x" + Integer.toHexString(sections.length + 2) + " (" + in writeItem()
88 Integer.toString(sections.length + 2) + ")"); in writeItem()
89 out.writeInt(sections.length + 2); in writeItem()
/external/dbus/bus/
Ddesktop-file.c49 BusDesktopFileSection *sections; member
128 bus_desktop_file_section_free (&desktop_file->sections[i]); in bus_desktop_file_free()
129 dbus_free (desktop_file->sections); in bus_desktop_file_free()
162 BusDesktopFileSection *sections; in grow_sections() local
169 sections = dbus_realloc (desktop_file->sections, in grow_sections()
171 if (sections == NULL) in grow_sections()
174 desktop_file->sections = sections; in grow_sections()
285 desktop_file->sections[n].section_name = name_copy; in new_section()
287 desktop_file->sections[n].n_lines = 0; in new_section()
288 desktop_file->sections[n].lines = NULL; in new_section()
[all …]
/external/elfutils/libdwfl/
Dderelocate.c275 struct dwfl_relocation *sections = mod->reloc_info; in dwfl_module_relocation_info() local
277 if (idx >= sections->count) in dwfl_module_relocation_info()
281 *shndxp = elf_ndxscn (sections->refs[idx].scn); in dwfl_module_relocation_info()
283 return sections->refs[idx].name; in dwfl_module_relocation_info()
324 struct dwfl_relocation *sections = mod->reloc_info; in find_section() local
327 size_t l = 0, u = sections->count; in find_section()
331 if (*addr < sections->refs[idx].start) in find_section()
333 else if (*addr > sections->refs[idx].end) in find_section()
340 if (*addr == sections->refs[idx].end in find_section()
341 && idx < sections->count in find_section()
[all …]
/external/bluetooth/glib/docs/reference/
DChangeLog52 * glib/glib-sections.txt:
76 * gio/gio-sections.txt: Add new functions
107 * gio/gio-sections.txt:
135 * gio/gio-sections.txt: Add g_app_info_get_commandline
158 * glib/glib-sections.txt: Add G_STATIC_ASSERT and friends
162 * gio/gio-sections.txt: Add G_FILE_ATTRIBUTE_PREVIEW_ICON
184 * gio/gio-sections.txt:
191 * gio/gio-sections.txt: Add new api
219 * gio/gio-sections.txt: Add g_themed_icon_get_names.
231 * gobject/gobject-sections.txt: Add g_object_get_type
[all …]
/external/clang/test/CodeGenObjCXX/
Dlvalue-reference-getter.mm13 - (SetSection&)sections; method
17 - (SetSection&) sections { method
18 // [self sections].at(100);
19 self.sections.at(100);
/external/elfutils/src/
Dunstrip.c867 sections_match (const struct section *sections, size_t i, in sections_match() argument
870 return (sections[i].shdr.sh_flags == shdr->sh_flags in sections_match()
871 && (sections[i].shdr.sh_size == shdr->sh_size in sections_match()
872 || (sections[i].shdr.sh_size < shdr->sh_size in sections_match()
873 && section_can_shrink (&sections[i].shdr))) in sections_match()
874 && !strcmp (sections[i].name, name)); in sections_match()
880 struct section sections[], size_t nalloc) in find_alloc_section() argument
887 if (addr < sections[i].shdr.sh_addr) in find_alloc_section()
889 else if (addr > sections[i].shdr.sh_addr) in find_alloc_section()
895 while (i > 0 && sections[i - 1].shdr.sh_addr == addr) in find_alloc_section()
[all …]
/external/qemu/
Dalpha.ld7 /* Read-only sections, merged into text segment: */
46 /* .gnu.warning sections are handled specially by elf32.em. */
77 /* We want the small data sections together, so single-instruction offsets
93 /* Stabs debugging sections. */
101 /* DWARF debug sections.
102 Symbols in the DWARF debugging sections are relative to the beginning
Di386.ld9 /* Read-only sections, merged into text segment: */
60 /* .gnu.warning sections are handled specially by elf32.em. */
103 /* We want the small data sections together, so single-instruction offsets
119 /* Stabs debugging sections. */
127 /* DWARF debug sections.
128 Symbols in the DWARF debugging sections are relative to the beginning
Darm.ld7 /* Read-only sections, merged into text segment: */
46 /* .gnu.warning sections are handled specially by elf32.em. */
103 /* We want the small data sections together, so single-instruction offsets
119 /* Stabs debugging sections. */
127 /* DWARF debug sections.
128 Symbols in the DWARF debugging sections are relative to the beginning
Dsparc.ld7 /* Read-only sections, merged into text segment: */
46 /* .gnu.warning sections are handled specially by elf32.em. */
99 /* We want the small data sections together, so single-instruction offsets
115 /* Stabs debugging sections. */
123 /* DWARF debug sections.
124 Symbols in the DWARF debugging sections are relative to the beginning
Di386-vl.ld10 /* Read-only sections, merged into text segment: */
49 /* .gnu.warning sections are handled specially by elf32.em. */
90 /* We want the small data sections together, so single-instruction offsets
106 /* Stabs debugging sections. */
114 /* DWARF debug sections.
115 Symbols in the DWARF debugging sections are relative to the beginning
/external/elfutils/
DNEWS71 or no argument (as before) for all SHF_STRINGS sections;
78 readelf, elflint: handle SHT_NOTE sections without requiring phdrs
80 elflint: stricter checks on debug sections
237 DSO versions also for symbols in nobits sections. Allow .rodata section
344 libelf: fix elf*_checksum handling of NOBITS sections
354 readelf: in section to segment mapping, indicate read-only sections.
381 readelf: print liblist sections
454 behavior if many symbol table sections are present.
465 various other sections.
491 libebl: Fix last patch to recognize relocation sections. We must not
[all …]
/external/webkit/Source/WebCore/inspector/front-end/
DStylesSidebarPane.js149 this.sections = {};
173 for (var pseudoId in this.sections) {
174 var styleRules = this._refreshStyleRules(this.sections[pseudoId], computedStyle);
181 this.sections[0][0].rebuildComputedTrace(this.sections[0]);
193 …this.sections[0] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, disabledComputed…
194 var anchorElement = this.sections[0].inheritedPropertiesSeparatorElement;
196 this.sections[0][0].rebuildComputedTrace(this.sections[0]);
215 …this.sections[pseudoId] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, disabledC…
219 _refreshStyleRules: function(sections, computedStyle) argument
223 for (var i = 0; sections && i < sections.length; ++i) {
[all …]
DPropertiesSidebarPane.js41 this.sections = []; property
70 this.sections = []; property
82 this.sections.push(section);
/external/llvm/bindings/python/llvm/
Dobject.py128 sections = lib.LLVMGetSections(self)
131 if lib.LLVMIsSectionIteratorAtEnd(self, sections):
134 last = Section(sections)
140 lib.LLVMMoveToNextSection(sections)
146 lib.LLVMDisposeSectionIterator(sections)
339 sections = lib.LLVMGetSections(self._object_file)
340 lib.LLVMMoveToContainingSection(sections, self)
342 return Section(sections)
/external/elfutils/tests/
Drun-strip-test.sh60 tempfiles testfile.sections
61 testrun ../src/readelf -S testfile.temp > testfile.sections || status=$?
62 fgrep ' .debug_' testfile.sections && status=1
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DDexFile.java100 private final Section[] sections; field in DexFile
133 sections = new Section[] { in DexFile()
517 int count = sections.length; in toDex0()
521 Section one = sections[i]; in toDex0()
534 MapItem.addMap(sections, map); in toDex0()
565 Section one = sections[i]; in toDex0()
612 for (Section s : sections) { in getStatistics()

12345678910>>...14