Searched refs:sections (Results 1 - 25 of 234) sorted by relevance

12345678910

/macosx-10.9.5/cctools-845/otool/
H A Dprint_objc2_32bit.c315 struct section_info_32 *sections; member in struct:info
400 struct section_info_32 **sections,
405 struct section_info_32 *sections,
415 struct section_info_32 *sections,
468 object_addr, object_size, &info.sections,
471 s = get_section_32(info.sections, info.nsections,
474 s = get_section_32(info.sections, info.nsections,
478 s = get_section_32(info.sections, info.nsections,
481 s = get_section_32(info.sections, info.nsections,
485 s = get_section_32(info.sections, inf
1182 get_sections_32( struct load_command *load_commands, uint32_t ncmds, uint32_t sizeofcmds, enum byte_sex object_byte_sex, char *object_addr, uint32_t object_size, struct section_info_32 **sections, uint32_t *nsections, uint32_t *database) argument
1397 get_section_32( struct section_info_32 *sections, uint32_t nsections, char *segname, char *sectname) argument
1416 get_pointer_32( uint32_t p, uint32_t *offset, uint32_t *left, struct section_info_32 **s, struct section_info_32 *sections, uint32_t nsections) argument
[all...]
H A Dprint_objc2_64bit.c337 struct section_info_64 *sections; member in struct:info
424 struct section_info_64 **sections,
429 struct section_info_64 *sections,
448 struct section_info_64 *sections,
504 object_addr, object_size, &info.sections,
507 s = get_section_64(info.sections, info.nsections,
510 s = get_section_64(info.sections, info.nsections,
514 s = get_section_64(info.sections, info.nsections,
517 s = get_section_64(info.sections, info.nsections,
521 s = get_section_64(info.sections, inf
1702 get_sections_64( struct load_command *load_commands, uint32_t ncmds, uint32_t sizeofcmds, enum byte_sex object_byte_sex, char *object_addr, uint32_t object_size, struct section_info_64 **sections, uint32_t *nsections, uint64_t *database) argument
1919 get_section_64( struct section_info_64 *sections, uint32_t nsections, char *segname, char *sectname) argument
2044 get_pointer_64( uint64_t p, uint32_t *offset, uint32_t *left, struct section_info_64 **s, struct section_info_64 *sections, uint32_t nsections) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DPropertiesSidebarPane.js47 this.sections = [];
86 this.sections = [];
98 this.sections.push(section);
H A DSourceMap.js101 if (mappingPayload.sections)
102 this._parseSections(mappingPayload.sections);
108 * @param {Array.<SourceMapV3.Section>} sections
110 _parseSections: function(sections)
112 for (var i = 0; i < sections.length; ++i) {
113 var section = sections[i];
H A DStylesSidebarPane.js319 this.sections = {};
355 for (var pseudoId in this.sections) {
356 var styleRules = this._refreshStyleRules(this.sections[pseudoId], computedStyle);
362 this.sections[0][0].rebuildComputedTrace(this.sections[0]);
376 this.sections[0] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, 0, null);
377 var anchorElement = this.sections[0].inheritedPropertiesSeparatorElement;
380 this.sections[0][0].rebuildComputedTrace(this.sections[0]);
398 this.sections[pseudoI
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dcoffgrok.c134 head->sections = all;
136 for (idx = 0, section = abfd->sections; section; section = section->next, idx++)
153 head->sections[i].name = (char *) (section->name);
154 head->sections[i].code = section->flags & SEC_CODE;
155 head->sections[i].data = section->flags & SEC_DATA;
157 head->sections[i].data = 1;
158 head->sections[i].address = section->lma;
159 head->sections[i].size = bfd_get_section_size (section);
160 head->sections[i].number = idx;
161 head->sections[
[all...]
/macosx-10.9.5/ruby-104/ruby/test/openssl/
H A Dtest_config.rb36 assert_equal(['CA_default', 'ca', 'default'], c.sections.sort)
66 assert_equal(['default', 'default1 default2', 'doller', 'emptysection', 'foo', 'foo\\bar'], c.sections.sort)
122 assert_equal([], c.sections)
128 assert_equal(['default'], c.sections)
136 assert_equal([], c.sections)
144 assert_equal(['default'], c.sections)
150 assert_equal(['CA_default', 'ca', 'default'], @it.sections.sort)
210 assert_equal(['CA_default', 'ca', 'default'], @it.sections.sort)
212 assert_equal(['CA_default', 'ca', 'default', 'new_section'], @it.sections.sort)
214 assert_equal(['CA_default', 'ca', 'default', 'new_section'], @it.sections
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dreadelf.s6 # On the normal MIPS systems, sections must be aligned to 16 byte
7 # boundaries. On IA64, text sections are aligned to 16 byte boundaries.
/macosx-10.9.5/libxml2-26/libxml2/doc/examples/
H A Dindex.py18 sections = {} variable
94 global sections
137 if sections.has_key(section):
138 sections[section].append(filename)
140 sections[section] = [filename]
203 global sections
205 output.write(" <sections>\n")
206 keys = sections.keys()
210 info = sections[section]
216 output.write(" </sections>\
[all...]
/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjcrt.c7 // Boundary symbols for metadata sections
62 objc_sections sections = { local
70 __hinfo = _objc_init_image((HMODULE)&__ImageBase, &sections);
/macosx-10.9.5/emacs-92/emacs/src/
H A Dunexapollo.c49 struct scnhdr *section, *sections, *sections_limit; local
72 sections =
74 if (sections == (struct scnhdr *) 0)
76 sections_limit = sections + file_header.f_nscns;
77 if (read (source_file, sections, file_header.f_nscns*sizeof (struct scnhdr))
85 for (rwdi_section = sections; rwdi_section != sections_limit; rwdi_section++)
101 for (section = sections; (section->s_flags & STYP_TEXT) != 0; section++) ;
168 if (write (target_file, sections, file_header.f_nscns*sizeof (struct scnhdr))
172 for (section = sections; section != first_data_section; section++)
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/
H A Dprintmsg.c205 if (! ISC_LIST_EMPTY(msg->sections[DNS_SECTION_QUESTION])) {
211 if (! ISC_LIST_EMPTY(msg->sections[DNS_SECTION_ANSWER])) {
217 if (! ISC_LIST_EMPTY(msg->sections[DNS_SECTION_AUTHORITY])) {
223 if (! ISC_LIST_EMPTY(msg->sections[DNS_SECTION_ADDITIONAL])) {
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dliboasys.h77 asection *sections[OASYS_MAX_SEC_COUNT]; member in struct:_oasys_data
H A Daout-adobe.c280 /* Calculate text size as total of text sections, etc. */
287 for (sect = abfd->sections; sect; sect = sect->next)
318 for (sect = abfd->sections; sect; sect = sect->next)
322 for (sect = abfd->sections; sect; sect = sect->next)
326 for (sect = abfd->sections; sect; sect = sect->next)
349 for (sect = abfd->sections; sect; sect = sect->next)
358 for (sect = abfd->sections; sect; sect = sect->next)
381 /* Assign file offsets to sections. Text sections are first, and
382 are contiguous. Then data sections
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_constant.rb44 section = cm.sections.first
72 section = cm.sections.first
98 section = cm.sections.first
135 section = cm.sections.first
/macosx-10.9.5/llvmCore-3425.0.33/bindings/python/llvm/
H A Dobject.py17 Using this module, you can obtain information about an object file's sections,
28 Once you have an object file, you can inspect its sections and symbols directly
35 The LLVM bindings expose iteration over sections, symbols, and relocations in a
121 """Obtain the sections in this object file.
128 sections = lib.LLVMGetSections(self)
131 if lib.LLVMIsSectionIteratorAtEnd(self, sections):
134 last = Section(sections)
140 lib.LLVMMoveToNextSection(sections)
146 lib.LLVMDisposeSectionIterator(sections)
339 sections
[all...]
/macosx-10.9.5/cups-372.4/cups/cgi-bin/
H A Dmakedocset.c23 * compare_sections() - Compare the names of two help sections.
179 * 'compare_sections()' - Compare the names of two help sections.
221 cups_array_t *sections, /* Sections in index */ local
231 * Build an array of sections and their files.
234 sections = cupsArrayNew((cups_array_func_t)compare_sections, NULL);
244 if ((section = (_cups_section_t *)cupsArrayFind(sections, &key)) == NULL)
250 cupsArrayAdd(sections, section);
261 * Build a sorted list of sections based on the number of files in each section
267 for (section = (_cups_section_t *)cupsArrayFirst(sections);
269 section = (_cups_section_t *)cupsArrayNext(sections))
[all...]
/macosx-10.9.5/libxml2-26/libxml2/
H A Dcheck-relaxng-test-suite.py265 sections = node.xpathEval('string(section)')
268 nb_schemas_tests, node.lineNo(), sections))
333 sections = node.xpathEval('section')
334 if sections != [] and level <= 0:
336 for section in sections:
346 if verbose and level >= 1 and sections != []:
348 for section in sections:
H A Dcheck-relaxng-test-suite2.py279 sections = node.xpathEval('string(section)')
282 nb_schemas_tests, node.lineNo(), sections))
346 sections = node.xpathEval('section')
347 if sections != [] and level <= 0:
349 for section in sections:
359 if level >= 1 and sections != []:
361 for section in sections:
H A Dcheck-xsddata-test-suite.py277 sections = node.xpathEval('string(section)')
280 nb_schemas_tests, node.lineNo(), sections))
344 sections = node.xpathEval('section')
345 if verbose and sections != [] and level <= 0:
347 for section in sections:
358 if sections != []:
360 for section in sections:
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A Dcheck-relaxng-test-suite.py265 sections = node.xpathEval('string(section)')
268 nb_schemas_tests, node.lineNo(), sections))
333 sections = node.xpathEval('section')
334 if sections != [] and level <= 0:
336 for section in sections:
346 if verbose and level >= 1 and sections != []:
348 for section in sections:
H A Dcheck-relaxng-test-suite2.py279 sections = node.xpathEval('string(section)')
282 nb_schemas_tests, node.lineNo(), sections))
346 sections = node.xpathEval('section')
347 if sections != [] and level <= 0:
349 for section in sections:
359 if level >= 1 and sections != []:
361 for section in sections:
H A Dcheck-xsddata-test-suite.py277 sections = node.xpathEval('string(section)')
280 nb_schemas_tests, node.lineNo(), sections))
344 sections = node.xpathEval('section')
345 if verbose and sections != [] and level <= 0:
347 for section in sections:
358 if sections != []:
360 for section in sections:
/macosx-10.9.5/man-16/man/src/
H A Dmakewhatis.sh95 sections="1 2 3 4 5 6 7 8 9 n l"
101 sections=$name
180 for i in $sections
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/
H A Dclass_module.rb19 # * Added sections
73 klass.sections.concat mod.sections
316 @sections.values,
392 sections = (array[10] || []).map do |section|
396 @sections = Hash[*sections.flatten]
511 my_sections = sections.group_by { |section| section.title }
512 other_sections = cm.sections.group_by { |section| section.title }
517 @sections
[all...]

Completed in 328 milliseconds

12345678910