Home
last modified time | relevance | path

Searched refs:content_elem (Results 1 – 4 of 4) sorted by relevance

/dports/net-im/kopete/kopete-21.12.3/protocols/jabber/libjingle/talk/session/phone/
H A Dmediasessionclient.cc329 if (content_elem->FirstElement()) { in ParseGingleAudioContent()
346 ParseGingleSsrc(content_elem, QN_GINGLE_AUDIO_SRCID, audio); in ParseGingleAudioContent()
372 ParseGingleSsrc(content_elem, QN_GINGLE_VIDEO_SRCID, video); in ParseGingleVideoContent()
373 ParseBandwidth(content_elem, video); in ParseGingleVideoContent()
411 content_elem->FirstNamed(QN_ENCRYPTION); in ParseJingleEncryption()
499 content_elem->FirstNamed(QN_JINGLE_RTP_PAYLOADTYPE); in ParseJingleAudioContent()
512 if (!ParseJingleEncryption(content_elem, audio, error)) { in ParseJingleAudioContent()
540 ParseBandwidth(content_elem, video); in ParseJingleVideoContent()
542 if (!ParseJingleEncryption(content_elem, video, error)) { in ParseJingleVideoContent()
570 ParseBandwidth(content_elem, data); in ParseJingleDataContent()
[all …]
/dports/textproc/py-xmlschema/xmlschema-1.8.2/xmlschema/validators/
H A Dcomplex_types.py141 if content_elem is None or content_elem.tag in self._CONTENT_TAIL_TAGS:
157 elif content_elem.tag == XSD_SIMPLE_CONTENT:
158 if 'mixed' in content_elem.attrib:
171 if content_elem is not self.elem[-1]:
172 k = 2 if content_elem is not self.elem[0] else 1
177 elif content_elem.tag == XSD_COMPLEX_CONTENT:
180 if 'mixed' in content_elem.attrib:
202 if content_elem is not self.elem[-1]:
203 k = 2 if content_elem is not self.elem[0] else 1
211 if content_elem is self.elem[-1]:
[all …]
/dports/net-im/kopete/kopete-21.12.3/protocols/jabber/libjingle/talk/p2p/base/
H A Dsessionmessages.cc469 const buzz::XmlElement** content_elem, in ParseContentType() argument
474 *content_type = (*content_elem)->Name().Namespace(); in ParseContentType()
483 const buzz::XmlElement* content_elem; in ParseGingleContentInfos() local
484 if (!ParseContentType(session, &content_type, &content_elem, error)) in ParseGingleContentInfos()
494 CopyXmlChildren(content_elem, audio_elem.get()); in ParseGingleContentInfos()
501 content_elem, content_parsers, in ParseGingleContentInfos()
506 content_elem, content_parsers, in ParseGingleContentInfos()
511 content_elem, content_parsers, in ParseGingleContentInfos()
532 const buzz::XmlElement* content_elem; in ParseJingleContentInfos() local
537 content_elem, content_parsers, in ParseJingleContentInfos()
[all …]
/dports/graphics/py-OWSLib/OWSLib-0.24.1/owslib/owscontext/
H A Datom.py1006 content_elem = etree.Element(ns_elem("owc", "content"), nsmap=ns)
1010 content_elem.set("type", mimetype)
1013 content_elem.set("href", url)
1016 content_elem.set("title", title)
1020 content_elem.text = content
1021 return content_elem