/external/webrtc/webrtc/libjingle/xmllite/ |
D | xmlelement_unittest.cc | 19 using buzz::QName; 24 std::ostream& operator<<(std::ostream& os, const QName& name) { in operator <<() 30 XmlElement elt(QName("google:test", "first")); in TEST() 33 XmlElement elt2(QName("google:test", "first"), true); in TEST() 38 XmlElement elt(QName("google:test", "root"), true); in TEST() 39 elt.AddElement(new XmlElement(QName("google:test", "first"))); in TEST() 40 elt.AddElement(new XmlElement(QName("google:test", "nested")), 1); in TEST() 44 elt.AddElement(new XmlElement(QName("google:test", "nested2")), 1); in TEST() 45 elt.AddElement(new XmlElement(QName("google:test", "second"))); in TEST() 47 elt.AddElement(new XmlElement(QName("google:test", "nested3")), 1); in TEST() [all …]
|
D | qname.cc | 15 QName::QName() { in QName() function in buzz::QName 18 QName::QName(const QName& qname) in QName() function in buzz::QName 23 QName::QName(const StaticQName& const_value) in QName() function in buzz::QName 28 QName::QName(const std::string& ns, const std::string& local) in QName() function in buzz::QName 33 QName::QName(const std::string& merged_or_local) { in QName() function in buzz::QName 43 QName::~QName() { in ~QName() 46 std::string QName::Merged() const { in Merged() 58 bool QName::IsEmpty() const { in IsEmpty() 62 int QName::Compare(const StaticQName& other) const { in Compare() 70 int QName::Compare(const QName& other) const { in Compare()
|
D | qname.h | 18 class QName; variable 31 bool operator==(const QName& other) const; 32 bool operator!=(const QName& other) const; 35 class QName { 37 QName(); 38 QName(const QName& qname); 39 QName(const StaticQName& const_value); 40 QName(const std::string& ns, const std::string& local); 41 explicit QName(const std::string& merged_or_local); 42 ~QName(); [all …]
|
D | qname_unittest.cc | 16 using buzz::QName; 19 QName name("test"); in TEST() 25 QName name("a:test"); in TEST() 28 QName name2("a-very:long:namespace:test-this"); in TEST() 34 QName name("a", "test"); in TEST() 38 QName name2("a-very:long:namespace", "test-this"); in TEST() 45 QName name("a", "test"); in TEST() 47 QName namecopy(name); in TEST() 50 QName nameassigned(""); in TEST() 58 QName namecopy(name); in TEST() [all …]
|
D | xmlelement.h | 94 const QName& Name() const { return name_; } in Name() 100 explicit XmlAttr(const QName& name, const std::string& value) : in XmlAttr() 112 QName name_; 118 explicit XmlElement(const QName& name); 119 explicit XmlElement(const QName& name, bool useDefaultNs); 124 const QName& Name() const { return name_; } in Name() 125 void SetName(const QName& name) { name_ = name; } in SetName() 130 const QName FirstElementName() const; 139 const std::string Attr(const QName& name) const; 141 bool HasAttr(const QName& name) const; [all …]
|
D | xmlprinter_unittest.cc | 22 using buzz::QName; 28 XmlElement elt(QName("google:test", "first")); in TEST() 35 XmlElement elt(QName("google:test", "first")); in TEST() 36 elt.AddElement(new XmlElement(QName("nested:test", "second"))); in TEST()
|
D | xmlelement.cc | 57 XmlElement::XmlElement(const QName& name) : in XmlElement() 105 XmlElement::XmlElement(const QName& name, bool useDefaultNs) : in XmlElement() 147 const QName XmlElement::FirstElementName() const { in FirstElementName() 150 return QName(); in FirstElementName() 167 const std::string XmlElement::Attr(const QName& name) const { in Attr() 185 bool XmlElement::HasAttr(const QName& name) const { in HasAttr() 194 void XmlElement::SetAttr(const QName& name, const std::string& value) { in SetAttr() 212 void XmlElement::ClearAttr(const QName& name) { in ClearAttr() 273 XmlElement::FirstNamed(const QName& name) { in FirstNamed() 293 XmlElement::NextNamed(const QName& name) { in NextNamed() [all …]
|
D | xmlnsstack_unittest.cc | 23 using buzz::QName; 221 stack.FormatQName(QName("ns1", "zip"), false)); // no match in TEST() 223 stack.FormatQName(QName("ns2", "abracadabra"), false)); in TEST() 225 stack.FormatQName(QName("ns3", "a"), false)); in TEST() 227 stack.FormatQName(QName("ns4", "simple"), false)); in TEST() 229 stack.FormatQName(QName("", "root"), false)); // no match in TEST() 232 stack.FormatQName(QName("ns1", "zip"), true)); // no match in TEST() 234 stack.FormatQName(QName("ns2", "abracadabra"), true)); in TEST() 236 stack.FormatQName(QName("ns3", "a"), true)); in TEST() 238 stack.FormatQName(QName("ns4", "simple"), true)); // no match in TEST() [all …]
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | OutputProperties.java | 35 import org.apache.xml.utils.QName; 118 public void setProperty(QName key, String value) in setProperty() 153 public String getProperty(QName key) in getProperty() 182 public void setBooleanProperty(QName key, boolean value) in setBooleanProperty() 210 public boolean getBooleanProperty(QName key) in getBooleanProperty() 238 public void setIntProperty(QName key, int value) in setIntProperty() 266 public int getIntProperty(QName key) in getIntProperty() 296 public void setQNameProperty(QName key, QName value) in setQNameProperty() 339 public void setQNameProperty(String key, QName value) in setQNameProperty() 354 public QName getQNameProperty(QName key) in getQNameProperty() [all …]
|
D | ElemUse.java | 30 import org.apache.xml.utils.QName; 48 private QName m_attributeSetsNames[] = null; 66 m_attributeSetsNames = new QName[n]; in setUseAttributeSets() 70 m_attributeSetsNames[i] = (QName) v.elementAt(i); in setUseAttributeSets() 85 public void setUseAttributeSets(QName[] v) in setUseAttributeSets() 103 public QName[] getUseAttributeSets() in getUseAttributeSets() 141 TransformerImpl transformer, StylesheetRoot stylesheet, QName attributeSetsNames[]) in applyAttrSets() 151 QName qname = attributeSetsNames[i]; in applyAttrSets()
|
D | ElemTemplate.java | 27 import org.apache.xml.utils.QName; 196 private QName m_name = null; 207 public void setName(QName v) in setName() 221 public QName getName() in getName() 231 private QName m_mode; 242 public void setMode(QName v) in setMode() 256 public QName getMode() in getMode()
|
D | DecimalFormatProperties.java | 25 import org.apache.xml.utils.QName; 101 private QName m_qname = null; 110 public void setName(QName qname) in setName() 122 public QName getName() in getName() 126 return new QName(""); in getName()
|
D | TemplateSubPatternAssociation.java | 27 import org.apache.xml.utils.QName; 121 boolean matchMode(QName m1) in matchMode() 134 private boolean matchModes(QName m1, QName m2) in matchModes() 151 public boolean matches(XPathContext xctxt, int targetNode, QName mode) in matches()
|
D | KeyDeclaration.java | 23 import org.apache.xml.utils.QName; 55 private QName m_name; 65 public void setName(QName name) in setName() 78 public QName getName() in getName()
|
D | ElemAttributeSet.java | 28 import org.apache.xml.utils.QName; 50 public QName m_qname = null; 58 public void setName(QName name) in setName() 69 public QName getName() in getName()
|
D | ElemElement.java | 28 import org.apache.xml.utils.QName; 227 prefix = QName.getPrefixPart(nodeName); in execute() 245 nodeName = (prefix + ":" + QName.getLocalPart(nodeName)); in execute() 247 nodeName = QName.getLocalPart(nodeName); in execute() 327 rhandler.startElement(nodeNamespace, QName.getLocalPart(nodeName), in constructNode() 340 rhandler.endElement(nodeNamespace, QName.getLocalPart(nodeName), in constructNode()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | QName.java | 44 public class QName implements java.io.Serializable class 82 public QName(){} in QName() method in QName 91 public QName(String namespaceURI, String localName) in QName() method in QName 105 public QName(String namespaceURI, String localName, boolean validate) in QName() method in QName 137 public QName(String namespaceURI, String prefix, String localName) in QName() method in QName 152 public QName(String namespaceURI, String prefix, String localName, boolean validate) in QName() method in QName 189 public QName(String localName) in QName() method in QName 202 public QName(String localName, boolean validate) in QName() method in QName 232 public QName(String qname, Stack namespaces) in QName() method in QName 247 public QName(String qname, Stack namespaces, boolean validate) in QName() method in QName [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | Arg.java | 23 import org.apache.xml.utils.QName; 40 private QName m_qname; 47 public final QName getQName() in getQName() 57 public final void setQName(QName name) in setQName() 182 m_qname = new QName(""); in Arg() 197 public Arg(QName qname, String expression, boolean isFromWithParam) in Arg() 214 public Arg(QName qname, XObject val) in Arg() 234 if(obj instanceof QName) in equals() 249 public Arg(QName qname, XObject val, boolean isFromWithParam) in Arg()
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
D | KeyIterator.java | 32 import org.apache.xml.utils.QName; 48 private QName m_name; 56 public QName getName() in getName() 81 KeyIterator(QName name, Vector keyDeclarations) in KeyIterator() 107 QName name = ki.getName(); in acceptNode()
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
D | ProcessorOutputElem.java | 29 import org.apache.xml.utils.QName; 112 public void setMethod(org.apache.xml.utils.QName newValue) in setMethod() 153 QName key = new QName(attrUri, attrLocalName); in setForeignAttr() 163 QName key = new QName(attrUri, attrLocalName); in addLiteralResultAttribute()
|
/external/markdown/markdown/ |
D | html4.py | 42 QName = markdown.etree.QName variable 148 if isinstance(k, QName): 150 if isinstance(v, QName): 248 if isinstance(tag, QName) and tag.text not in qnames: 256 if isinstance(key, QName): 260 if isinstance(value, QName) and value.text not in qnames: 263 if isinstance(text, QName) and text.text not in qnames:
|
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/ |
D | JAXPExtensionsProvider.java | 38 import javax.xml.namespace.QName; 74 javax.xml.namespace.QName myQName = new QName( ns, funcName ); in functionAvailable() 111 javax.xml.namespace.QName myQName = new QName( ns, funcName ); in extFunction() 167 javax.xml.namespace.QName myQName = in extFunction() 168 new javax.xml.namespace.QName( namespace, functionName ); in extFunction()
|
D | JAXPVariableStack.java | 25 import org.apache.xml.utils.QName; 49 public XObject getVariableOrParam(XPathContext xctxt, QName qname) in getVariableOrParam() 59 javax.xml.namespace.QName name = in getVariableOrParam() 60 new javax.xml.namespace.QName( in getVariableOrParam()
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | QName.java | 15 public class QName class 27 public QName(String qname) in QName() method in QName 48 public QName(String prefix, String localName) in QName() method in QName
|
/external/webrtc/webrtc/libjingle/xmpp/ |
D | pubsub_task.cc | 33 const buzz::QName& stanza_name(stanza->Name()); in HandleStanza() 66 const buzz::QName& stanza_name(stanza->Name()); in ProcessResponse() 141 const buzz::QName& child_name(child_element->Name()); in HandlePubsubEventMessage() 168 const buzz::QName& child_name(child_element->Name()); in HandlePubsubIqGetResponse() 186 const buzz::QName& item_name(item->Name()); in HandlePubsubItems()
|