| /third_party/gstreamer/gstplugins_bad/ext/dash/ |
| D | gstmpdparser.c | 36 static void gst_mpdparser_parse_baseURL_node (GList ** list, xmlNode * a_node); 38 xmlNode * a_node); 40 xmlNode * a_node); 41 static void gst_mpdparser_parse_location_node (GList ** list, xmlNode * a_node); 43 xmlNode * a_node); 45 xmlNode * a_node); 47 xmlNode * a_node); 49 pointer, xmlNode * a_node, GstMPDSegmentBaseNode * parent); 50 static void gst_mpdparser_parse_s_node (GQueue * queue, xmlNode * a_node); 52 ** pointer, xmlNode * a_node); [all …]
|
| D | gstxmlhelper.h | 64 gboolean gst_xml_helper_get_prop_validated_string (xmlNode * a_node, 67 gboolean gst_xml_helper_get_prop_string (xmlNode * a_node, 69 gboolean gst_xml_helper_get_prop_string_stripped (xmlNode * a_node, 71 gboolean gst_xml_helper_get_ns_prop_string (xmlNode * a_node, 74 gboolean gst_xml_helper_get_prop_string_vector_type (xmlNode * a_node, 76 gboolean gst_xml_helper_get_prop_signed_integer (xmlNode * a_node, 78 gboolean gst_xml_helper_get_prop_unsigned_integer (xmlNode * a_node, 81 a_node, const gchar * property_name, guint64 default_val, 83 gboolean gst_xml_helper_get_prop_uint_vector_type (xmlNode * a_node, 85 gboolean gst_xml_helper_get_prop_double (xmlNode * a_node, [all …]
|
| D | gstxmlhelper.c | 334 gst_xml_helper_get_prop_validated_string (xmlNode * a_node, in gst_xml_helper_get_prop_validated_string() argument 341 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_validated_string() 357 gst_xml_helper_get_ns_prop_string (xmlNode * a_node, in gst_xml_helper_get_ns_prop_string() argument 364 xmlGetNsProp (a_node, (const xmlChar *) property_name, in gst_xml_helper_get_ns_prop_string() 376 gst_xml_helper_get_prop_string (xmlNode * a_node, in gst_xml_helper_get_prop_string() argument 379 return gst_xml_helper_get_prop_validated_string (a_node, property_name, in gst_xml_helper_get_prop_string() 384 gst_xml_helper_get_prop_string_vector_type (xmlNode * a_node, in gst_xml_helper_get_prop_string_vector_type() argument 392 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_string_vector_type() 413 gst_xml_helper_get_prop_signed_integer (xmlNode * a_node, in gst_xml_helper_get_prop_signed_integer() argument 420 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_xml_helper_get_prop_signed_integer() [all …]
|
| D | gstmpdhelper.c | 26 gst_mpd_helper_get_mpd_type (xmlNode * a_node, in gst_mpd_helper_get_mpd_type() argument 33 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_mpd_helper_get_mpd_type() 56 gst_mpd_helper_get_SAP_type (xmlNode * a_node, in gst_mpd_helper_get_SAP_type() argument 63 prop_string = xmlGetProp (a_node, (const xmlChar *) property_name); in gst_mpd_helper_get_SAP_type()
|
| D | gstmpdhelper.h | 60 gboolean gst_mpd_helper_get_mpd_type (xmlNode * a_node, const gchar * property_name, GstMPDFileType… 61 gboolean gst_mpd_helper_get_SAP_type (xmlNode * a_node, const gchar * property_name, GstMPDSAPType …
|
| /third_party/libxml2/doc/examples/ |
| D | tree1.c | 31 print_element_names(xmlNode * a_node) in print_element_names() argument 35 for (cur_node = a_node; cur_node; cur_node = cur_node->next) { in print_element_names()
|
| /third_party/skia/third_party/externals/spirv-tools/source/opt/ |
| D | dominator_tree.cpp | 238 const DominatorTreeNode* a_node = GetTreeNode(a); in Dominates() local 240 if (!a_node || !b_node) return false; in Dominates() 242 return Dominates(a_node, b_node); in Dominates()
|
| /third_party/spirv-tools/source/opt/ |
| D | dominator_tree.cpp | 238 const DominatorTreeNode* a_node = GetTreeNode(a); in Dominates() local 240 if (!a_node || !b_node) return false; in Dominates() 242 return Dominates(a_node, b_node); in Dominates()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| D | dominator_tree.cpp | 238 const DominatorTreeNode* a_node = GetTreeNode(a); in Dominates() local 240 if (!a_node || !b_node) return false; in Dominates() 242 return Dominates(a_node, b_node); in Dominates()
|
| /third_party/mesa3d/src/compiler/nir/ |
| D | nir_from_ssa.c | 200 merge_node *a_node = exec_node_data(merge_node, an, node); in merge_merge_sets() local 204 def_after(a_node->def, b_node->def)) { in merge_merge_sets() 253 merge_node *a_node = exec_node_data(merge_node, an, node); in merge_sets_interfere() local 256 if (def_after(b_node->def, a_node->def)) { in merge_sets_interfere() 257 current = a_node; in merge_sets_interfere()
|
| /third_party/mesa3d/src/compiler/glsl/ |
| D | ir.cpp | 2184 foreach_two_lists(a_node, &this->parameters, b_node, params) { in qualifiers_match() 2185 ir_variable *a = (ir_variable *) a_node; in qualifiers_match()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
| D | cord.cc | 988 SubRange(CordRep* a_node, size_t a_pos, size_t a_n) in SubRange() 989 : node(a_node), pos(a_pos), n(a_n) {} in SubRange()
|
| /third_party/gstreamer/gstplugins_bad/ |
| D | ChangeLog | 92348 Added a check for a_node->ns before accessing a_node->ns->href in
|