/third_party/mingw-w64/mingw-w64-crt/include/ |
D | sect_attribs.h | 16 #pragma section(".CRTMP$XCA",long,_ATTRIBUTES) 17 #pragma section(".CRTMP$XCZ",long,_ATTRIBUTES) 18 #pragma section(".CRTMP$XIA",long,_ATTRIBUTES) 19 #pragma section(".CRTMP$XIZ",long,_ATTRIBUTES) 21 #pragma section(".CRTMA$XCA",long,_ATTRIBUTES) 22 #pragma section(".CRTMA$XCZ",long,_ATTRIBUTES) 23 #pragma section(".CRTMA$XIA",long,_ATTRIBUTES) 24 #pragma section(".CRTMA$XIZ",long,_ATTRIBUTES) 26 #pragma section(".CRTVT$XCA",long,_ATTRIBUTES) 27 #pragma section(".CRTVT$XCZ",long,_ATTRIBUTES) [all …]
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/mpegts/ |
D | gstmpegtssection.c | 147 __common_section_checks (GstMpegtsSection * section, guint min_size, in __common_section_checks() argument 153 if (section->section_length < min_size) { in __common_section_checks() 156 section->pid, section->table_id, section->section_length, min_size); in __common_section_checks() 161 if (!section->short_section in __common_section_checks() 162 && (_calc_crc32 (section->data, section->section_length) != 0)) { in __common_section_checks() 163 GST_WARNING ("PID:0x%04x table_id:0x%02x, Bad CRC on section", section->pid, in __common_section_checks() 164 section->table_id); in __common_section_checks() 169 res = parsefunc (section); in __common_section_checks() 172 section->pid, section->table_id); in __common_section_checks() 174 section->destroy_parsed = destroynotify; in __common_section_checks() [all …]
|
D | gst-dvb-section.c | 155 _parse_eit (GstMpegtsSection * section) in _parse_eit() argument 164 data = section->data; in _parse_eit() 165 end = data + section->section_length; in _parse_eit() 177 eit->actual_stream = (section->table_id == 0x4E || in _parse_eit() 178 (section->table_id >= 0x50 && section->table_id <= 0x5F)); in _parse_eit() 179 eit->present_following = (section->table_id == 0x4E in _parse_eit() 180 || section->table_id == 0x4F); in _parse_eit() 192 section->pid, (gint) (end - 4 - data)); in _parse_eit() 228 section->pid, (gint) (data - section->data), section->section_length); in _parse_eit() 252 gst_mpegts_section_get_eit (GstMpegtsSection * section) in gst_mpegts_section_get_eit() argument [all …]
|
D | gst-atsc-section.c | 92 _parse_atsc_vct (GstMpegtsSection * section) in _parse_atsc_vct() argument 103 data = section->data; in _parse_atsc_vct() 104 end = data + section->section_length; in _parse_atsc_vct() 106 vct->transport_stream_id = section->subtable_extension; in _parse_atsc_vct() 218 gst_mpegts_section_get_atsc_tvct (GstMpegtsSection * section) in gst_mpegts_section_get_atsc_tvct() argument 220 g_return_val_if_fail (section->section_type == GST_MPEGTS_SECTION_ATSC_TVCT, in gst_mpegts_section_get_atsc_tvct() 222 g_return_val_if_fail (section->cached_parsed || section->data, NULL); in gst_mpegts_section_get_atsc_tvct() 224 if (!section->cached_parsed) in gst_mpegts_section_get_atsc_tvct() 225 section->cached_parsed = in gst_mpegts_section_get_atsc_tvct() 226 __common_section_checks (section, 16, _parse_atsc_vct, in gst_mpegts_section_get_atsc_tvct() [all …]
|
D | gstmpegtssection.h | 35 #define GST_MPEGTS_SECTION(section) ((GstMpegtsSection*) section) argument 37 #define GST_MPEGTS_SECTION_TYPE(section) (GST_MPEGTS_SECTION (section)->section_type) argument 120 typedef gboolean (*GstMpegtsPacketizeFunc) (GstMpegtsSection *section); 181 GBytes *gst_mpegts_section_get_data (GstMpegtsSection *section); 201 GPtrArray *gst_mpegts_section_get_pat (GstMpegtsSection *section); 219 GPtrArray *gst_mpegts_section_get_cat (GstMpegtsSection *section); 393 const GstMpegtsPMT *gst_mpegts_section_get_pmt (GstMpegtsSection *section); 401 GPtrArray *gst_mpegts_section_get_tsdt (GstMpegtsSection *section); 406 #define gst_mpegts_section_ref(section) ((GstMpegtsSection*) gst_mini_object_ref (GST_MINI_OBJECT… argument 407 #define gst_mpegts_section_unref(section) (gst_mini_object_unref (GST_MINI_OBJECT_CAST (section))) argument [all …]
|
/third_party/weston/tests/ |
D | config-parser-test.c | 189 struct weston_config_section *section; in ZUC_TEST_F() local 192 section = weston_config_get_section(config, in ZUC_TEST_F() 194 ZUC_ASSERT_NULL(section); in ZUC_TEST_F() 201 struct weston_config_section *section; in ZUC_TEST_F() local 204 section = weston_config_get_section(config, "foo", NULL, NULL); in ZUC_TEST_F() 205 r = weston_config_section_get_string(section, "a", &s, NULL); in ZUC_TEST_F() 218 struct weston_config_section *section; in ZUC_TEST_F() local 221 section = weston_config_get_section(config, "foo", NULL, NULL); in ZUC_TEST_F() 222 r = weston_config_section_get_string(section, "b", &s, NULL); in ZUC_TEST_F() 233 struct weston_config_section *section; in ZUC_TEST_F() local [all …]
|
/third_party/python/Lib/ |
D | configparser.py | 184 def __init__(self, section): argument 185 Error.__init__(self, 'No section: %r' % (section,)) 186 self.section = section 187 self.args = (section, ) 198 def __init__(self, section, source=None, lineno=None): argument 199 msg = [repr(section), " already exists"] 210 self.section = section 213 self.args = (section, source, lineno) 223 def __init__(self, section, option, source=None, lineno=None): argument 224 msg = [repr(option), " in section ", repr(section), [all …]
|
/third_party/uboot/u-boot-2020.01/arch/arm/lib/ |
D | sections.c | 21 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 …]
|
/third_party/boost/libs/geometry/doc/ |
D | make_qbk.py | 63 def group_to_quickbook(section): argument 64 run_command(cmd % ("group__" + section.replace("_", "__"), section)) 66 def model_to_quickbook(section): argument 67 run_command(cmd % ("classboost_1_1geometry_1_1model_1_1" + section.replace("_", "__"), section)) 69 def model_to_quickbook2(classname, section): argument 70 run_command(cmd % ("classboost_1_1geometry_1_1model_1_1" + classname, section)) 72 def struct_to_quickbook(section): argument 73 run_command(cmd % ("structboost_1_1geometry_1_1" + section.replace("_", "__"), section)) 75 def class_to_quickbook(section): argument 76 run_command(cmd % ("classboost_1_1geometry_1_1" + section.replace("_", "__"), section)) [all …]
|
D | reference.qbk | 21 [section:reference Reference] 24 [section:access Access Functions] 26 [/ This section is not ordered alfabetically 29 [section:get get] 33 [section:set set] 37 [section:exterior_ring exterior_ring] 41 [section:interior_rings interior_rings] 47 [section:adapted Adapted models] 53 [section:boost_polygon Boost.Polygon] 59 [section:boost_range Boost.Range] [all …]
|
/third_party/openssl/crypto/ts/ |
D | ts_conf.c | 116 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section) in TS_CONF_get_tsa_section() argument 118 if (!section) { in TS_CONF_get_tsa_section() 119 section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_TSA); in TS_CONF_get_tsa_section() 120 if (!section) in TS_CONF_get_tsa_section() 123 return section; in TS_CONF_get_tsa_section() 126 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb, in TS_CONF_set_serial() argument 130 char *serial = NCONF_get_string(conf, section, ENV_SERIAL); in TS_CONF_set_serial() 132 ts_CONF_lookup_fail(section, ENV_SERIAL); in TS_CONF_set_serial() 144 int TS_CONF_set_crypto_device(CONF *conf, const char *section, in TS_CONF_set_crypto_device() argument 150 device = NCONF_get_string(conf, section, ENV_CRYPTO_DEVICE); in TS_CONF_set_crypto_device() [all …]
|
/third_party/python/Lib/idlelib/ |
D | config.py | 50 def Get(self, section, option, type=None, default=None, raw=False): argument 58 if not self.has_option(section, option): 61 return self.getboolean(section, option) 63 return self.getint(section, option) 65 return self.get(section, option, raw=raw) 67 def GetOptionList(self, section): argument 69 if self.has_section(section): 70 return self.options(section) 84 def SetOption(self, section, option, value): argument 89 if self.has_option(section, option): [all …]
|
/third_party/openssl/crypto/conf/ |
D | conf_api.c | 23 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section) in _CONF_get_section() argument 27 if ((conf == NULL) || (section == NULL)) in _CONF_get_section() 30 vv.section = (char *)section; in _CONF_get_section() 37 const char *section) in STACK_OF() 41 v = _CONF_get_section(conf, section); in STACK_OF() 48 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) in _CONF_add_string() argument 53 ts = (STACK_OF(CONF_VALUE) *)section->value; in _CONF_add_string() 55 value->section = section->section; in _CONF_add_string() 70 char *_CONF_get_string(const CONF *conf, const char *section, in _CONF_get_string() argument 79 if (section != NULL) { in _CONF_get_string() [all …]
|
/third_party/weston/shared/ |
D | config-parser.c | 117 config_section_get_entry(struct weston_config_section *section, in config_section_get_entry() argument 122 if (section == NULL) in config_section_get_entry() 124 wl_list_for_each(e, §ion->entry_list, link) in config_section_get_entry() 133 weston_config_get_section(struct weston_config *config, const char *section, in weston_config_get_section() argument 142 if (strcmp(s->name, section) != 0) in weston_config_get_section() 156 weston_config_section_get_int(struct weston_config_section *section, in weston_config_section_get_int() argument 162 entry = config_section_get_entry(section, key); in weston_config_section_get_int() 179 weston_config_section_get_uint(struct weston_config_section *section, in weston_config_section_get_uint() argument 187 entry = config_section_get_entry(section, key); in weston_config_section_get_uint() 216 weston_config_section_get_color(struct weston_config_section *section, in weston_config_section_get_color() argument [all …]
|
/third_party/boost/tools/quickbook/test/ |
D | section-1_7.quickbook | 5 [section Quickbook section no id test] 7 [section:id_test1 Quickbook section id test] 9 [section :id_test2 Quickbook section id test] 11 [section: id_test3 Quickbook section id test] 13 [section:-- Quickbook section odd id test] 17 [section:sect-[thing] Section with template in id] 20 [section [link section_id_1_7.id_test1 Link in title]] 22 [section [link section_id_1_7.id_test1 Link] in title]
|
D | section-1_4.quickbook | 5 [section:id_test1 Quickbook section id test] 7 [section :id_test2 Quickbook section id test] 9 [section: Quickbook section no id test 1] 11 [section:++ Quickbook section no id test 2]
|
D | section-1_5.quickbook | 5 [section:id_test1 Quickbook section id test] 7 [section :id_test2 Quickbook section id test] 9 [section: id_test3 Quickbook section id test] 11 [section:++ Quickbook section no id test]
|
/third_party/boost/boost/geometry/algorithms/detail/sections/ |
D | range_by_section.hpp | 40 namespace detail { namespace section namespace 57 …ypename ring_return_type<Polygon const>::type apply(Polygon const& polygon, Section const& section) in apply() 59 return section.ring_id.ring_index < 0 in apply() 62 static_cast<std::size_t>(section.ring_id.ring_index)); in apply() 76 MultiGeometry const& multi, Section const& section) in apply() 82 section.ring_id.multi_index >= 0 in apply() 83 && size_type(section.ring_id.multi_index) < boost::size(multi) in apply() 86 return Policy::apply(range::at(multi, size_type(section.ring_id.multi_index)), section); in apply() 118 : detail::section::full_section_range<LineString, Section> 124 : detail::section::full_section_range<Ring, Section> [all …]
|
/third_party/XKeyboardConfig/build/usr/local/share/X11/xkb/geometry/ |
D | teck | 32 section "Function" { 61 section "Special Keys" { 75 section "LeftNumbers" { 86 section "CenterNumbers" { 96 section "RightNumbers" { 112 section "LeftAlphaQWER" { 123 section "CenterAlphaQWER" { 133 section "RightAlphaQWER" { 151 section "LeftAlphaASDF" { 163 section "CenterAlphaASDF" { [all …]
|
/third_party/XKeyboardConfig/geometry/ |
D | teck | 32 section "Function" { 61 section "Special Keys" { 75 section "LeftNumbers" { 86 section "CenterNumbers" { 96 section "RightNumbers" { 112 section "LeftAlphaQWER" { 123 section "CenterAlphaQWER" { 133 section "RightAlphaQWER" { 151 section "LeftAlphaASDF" { 163 section "CenterAlphaASDF" { [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/premake/Xcode-iOS/SDL2main/SDL2main.xcodeproj/ |
D | project.pbxproj | 9 /* Begin PBXBuildFile section */ 11 /* End PBXBuildFile section */ 13 /* Begin PBXFileReference section */ 16 /* End PBXFileReference section */ 18 /* Begin PBXFrameworksBuildPhase section */ 26 /* End PBXFrameworksBuildPhase section */ 28 /* Begin PBXGroup section */ 70 /* End PBXGroup section */ 72 /* Begin PBXNativeTarget section */ 90 /* End PBXNativeTarget section */ [all …]
|
/third_party/boost/libs/test/doc/test_organization/ |
D | testorg_reference.qbk | 8 [section:test_org_reference Tests declaration and organization] 14 [section:test_org_boost_test_case `BOOST_TEST_CASE` and `BOOST_TEST_CASE_NAME`] 18 [endsect] [/section:test_org_boost_test_case] 20 [section:test_org_boost_auto_test_case `BOOST_AUTO_TEST_CASE`] 24 [endsect] [/section:test_org_boost_auto_test_case] 27 [section:test_org_boost_test_case_auto_template `BOOST_AUTO_TEST_CASE_TEMPLATE`] 31 [endsect] [/section:test_org_boost_test_case_auto_template] 34 [section:test_org_boost_test_case_template `BOOST_TEST_CASE_TEMPLATE`] 39 [endsect] [/section:test_org_boost_test_case_template] 41 [section:test_org_boost_test_case_template_function `BOOST_TEST_CASE_TEMPLATE_FUNCTION`] [all …]
|
/third_party/glib/gio/ |
D | gresource-tool.c | 74 const gchar *section, in list_resource() argument 107 …g_print ("%s%s%6"G_GSIZE_FORMAT " %s %s\n", section, section[0] ? " " : "", size, (flags & G_RESOU… in list_resource() 112 list_resource (resource, child, section, prefix, details); in list_resource() 257 const gchar *section; member 265 const gchar *section, in list_resources_cb() argument 271 if (d->section && strcmp (section, d->section) != 0) in list_resources_cb() 278 d->section ? "" : section, in list_resources_cb() 283 if (d->section) in list_resources_cb() 292 const gchar *section, in elf_list_resources() argument 299 data.section = section; in elf_list_resources() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | ass_split.c | 41 const char *section; member 51 { .section = "Script Info", 61 { .section = "V4+ Styles", 93 { .section = "V4 Styles", 120 { .section = "Events", 207 const ASSSection *section = &ass_sections[ctx->current_section]; in realloc_section_array() local 208 int *count = (int *)((uint8_t *)&ctx->ass + section->offset_count); in realloc_section_array() 209 void **section_ptr = (void **)((uint8_t *)&ctx->ass + section->offset); in realloc_section_array() 210 uint8_t *tmp = av_realloc_array(*section_ptr, (*count+1), section->size); in realloc_section_array() 214 tmp += *count * section->size; in realloc_section_array() [all …]
|
/third_party/boringssl/src/crypto/conf/ |
D | conf.c | 84 return (lh_strhash(v->section) << 2) ^ lh_strhash(v->name); in conf_value_hash() 90 if (a->section != b->section) { in conf_value_cmp() 91 i = strcmp(a->section, b->section); in conf_value_cmp() 138 if (value->section) { in value_free_contents() 139 OPENSSL_free(value->section); in value_free_contents() 168 static CONF_VALUE *NCONF_new_section(const CONF *conf, const char *section) { in NCONF_new_section() argument 178 v->section = OPENSSL_strdup(section); in NCONF_new_section() 179 if (v->section == NULL) { in NCONF_new_section() 207 static int str_copy(CONF *conf, char *section, char **pto, char *from) { in str_copy() argument 287 cp = section; in str_copy() [all …]
|