HomeSort by relevance Sort by last modified time
    Searched full:qname (Results 1 - 25 of 561) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/third_party/libjingle/source/talk/xmpp/
constants.h 32 #include "talk/xmllite/qname.h"
123 extern const QName QN_STREAM_STREAM;
124 extern const QName QN_STREAM_FEATURES;
125 extern const QName QN_STREAM_ERROR;
127 extern const QName QN_XSTREAM_BAD_FORMAT;
128 extern const QName QN_XSTREAM_BAD_NAMESPACE_PREFIX;
129 extern const QName QN_XSTREAM_CONFLICT;
130 extern const QName QN_XSTREAM_CONNECTION_TIMEOUT;
131 extern const QName QN_XSTREAM_HOST_GONE;
132 extern const QName QN_XSTREAM_HOST_UNKNOWN
    [all...]
constants.cc 32 #include "talk/xmllite/qname.h"
156 const QName QN_STREAM_STREAM(true, NS_STREAM, STR_STREAM);
157 const QName QN_STREAM_FEATURES(true, NS_STREAM, "features");
158 const QName QN_STREAM_ERROR(true, NS_STREAM, "error");
160 const QName QN_XSTREAM_BAD_FORMAT(true, NS_XSTREAM, "bad-format");
161 const QName QN_XSTREAM_BAD_NAMESPACE_PREFIX(true, NS_XSTREAM, "bad-namespace-prefix");
162 const QName QN_XSTREAM_CONFLICT(true, NS_XSTREAM, "conflict");
163 const QName QN_XSTREAM_CONNECTION_TIMEOUT(true, NS_XSTREAM, "connection-timeout");
164 const QName QN_XSTREAM_HOST_GONE(true, NS_XSTREAM, "host-gone");
165 const QName QN_XSTREAM_HOST_UNKNOWN(true, NS_XSTREAM, "host-unknown")
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
constants.h 32 #include "talk/xmllite/qname.h"
40 // QN_ == buzz::QName (namespace + name)
41 // LN_ == "local name" == QName::LocalPart()
56 extern const buzz::QName QN_ACTION;
58 extern const buzz::QName QN_INITIATOR;
59 extern const buzz::QName QN_CREATOR;
61 extern const buzz::QName QN_JINGLE;
62 extern const buzz::QName QN_JINGLE_CONTENT;
63 extern const buzz::QName QN_JINGLE_CONTENT_NAME;
64 extern const buzz::QName QN_JINGLE_CONTENT_MEDIA
    [all...]
constants.cc 31 #include "talk/xmllite/qname.h"
40 const buzz::QName QN_ACTION(true, NS_EMPTY, "action");
42 const buzz::QName QN_INITIATOR(true, NS_EMPTY, LN_INITIATOR);
43 const buzz::QName QN_CREATOR(true, NS_EMPTY, "creator");
45 const buzz::QName QN_JINGLE(true, NS_JINGLE, "jingle");
46 const buzz::QName QN_JINGLE_CONTENT(true, NS_JINGLE, "content");
47 const buzz::QName QN_JINGLE_CONTENT_NAME(true, NS_EMPTY, "name");
48 const buzz::QName QN_JINGLE_CONTENT_MEDIA(true, NS_EMPTY, "media");
49 const buzz::QName QN_JINGLE_REASON(true, NS_JINGLE, "reason");
59 const buzz::QName QN_GINGLE_SESSION(true, NS_GINGLE, "session")
    [all...]
  /external/chromium/third_party/libjingle/overrides/talk/xmllite/
qname.cc 5 #include "talk/xmllite/qname.h"
13 QName::QName() : namespace_(QN_EMPTY.namespace_),
16 QName::QName(const std::string & ns, const std::string & local) :
19 QName::QName(bool add, const std::string & ns, const std::string & local) :
38 QName::QName(const std::string & mergedOrLocal) :
43 QName::Merged() const
    [all...]
