HomeSort by relevance Sort by last modified time
    Searched defs:QName (Results 1 - 25 of 47) sorted by null

1 2

  /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...]
  /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/markdown/markdown/
html4.py 42 QName = markdown.etree.QName
148 if isinstance(k, QName):
150 if isinstance(v, QName):
214 def add_qname(qname):
215 # calculate serialized qname representation
217 if qname[:1] == "{":
218 uri, tag = qname[1:].split("}", 1)
227 qnames[qname] = encode("%s:%s" % (prefix, tag))
229 qnames[qname] = encode(tag) # default elemen
    [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
genshistream.py 3 from genshi.core import QName
35 if isinstance(k, QName):
  /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/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-trace/catapult/third_party/html5lib-python/html5lib/tests/
test_treewalkers.py 87 from genshi.core import QName, Attrs
110 attrs = Attrs([(QName("{%s}%s" % attr if attr[0] is not None else attr[1]), value)
112 yield (START, (QName(name), attrs), (None, -1, -1))
122 yield END, QName(name), (None, -1, -1)
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/etree/
ElementTree.py 66 "QName",
571 # QName wrapper. This can be used to wrap a QName attribute value, in
574 # @param text A string containing the QName value, in the form {uri}local,
575 # or, if the tag argument is given, the URI part of a QName.
578 # @return An opaque object, representing the QName.
580 class QName(object):
590 if isinstance(other, QName):
845 def add_qname(qname):
846 # calculate serialized qname representatio
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/etree/
ElementTree.py 66 "QName",
571 # QName wrapper. This can be used to wrap a QName attribute value, in
574 # @param text A string containing the QName value, in the form {uri}local,
575 # or, if the tag argument is given, the URI part of a QName.
578 # @return An opaque object, representing the QName.
580 class QName(object):
590 if isinstance(other, QName):
845 def add_qname(qname):
846 # calculate serialized qname representatio
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 66 "QName",
571 # QName wrapper. This can be used to wrap a QName attribute value, in
574 # @param text A string containing the QName value, in the form {uri}local,
575 # or, if the tag argument is given, the URI part of a QName.
578 # @return An opaque object, representing the QName.
580 class QName(object):
590 if isinstance(other, QName):
845 def add_qname(qname):
846 # calculate serialized qname representatio
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 66 "QName",
571 # QName wrapper. This can be used to wrap a QName attribute value, in
574 # @param text A string containing the QName value, in the form {uri}local,
575 # or, if the tag argument is given, the URI part of a QName.
578 # @return An opaque object, representing the QName.
580 class QName(object):
590 if isinstance(other, QName):
845 def add_qname(qname):
846 # calculate serialized qname representatio
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java     [all...]
  /prebuilts/tools/common/m2/repository/nekohtml/xercesMinimal/1.9.6.2/
xercesMinimal-1.9.6.2.jar 
  /external/robolectric/v1/lib/main/
xpp3-1.1.4c.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.3.04/
xml-apis-1.3.04.jar 
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.4.01/
xml-apis-1.4.01.jar 
  /external/guice/extensions/persist/lib/
dom4j-1.6.1.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
dom4j-1.6.1.jar 
  /prebuilts/tools/common/m2/repository/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/guice/lib/build/jdiff/
xerces.jar 

Completed in 827 milliseconds

1 2