/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/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...] |
/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 | |
/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 | |