Home
last modified time | relevance | path

Searched refs:section (Results 1 – 25 of 5053) sorted by relevance

12345678910>>...203

/external/swiftshader/third_party/LLVM/test/MC/ELF/
Dmany-section.s8 .section saaaa
9 .section saaab
10 .section saaba
11 .section saabb
12 .section saaca
13 .section saacb
14 .section saada
15 .section saadb
16 .section saaea
17 .section saaeb
[all …]
/external/adhd/cras/src/server/
Dcras_alsa_ucm_section.c14 static void ucm_section_free(struct ucm_section *section) { in ucm_section_free() argument
15 if (section->name) in ucm_section_free()
16 free((void *)section->name); in ucm_section_free()
17 if (section->jack_name) in ucm_section_free()
18 free((void *)section->jack_name); in ucm_section_free()
19 if (section->jack_type) in ucm_section_free()
20 free((void *)section->jack_type); in ucm_section_free()
21 if (section->mixer_name) in ucm_section_free()
22 free((void *)section->mixer_name); in ucm_section_free()
23 mixer_name_free(section->coupled); in ucm_section_free()
[all …]
/external/elfutils/tests/
Drun-elfgetchdr.sh90 section 1: NOT Compressed
91 section 2: GNU Compressed size: 60
92 section 3: GNU Compressed size: aa
93 section 4: NOT Compressed
94 section 5: GNU Compressed size: 8d
95 section 6: NOT Compressed
96 section 7: NOT Compressed
97 section 8: NOT Compressed
102 section 1: NOT Compressed
103 section 2: ELF Compressed ch_type: 1, ch_size: 60, ch_addralign: 10
[all …]
/external/google-breakpad/src/common/
Dtest_assembler_unittest.cc733 Section section; member in SectionFixture
766 section.Append(data, sizeof(data)); in TEST_F()
767 ASSERT_TRUE(section.GetContents(&contents)); in TEST_F()
773 section.Append(data, sizeof(data)); in TEST_F()
774 section.Append(data, sizeof(data)); in TEST_F()
775 ASSERT_TRUE(section.GetContents(&contents)); in TEST_F()
785 section.Append(s1); in TEST_F()
786 section.Append(s2); in TEST_F()
787 ASSERT_TRUE(section.GetContents(&contents)); in TEST_F()
792 section.AppendCString("howdy"); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ELF/
Dsection.s6 .section .note.GNU-stack,"",@progbits
7 .section .note.GNU-stack2,"",%progbits
8 .section .note.GNU-,"",@progbits
9 .section -.note.GNU,"","progbits"
10 .section src/stack.c,"",@progbits
11 .section ~!@$%^&*()_-+={[}]|\\:<>,"",@progbits
22 .section .init
23 .section .fini
24 .section .rodata
25 .section zed, ""
[all …]
/external/python/cpython2/Lib/
DConfigParser.py142 def __init__(self, section): argument
143 Error.__init__(self, 'No section: %r' % (section,))
144 self.section = section
145 self.args = (section, )
150 def __init__(self, section): argument
151 Error.__init__(self, "Section %r already exists" % section)
152 self.section = section
153 self.args = (section, )
158 def __init__(self, option, section): argument
160 (option, section))
[all …]
/external/google-breakpad/src/common/dwarf/
Ddwarf2reader_cfi_unittest.cc89 const CFISection &section);
90 #define PERHAPS_WRITE_DEBUG_FRAME_FILE(name, section) \ argument
91 WriteELFFrameSection("cfitest-" name, ".debug_frame", section);
92 #define PERHAPS_WRITE_EH_FRAME_FILE(name, section) \ argument
93 WriteELFFrameSection("cfitest-" name, ".eh_frame", section);
95 #define PERHAPS_WRITE_DEBUG_FRAME_FILE(name, section) argument
96 #define PERHAPS_WRITE_EH_FRAME_FILE(name, section) argument
197 CFISection section(kBigEndian, 8); in TEST_F() local
198 section in TEST_F()
212 ASSERT_TRUE(section.GetContents(&contents)); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/COFF/
Dsection.s4 .section .foo$bar; .long 1
5 .section .foo@bar; .long 1
6 .section ABCDEFGHIJKLMNOPQRSTUVWXYZ; .long 1
7 .section abcdefghijklmnopqrstuvwxyz; .long 1
8 .section _0123456789; .long 1
28 .section s ; .long 1
29 .section s_, "" ; .long 1
30 .section s_a,"a"; .long 1
31 .section s_b,"b"; .long 1
32 .section s_d,"d"; .long 1
[all …]
/external/elfutils/libebl/
Deblsectionname.c39 ebl_section_name (Ebl *ebl, int section, int xsection, char *buf, size_t len, in ebl_section_name() argument
42 const char *res = ebl != NULL ? ebl->section_name (section, xsection, in ebl_section_name()
47 if (section == SHN_UNDEF) in ebl_section_name()
49 else if (section == SHN_ABS) in ebl_section_name()
51 else if (section == SHN_COMMON) in ebl_section_name()
53 else if (section == SHN_BEFORE) in ebl_section_name()
55 else if (section == SHN_AFTER) in ebl_section_name()
57 else if ((section < SHN_LORESERVE || section == SHN_XINDEX) in ebl_section_name()
58 && (size_t) section < shnum) in ebl_section_name()
60 int idx = section != SHN_XINDEX ? section : xsection; in ebl_section_name()
[all …]
/external/python/cpython3/Lib/
Dconfigparser.py183 def __init__(self, section): argument
184 Error.__init__(self, 'No section: %r' % (section,))
185 self.section = section
186 self.args = (section, )
197 def __init__(self, section, source=None, lineno=None): argument
198 msg = [repr(section), " already exists"]
209 self.section = section
212 self.args = (section, source, lineno)
222 def __init__(self, section, option, source=None, lineno=None): argument
223 msg = [repr(option), " in section ", repr(section),
[all …]
/external/llvm/test/MC/COFF/
Dsection.s4 .section .foo$bar; .long 1
5 .section .foo@bar; .long 1
6 .section ABCDEFGHIJKLMNOPQRSTUVWXYZ; .long 1
7 .section abcdefghijklmnopqrstuvwxyz; .long 1
8 .section _0123456789; .long 1
28 .section s ; .long 1
29 .section s_, "" ; .long 1
30 .section s_a,"a"; .long 1
31 .section s_b,"b"; .long 1
32 .section s_d,"d"; .long 1
[all …]
/external/cldr/tools/java/org/unicode/cldr/json/
DJSON_config_supplemental.txt1 section=characterFallbacks ; path=//cldr/supplemental/characters/.* ; package=core
2 section=dayPeriods ; path=//cldr/supplemental/dayPeriodRuleSet/.* ; package=core
3 section=gender ; path=//cldr/supplemental/gender/.* ; package=core
4 section=languageInfo ; path=//cldr/supplemental/languageInfo/.* ; package=core
5 section=likelySubtags ; path=//cldr/supplemental/likelySubtags/.* ; package=core
6 section=metaZones ; path=//cldr/supplemental/metaZones/.* ; package=core
7 section=primaryZones ; path=//cldr/supplemental/primaryZones/.* ; package=core
8 section=numberingSystems ; path=//cldr/supplemental/numberingSystems/.* ; package=core
9 section=ordinals ; path=//cldr/supplemental/plurals\[@type="ordinal"\]/.* ; package=core
10 section=plurals ; path=//cldr/supplemental/plurals\[@type="cardinal"\]/.* ; package=core
[all …]
DJSON_config.txt1 section=languages ; path=//cldr/main/[^/]++/localeDisplayNames/languages/.* ; package=localenames
2 section=scripts ; path=//cldr/main/[^/]++/localeDisplayNames/scripts/.* ; package=localenames
3 section=territories ; path=//cldr/main/[^/]++/localeDisplayNames/territories/.* ; package=localenam…
4 section=variants ; path=//cldr/main/[^/]++/localeDisplayNames/variants/.* ; package=localenames
5 section=transformNames ; path=//cldr/main/[^/]++/localeDisplayNames/transformNames/.* ; package=loc…
6 section=measurementSystemNames ; path=//cldr/main/[^/]++/localeDisplayNames/measurementSystemNames/…
7 section=localeDisplayNames ; path=//cldr/main/[^/]++/localeDisplayNames/.* ; package=localenames
8 section=contextTransforms ; path=//cldr/main/[^/]++/contextTransforms/.* ; package=misc
9 section=layout ; path=//cldr/main/[^/]++/layout/.* ; package=misc
10 section=characters ; path=//cldr/main/[^/]++/characters/.* ; package=misc
[all …]
/external/autotest/client/cros/faft/utils/
Dflashrom_handler.py168 for section in self.fv_sections.itervalues():
169 for subsection_name in section.names():
179 blob = self.fum.get_section(self.image, section.get_body_name())
183 section.set_sha(s.hexdigest())
186 if not section.get_sig_name():
191 self.image, section.get_sig_name())
193 section.set_version(self.os_if.retrieve_body_version(vb_section))
194 section.set_flags(self.os_if.retrieve_preamble_flags(vb_section))
195 section.set_datakey_version(
197 section.set_kernel_subkey_version(
[all …]
/external/autotest/client/cros/faft/
Drpc_functions.py32 def wrapper(self, section, *args, **dargs): argument
37 if type(section) in (tuple, list):
38 for sec in section:
41 image_operator(self, section, *args, **dargs)
366 def _bios_get_preamble_flags(self, section): argument
372 return self._bios_handler.get_section_flags(section)
374 def _bios_set_preamble_flags(self, section, flags): argument
380 version = self._bios_get_version(section)
381 self._bios_handler.set_section_version(section, version, flags,
384 def _bios_get_body_sha(self, section): argument
[all …]
/external/llvm/test/MC/ELF/
Dsection.s5 .section .note.GNU-stack,"",@progbits
6 .section .note.GNU-stack2,"",%progbits
7 .section .note.GNU-,"",@progbits
8 .section -.note.GNU,"","progbits"
9 .section src/stack.c,"",@progbits
10 .section ~!@$%^&*()_-+={[}]|\\:<>,"",@progbits
21 .section .init
22 .section .fini
23 .section .rodata
24 .section zed, ""
[all …]
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b2.rst5 .. section: Core and Builtins
14 .. section: Core and Builtins
23 .. section: Core and Builtins
33 .. section: Core and Builtins
43 .. section: Core and Builtins
53 .. section: Core and Builtins
63 .. section: Core and Builtins
73 .. section: Core and Builtins
83 .. section: Core and Builtins
92 .. section: Core and Builtins
[all …]
D3.5.0a1.rst5 .. section: Core and Builtins
14 .. section: Core and Builtins
24 .. section: Core and Builtins
34 .. section: Core and Builtins
44 .. section: Core and Builtins
54 .. section: Core and Builtins
66 .. section: Core and Builtins
76 .. section: Core and Builtins
86 .. section: Core and Builtins
96 .. section: Core and Builtins
[all …]
D3.5.2rc1.rst5 .. section: Core and Builtins
15 .. section: Core and Builtins
24 .. section: Core and Builtins
33 .. section: Core and Builtins
42 .. section: Core and Builtins
51 .. section: Core and Builtins
60 .. section: Core and Builtins
69 .. section: Core and Builtins
81 .. section: Core and Builtins
90 .. section: Core and Builtins
[all …]
D3.5.3rc1.rst5 .. section: Core and Builtins
14 .. section: Core and Builtins
23 .. section: Core and Builtins
33 .. section: Core and Builtins
43 .. section: Core and Builtins
52 .. section: Core and Builtins
62 .. section: Core and Builtins
72 .. section: Core and Builtins
82 .. section: Core and Builtins
92 .. section: Core and Builtins
[all …]
/external/u-boot/arch/arm/lib/
Dsections.c21 char __bss_start[0] __attribute__((section(".__bss_start")));
22 char __bss_end[0] __attribute__((section(".__bss_end")));
23 char __image_copy_start[0] __attribute__((section(".__image_copy_start")));
24 char __image_copy_end[0] __attribute__((section(".__image_copy_end")));
25 char __rel_dyn_start[0] __attribute__((section(".__rel_dyn_start")));
26 char __rel_dyn_end[0] __attribute__((section(".__rel_dyn_end")));
27 char __secure_start[0] __attribute__((section(".__secure_start")));
28 char __secure_end[0] __attribute__((section(".__secure_end")));
29 char __secure_stack_start[0] __attribute__((section(".__secure_stack_start")));
30 char __secure_stack_end[0] __attribute__((section(".__secure_stack_end")));
[all …]
/external/python/cpython2/Misc/NEWS.d/
D2.6b1.rst5 .. section: Core and Builtins
16 .. section: Core and Builtins
26 .. section: Core and Builtins
35 .. section: Core and Builtins
46 .. section: Core and Builtins
55 .. section: Core and Builtins
64 .. section: Core and Builtins
73 .. section: Core and Builtins
82 .. section: Core and Builtins
94 .. section: Core and Builtins
[all …]
D2.7.10rc1.rst5 .. section: Core and Builtins
14 .. section: Core and Builtins
24 .. section: Core and Builtins
33 .. section: Core and Builtins
43 .. section: Core and Builtins
52 .. section: Library
61 .. section: Library
71 .. section: Library
81 .. section: Library
91 .. section: Library
[all …]
D2.7.1rc1.rst5 .. section: Core and Builtins
15 .. section: Core and Builtins
25 .. section: Core and Builtins
35 .. section: Core and Builtins
44 .. section: Core and Builtins
54 .. section: Core and Builtins
63 .. section: Core and Builtins
73 .. section: Core and Builtins
85 .. section: Core and Builtins
94 .. section: Core and Builtins
[all …]
/external/python/cpython3/Lib/idlelib/
Dconfig.py51 def Get(self, section, option, type=None, default=None, raw=False): argument
59 if not self.has_option(section, option):
62 return self.getboolean(section, option)
64 return self.getint(section, option)
66 return self.get(section, option, raw=raw)
68 def GetOptionList(self, section): argument
70 if self.has_section(section):
71 return self.options(section)
85 def SetOption(self, section, option, value): argument
90 if self.has_option(section, option):
[all …]

12345678910>>...203