Home
last modified time | relevance | path

Searched refs:element_info (Results 1 – 15 of 15) sorted by relevance

/third_party/boost/tools/quickbook/src/
Dphrase_element_grammar.cpp47 ("?", element_info(element_info::phrase, &local.cond_phrase)) in init_phrase_elements()
58 ("$", element_info(element_info::phrase, &local.image, phrase_tags::image)) in init_phrase_elements()
109 ("@", element_info(element_info::phrase, &local.link, phrase_tags::url)) in init_phrase_elements()
110 ("link", element_info(element_info::phrase, &local.link, phrase_tags::link)) in init_phrase_elements()
111 ("funcref", element_info(element_info::phrase, &local.link, phrase_tags::funcref)) in init_phrase_elements()
112 ("classref", element_info(element_info::phrase, &local.link, phrase_tags::classref)) in init_phrase_elements()
113 ("memberref", element_info(element_info::phrase, &local.link, phrase_tags::memberref)) in init_phrase_elements()
114 ("enumref", element_info(element_info::phrase, &local.link, phrase_tags::enumref)) in init_phrase_elements()
115 ("macroref", element_info(element_info::phrase, &local.link, phrase_tags::macroref)) in init_phrase_elements()
116 ("headerref", element_info(element_info::phrase, &local.link, phrase_tags::headerref)) in init_phrase_elements()
[all …]
Dblock_element_grammar.cpp65 …("section", element_info(element_info::section_block, &local.begin_section, block_tags::begin_sect… in init_block_elements()
66 …("endsect", element_info(element_info::section_block, &local.end_section, block_tags::end_section)) in init_block_elements()
89 …("heading", element_info(element_info::conditional_or_block, &local.heading, block_tags::generic_h… in init_block_elements()
90 … ("h1", element_info(element_info::conditional_or_block, &local.heading, block_tags::heading1)) in init_block_elements()
91 … ("h2", element_info(element_info::conditional_or_block, &local.heading, block_tags::heading2)) in init_block_elements()
92 … ("h3", element_info(element_info::conditional_or_block, &local.heading, block_tags::heading3)) in init_block_elements()
93 … ("h4", element_info(element_info::conditional_or_block, &local.heading, block_tags::heading4)) in init_block_elements()
94 … ("h5", element_info(element_info::conditional_or_block, &local.heading, block_tags::heading5)) in init_block_elements()
95 … ("h6", element_info(element_info::conditional_or_block, &local.heading, block_tags::heading6)) in init_block_elements()
99 … ("blurb", element_info(element_info::nested_block, &local.inner_block, block_tags::blurb)) in init_block_elements()
[all …]
Dmain_grammar.cpp115 : cl::closure<block_context_closure, element_info::context>
135 element_info::context context;
141 element_info info;
142 element_info::type_enum element_type;
154 , context(element_info::in_top_level) in main_grammar_local()
185 if (info_.type != element_info::phrase && in start()
186 info_.type != element_info::maybe_block) { in start()
194 info_.type != element_info::maybe_block) { in start()
216 qbk_version_n < 107u && info_.type & element_info::in_phrase) { in result()
233 void failure() { l.element_type = element_info::nothing; } in failure()
[all …]
Dgrammar_impl.hpp25 struct element_info struct
97 element_info() : type(nothing), rule(), tag(0) {} in element_info() function
99 element_info( in element_info() function
150 cl::symbols<element_info> elements;
/third_party/alsa-lib/include/
Daserver.h127 snd_ctl_elem_info_t element_info; member
/third_party/alsa-lib/src/control/
Dcontrol_shm.c180 ctrl->u.element_info = *info; in snd_ctl_shm_elem_info()
185 *info = ctrl->u.element_info; in snd_ctl_shm_elem_info()
395 .element_info = snd_ctl_shm_elem_info,
Dcontrol_local.h32 int (*element_info)(snd_ctl_t *handle, snd_ctl_elem_info_t *info); member
Dcontrol_hw.c362 .element_info = snd_ctl_hw_elem_info,
Dcontrol_ext.c473 .element_info = snd_ctl_ext_elem_info,
Dcontrol_remap.c887 .element_info = snd_ctl_remap_elem_info,
Dcontrol.c427 return ctl->ops->element_info(ctl, info); in snd_ctl_elem_info()
/third_party/gstreamer/gstreamer/gst/
Dgstdeviceprovider.c91 static const GTypeInfo element_info = { in gst_device_provider_get_type() local
105 &element_info, G_TYPE_FLAG_ABSTRACT); in gst_device_provider_get_type()
Dgstelement.c180 static const GTypeInfo element_info = { in gst_element_get_type() local
194 &element_info, G_TYPE_FLAG_ABSTRACT); in gst_element_get_type()
/third_party/glib/glib/tests/
Dgvariant.c1479 GVariantTypeInfo *element_info; in test_array() local
1493 element_info = g_variant_type_info_get (G_VARIANT_TYPE (element_type)); in test_array()
1495 g_assert_true (g_variant_type_info_element (array_info) == element_info); in test_array()
1507 instances[i] = random_instance (element_info); in test_array()
1523 g_variant_type_info_query (element_info, NULL, &element_fixed_size); in test_array()
1602 g_variant_type_info_unref (element_info); in test_array()
/third_party/alsa-lib/aserver/
Daserver.c658 ctrl->result = snd_ctl_elem_info(ctl, &ctrl->u.element_info); in ctl_shm_cmd()