/libcore/luni/src/main/java/javax/xml/xpath/ |
XPathConstants.java | 21 import javax.xml.namespace.QName; 44 public static final QName NUMBER = new QName("http://www.w3.org/1999/XSL/Transform", "NUMBER"); 51 public static final QName STRING = new QName("http://www.w3.org/1999/XSL/Transform", "STRING"); 58 public static final QName BOOLEAN = new QName("http://www.w3.org/1999/XSL/Transform", "BOOLEAN"); 65 public static final QName NODESET = new QName("http://www.w3.org/1999/XSL/Transform", "NODESET"); 72 public static final QName NODE = new QName("http://www.w3.org/1999/XSL/Transform", "NODE") [all...] |
XPathFunctionResolver.java | 21 import javax.xml.namespace.QName; 59 public XPathFunction resolveFunction(QName functionName, int arity);
|
XPathVariableResolver.java | 21 import javax.xml.namespace.QName; 43 * @param variableName The <code>QName</code> of the variable name. 50 public Object resolveVariable(QName variableName);
|
XPathExpression.java | 21 import javax.xml.namespace.QName; 88 * variable, function and QName resolution and return type conversion.</p> 108 public Object evaluate(Object item, QName returnType) 114 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a <code>returnType</code> of 118 * variable, function and QName resolution and return type conversion.</p> 139 * {@link #evaluate(Object item, QName returnType)} on the resulting document object.</p> 142 * variable, function and QName resolution and return type conversion.</p> 160 public Object evaluate(InputSource source, QName returnType) 167 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a <code>returnType</code> of 171 * variable, function and QName resolution and return type conversion.</p [all...] |
/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...] |
/libcore/luni/src/main/java/javax/xml/datatype/ |
DatatypeConstants.java | 23 import javax.xml.namespace.QName; 206 public static final QName DATETIME = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "dateTime"); 211 public static final QName TIME = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "time"); 216 public static final QName DATE = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "date"); 221 public static final QName GYEARMONTH = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "gYearMonth"); 226 public static final QName GMONTHDAY = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "gMonthDay") [all...] |
/external/chromium/third_party/libjingle/overrides/talk/xmllite/ |
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...] |
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...] |
/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_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.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...] |
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_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...] |
xmlprinter_unittest.cc | 35 #include "talk/xmllite/qname.h" 39 using buzz::QName; 45 XmlElement elt(QName("google:test", "first")); 52 XmlElement elt(QName("google:test", "first")); 53 elt.AddElement(new XmlElement(QName("nested:test", "second")));
|
/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...] |
/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/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...] |
/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...] |
/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...] |
/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/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemUse.java | 30 import org.apache.xml.utils.QName; 48 private QName m_attributeSetsNames[] = null; 56 * sets. Each name is specified as a QName, which is expanded as 66 m_attributeSetsNames = new QName[n]; 70 m_attributeSetsNames[i] = (QName) v.elementAt(i); 80 * sets. Each name is specified as a QName, which is expanded as 85 public void setUseAttributeSets(QName[] v) 98 * sets. Each name is specified as a QName, which is expanded as 103 public QName[] getUseAttributeSets() 141 TransformerImpl transformer, StylesheetRoot stylesheet, QName attributeSetsNames[] 151 QName qname = attributeSetsNames[i]; local [all...] |