qname.h 12 // Default libjingle's implementation of QName class is not threadsafe. This
14 class QName
17 QName();
18 QName(const std::string & ns, const std::string & local);
19 QName(bool add, const std::string & ns, const std::string & local);
20 explicit QName(const std::string & mergedOrLocal);
25 int Compare(const QName & other) const;
26 bool operator==(const QName & other) const;
27 bool operator!=(const QName & other) const { return !operator==(other); }
28 bool operator<(const QName & other) const { return Compare(other) < 0;
    [all...]
  /external/chromium_org/remoting/protocol/
jingle_messages.cc 14 using buzz::QName;
50 DCHECK(element->Name() == QName(kP2PTransportNamespace, "candidate"));
52 const std::string& name = element->Attr(QName(kEmptyNamespace, "name"));
53 const std::string& address = element->Attr(QName(kEmptyNamespace, "address"));
54 const std::string& port_str = element->Attr(QName(kEmptyNamespace, "port"));
55 const std::string& type = element->Attr(QName(kEmptyNamespace, "type"));
57 element->Attr(QName(kEmptyNamespace, "protocol"));
59 element->Attr(QName(kEmptyNamespace, "username"));
61 element->Attr(QName(kEmptyNamespace, "password"));
63 element->Attr(QName(kEmptyNamespace, "preference"))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
QName.java 19 * $Id: QName.java 468655 2006-10-28 07:12:06Z minchau $
36 * [12 Variables and Parameters]) is specified as a QName. If it has a prefix,
44 public class QName implements java.io.Serializable
79 * Constructs an empty QName.
82 public QName(){}
85 * Constructs a new QName with the specified namespace URI and
91 public QName(String namespaceURI, String localName)
97 * Constructs a new QName with the specified namespace URI and
102 * @param validate If true the new QName will be validated and an IllegalArgumentException will
105 public QName(String namespaceURI, String localName, boolean validate)
611 QName qname = (QName) object; local
636 QName qname; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
qname.cc 28 #include "talk/xmllite/qname.h"
32 QName::QName() {
35 QName::QName(const QName& qname)
36 : namespace_(qname.namespace_),
37 local_part_(qname.local_part_) {
40 QName::QName(const StaticQName& const_value
    [all...]
qname_unittest.cc 30 #include "talk/xmllite/qname.h"
33 using buzz::QName;
36 QName name("test");
42 QName name("a:test");
45 QName name2("a-very:long:namespace:test-this");
51 QName name("a", "test");
55 QName name2("a-very:long:namespace", "test-this");
62 QName name("a", "test");
64 QName namecopy(name);
67 QName nameassigned("")
    [all...]
xmlelement_unittest.cc 36 using buzz::QName;
41 std::ostream& operator<<(std::ostream& os, const QName& name) {
47 XmlElement elt(QName("google:test", "first"));
50 XmlElement elt2(QName("google:test", "first"), true);
55 XmlElement elt(QName("google:test", "root"), true);
56 elt.AddElement(new XmlElement(QName("google:test", "first")));
57 elt.AddElement(new XmlElement(QName("google:test", "nested")), 1);
61 elt.AddElement(new XmlElement(QName("google:test", "nested2")), 1);
62 elt.AddElement(new XmlElement(QName("google:test", "second")));
64 elt.AddElement(new XmlElement(QName("google:test", "nested3")), 1)
    [all...]
qname.h 35 class QName;
41 // Beside this use case, QName should be used everywhere
42 // else. StaticQName instances are implicitly converted to QName
48 bool operator==(const QName& other) const;
49 bool operator!=(const QName& other) const;
52 class QName {
54 QName();
55 QName(const QName& qname);
    [all...]
  /external/smack/asmack-master/static-src/custom/com/kenai/jbosh/
QName.java 62 * <code>QName</code> class represents the value of a qualified name
63 * as specified in <a href="http://www.w3.org/TR/xmlschema-2/#QName">XML
66 * The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b> and a <b>prefix</b>.
72 public class QName implements Serializable {
87 * Constructor for the QName.
89 * @param localPart Local part of the QName
91 public QName(String localPart) {
96 * Constructor for the QName.
98 * @param namespaceURI Namespace URI for the QName
99 * @param localPart Local part of the QName
    [all...]
  /external/smack/src/com/kenai/jbosh/
QName.java 62 * <code>QName</code> class represents the value of a qualified name
63 * as specified in <a href="http://www.w3.org/TR/xmlschema-2/#QName">XML
66 * The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b> and a <b>prefix</b>.
72 public class QName implements Serializable {
87 * Constructor for the QName.
89 * @param localPart Local part of the QName
91 public QName(String localPart) {
96 * Constructor for the QName.
98 * @param namespaceURI Namespace URI for the QName
99 * @param localPart Local part of the QName
    [all...]
BodyQName.java 21 * analagous to the {@code javax.xml.namespace.QName} class.
37 private final QName qname; field in class:BodyQName
42 * @param wrapped QName instance to wrap
45 final QName wrapped) {
46 qname = wrapped;
84 return new BodyQName(new QName(uri, local));
86 return new BodyQName(new QName(uri, local, prefix));
96 return qname.getNamespaceURI();
105 return qname.getLocalPart()
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
QName.java 15 public class QName
24 * Splits a qname into prefix and localname.
25 * @param qname a QName
27 public QName(String qname)
29 int colon = qname.indexOf(':');
33 prefix = qname.substring(0, colon);
34 localName = qname.substring(colon + 1);
39 localName = qname;
    [all...]
  /external/chromium/third_party/libjingle/source/talk/xmllite/
qname.h 36 class QName
39 explicit QName();
40 QName(const QName & qname) : data_(qname.data_) { data_->AddRef(); }
41 explicit QName(bool add, const std::string & ns, const char * local);
42 explicit QName(bool add, const std::string & ns, const std::string & local);
43 explicit QName(const std::string & ns, const char * local);
44 explicit QName(const std::string & mergedOrLocal)
    [all...]
qname.cc 31 #include "talk/xmllite/qname.h"
47 static QName::Data * get_qname_table() {
48 static QName::Data qname_table[1 << bits];
52 static QName::Data *
56 QName::Data * qname_table = get_qname_table();
60 return new QName::Data(ns, local);
71 static QName::Data *
75 QName::Data * qname_table = get_qname_table();
94 QName::~QName() {
    [all...]
xmlelement.h 34 #include "talk/xmllite/qname.h"
38 extern const QName QN_EMPTY;
39 extern const QName QN_XMLNS;
119 const QName & Name() const { return name_; }
123 explicit XmlAttr(const QName & name, const std::string & value) :
135 QName name_;
141 explicit XmlElement(const QName & name);
142 explicit XmlElement(const QName & name, bool useDefaultNs);
147 const QName& Name() const { return name_; }
148 void SetName(const QName& name) { name_ = name;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
Arg.java 23 import org.apache.xml.utils.QName;
35 /** Field m_qname: The name of this argument, expressed as a QName
40 private QName m_qname;
45 * @return QName object containing the qualified name
47 public final QName getQName()
55 * @param name QName object representing the new Qualified Name.
57 public final void setQName(QName name)
175 * Construct a dummy parameter argument, with no QName and no
182 m_qname = new QName("");
193 * @param qname Name of the argument, expressed as a QName object
    [all...]
  /libcore/luni/src/main/java/javax/xml/namespace/
QName.java 18 // $Id: QName.java 754581 2009-03-15 01:32:39Z mrglavas $
28 * <p><code>QName</code> represents a <strong>qualified name</strong>
30 * href="http://www.w3.org/TR/xmlschema-2/#QName">XML Schema Part2:
37 * <p>The value of a <code>QName</code> contains a <strong>Namespace
41 * <p>The prefix is included in <code>QName</code> to retain lexical
45 * QName.equals(Object)} or to compute the {@link #hashCode()
46 * QName.hashCode()}. Equality and the hash code are defined using
55 * <p><code>QName</code> is immutable.</p>
59 * @see <a href="http://www.w3.org/TR/xmlschema-2/#QName">XML Schema Part2: Datatypes specification</a>
65 public class QName implements Serializable
    [all...]
  /external/chromium_org/jingle/notifier/listener/
xml_element_util.cc 11 #include "talk/xmllite/qname.h"
25 const buzz::QName elementQName(buzz::STR_EMPTY, name);
26 const buzz::QName boolAttrQName(buzz::STR_EMPTY, "bool");
34 const buzz::QName elementQName(buzz::STR_EMPTY, name);
35 const buzz::QName intAttrQName(buzz::STR_EMPTY, "int");
43 const buzz::QName elementQName(buzz::STR_EMPTY, name);
44 const buzz::QName dataAttrQName(buzz::STR_EMPTY, "data");
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPVariableStack.java 25 import org.apache.xml.utils.QName;
49 public XObject getVariableOrParam(XPathContext xctxt, QName qname)
51 if ( qname == null ) {
56 new Object[] {"Variable qname"} );
59 javax.xml.namespace.QName name =
60 new javax.xml.namespace.QName(
61 qname.getNamespace(),
62 qname.getLocalPart());
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SkeletonLoader.java 84 public void startElement(String uri, String localName, String qName, Attributes attribs) throws SAXException {
85 if (qName.equals("position") || qName.equals("translate")) {
87 } else if (qName.equals("rotation") || qName.equals("rotate")) {
89 } else if (qName.equals("axis")) {
93 } else if (qName.equals("scale")) {
95 } else if (qName.equals("keyframe")) {
98 } else if (qName.equals("keyframes")) {
100 } else if (qName.equals("track"))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java 91 public int getIndex(String qName) {
92 if (qName == null) {
93 throw new NullPointerException("qName == null");
99 return getIndexForQName(pointer, qName);
112 public String getType(String qName) {
113 return getIndex(qName) == -1 ? null : CDATA;
130 public String getValue(String qName) {
131 if (qName == null) {
132 throw new NullPointerException("qName == null");
138 return getValueForQName(pointer, qName);
    [all...]

Completed in 2426 milliseconds

1 2 3 4 5 6 7 8 91011>>