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

1 2

  /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/third_party/libjingle/source/talk/xmllite/
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...]
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...]
  /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...]
  /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/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 
  /prebuilts/tools/common/m2/internal/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/internal/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 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/8/
android.jar 

Completed in 373 milliseconds

1 2