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

1 2

  /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...]
  /external/chromium_org/third_party/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/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/chromium_org/third_party/markdown/
serializers.py 76 QName = util.etree.QName
189 if isinstance(k, QName):
191 if isinstance(v, QName):
253 def add_qname(qname):
254 # calculate serialized qname representation
256 if qname[:1] == "{":
257 uri, tag = qname[1:].split("}", 1)
266 qnames[qname] = "%s:%s" % (prefix, tag)
268 qnames[qname] = tag # default elemen
    [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/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...]
  /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...]
  /external/robolectric/lib/main/
xpp3-1.1.4c.jar 
  /external/smack/asmack-master/lib/
xpp3-1.1.4c.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.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 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /external/jdiff/
xerces.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 1513 milliseconds

1 2