/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...] |
XPath.java | 22 import javax.xml.namespace.QName; 187 * variable, function and <code>QName</code> resolution and return type conversion.</p> 213 public Object evaluate(String expression, Object item, QName returnType) 219 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of 223 * variable, function and QName resolution and return type conversion.</p> 247 * {@link #evaluate(String expression, Object item, QName returnType)} on the resulting document object.</p> 250 * variable, function and QName resolution and return type conversion.</p> 272 QName returnType) 279 * <p>This method calls {@link #evaluate(String expression, InputSource source, QName returnType)} with a 283 * variable, function and QName resolution and return type conversion.</p [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/webrtc/webrtc/libjingle/xmllite/ |
qname.cc | 11 #include "webrtc/libjingle/xmllite/qname.h" 15 QName::QName() { 18 QName::QName(const QName& qname) 19 : namespace_(qname.namespace_), 20 local_part_(qname.local_part_) { 23 QName::QName(const StaticQName& const_value [all...] |
qname.h | 18 class QName; 24 // Beside this use case, QName should be used everywhere 25 // else. StaticQName instances are implicitly converted to QName 31 bool operator==(const QName& other) const; 32 bool operator!=(const QName& other) const; 35 class QName { 37 QName(); 38 QName(const QName& qname); [all...] |
xmlelement_unittest.cc | 19 using buzz::QName; 24 std::ostream& operator<<(std::ostream& os, const QName& name) { 30 XmlElement elt(QName("google:test", "first")); 33 XmlElement elt2(QName("google:test", "first"), true); 38 XmlElement elt(QName("google:test", "root"), true); 39 elt.AddElement(new XmlElement(QName("google:test", "first"))); 40 elt.AddElement(new XmlElement(QName("google:test", "nested")), 1); 44 elt.AddElement(new XmlElement(QName("google:test", "nested2")), 1); 45 elt.AddElement(new XmlElement(QName("google:test", "second"))); 47 elt.AddElement(new XmlElement(QName("google:test", "nested3")), 1) [all...] |
qname_unittest.cc | 12 #include "webrtc/libjingle/xmllite/qname.h" 16 using buzz::QName; 19 QName name("test"); 25 QName name("a:test"); 28 QName name2("a-very:long:namespace:test-this"); 34 QName name("a", "test"); 38 QName name2("a-very:long:namespace", "test-this"); 45 QName name("a", "test"); 47 QName namecopy(name); 50 QName nameassigned("") [all...] |
xmlprinter_unittest.cc | 16 #include "webrtc/libjingle/xmllite/qname.h" 22 using buzz::QName; 28 XmlElement elt(QName("google:test", "first")); 35 XmlElement elt(QName("google:test", "first")); 36 elt.AddElement(new XmlElement(QName("nested:test", "second")));
|
xmlelement.h | 17 #include "webrtc/libjingle/xmllite/qname.h" 94 const QName& Name() const { return name_; } 100 explicit XmlAttr(const QName& name, const std::string& value) : 112 QName name_; 118 explicit XmlElement(const QName& name); 119 explicit XmlElement(const QName& name, bool useDefaultNs); 124 const QName& Name() const { return name_; } 125 void SetName(const QName& name) { name_ = name; } 130 const QName FirstElementName() const; 139 const std::string Attr(const QName& name) const [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/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...] |
VarNameCollector.java | 25 import org.apache.xml.utils.QName; 61 boolean doesOccur(QName refName)
|
OutputProperties.java | 35 import org.apache.xml.utils.QName; 118 public void setProperty(QName key, String value) 153 public String getProperty(QName key) 182 public void setBooleanProperty(QName key, boolean value) 210 public boolean getBooleanProperty(QName key) 238 public void setIntProperty(QName key, int value) 266 public int getIntProperty(QName key) 289 * Set an output property with a QName value. The QName will be turned 296 public void setQNameProperty(QName key, QName value 427 QName qname = (QName) v.elementAt(i); local 507 QName qname = QName.getQNameFromString(buf.toString()); local 524 QName qname = QName.getQNameFromString(buf.toString()); local [all...] |
ElemAttributeSet.java | 28 import org.apache.xml.utils.QName; 35 * name %qname; #REQUIRED 50 public QName m_qname = null; 58 public void setName(QName name) 69 public QName getName() 134 * name %qname; #REQUIRED
|
KeyDeclaration.java | 23 import org.apache.xml.utils.QName; 55 private QName m_name; 60 * of the name attribute is a QName, which is expanded as 65 public void setName(QName name) 73 * of the name attribute is a QName, which is expanded as 78 public QName getName()
|
ElemTemplate.java | 27 import org.apache.xml.utils.QName; 43 * name %qname; #IMPLIED 45 * mode %qname; #IMPLIED 196 private QName m_name = null; 207 public void setName(QName v) 221 public QName getName() 231 private QName m_mode; 242 public void setMode(QName v) 256 public QName getMode() 333 * qname identifiers for the arguments. The position of a given qname [all...] |
DecimalFormatProperties.java | 25 import org.apache.xml.utils.QName; 32 * name %qname; #IMPLIED 79 * attribute is a QName, which is expanded as described in [2.4 Qualified Names]. 101 private QName m_qname = null; 108 * @param qname The name to set as the "name" attribute. 110 public void setName(QName qname) 112 m_qname = qname; 122 public QName getName() 126 return new QName(""); [all...] |
TemplateSubPatternAssociation.java | 27 import org.apache.xml.utils.QName; 121 boolean matchMode(QName m1) 134 private boolean matchModes(QName m1, QName m2) 151 public boolean matches(XPathContext xctxt, int targetNode, QName mode)
|
/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/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());
|