HomeSort by relevance Sort by last modified time
    Searched defs:qName (Results 1 - 14 of 14) sorted by null

  /libcore/luni/src/main/java/javax/xml/namespace/
QName.java 18 // $Id: QName.java 754581 2009-03-15 01:32:39Z mrglavas $
30 * <p><code>QName</code> represents a <strong>qualified name</strong>
32 * href="http://www.w3.org/TR/xmlschema-2/#QName">XML Schema Part2:
39 * <p>The value of a <code>QName</code> contains a <strong>Namespace
43 * <p>The prefix is included in <code>QName</code> to retain lexical
47 * QName.equals(Object)} or to compute the {@link #hashCode()
48 * QName.hashCode()}. Equality and the hash code are defined using
57 * <p><code>QName</code> is immutable.</p>
61 * @see <a href="http://www.w3.org/TR/xmlschema-2/#QName">XML Schema Part2: Datatypes specification</a>
67 public class QName implements Serializable
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
AttributesImplSerializer.java 32 * faster lookup of an index by qName, which is commonly done in the stream
42 * Hash table of qName/index values to quickly lookup the index
43 * of an attributes qName. qNames are in uppercase in the hash table
66 * This method gets the index of an attribute given its qName.
67 * @param qname the qualified name of the attribute, e.g. "prefix1:locName1"
71 public final int getIndex(String qname)
79 index = super.getIndex(qname);
84 Integer i = (Integer)m_indexFromQName.get(qname);
92 * This method adds the attribute, but also records its qName/index pair in
93 * the hashtable for fast lookup by getIndex(qName)
    [all...]
  /external/webkit/WebCore/dom/
xml_expat_tokenizer.cpp 434 String qName = prefix.isEmpty() ? localName : prefix + ":" + localName;
444 RefPtr<Element> newElement = m_doc->createElementNS(uri, qName, ec);
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 498 * local name like "html:h1". In such cases, the qName will always be empty.
507 jstring qName() {
513 LocalArray<1024> qName(strlen(mPrefix) + 1 + strlen(mLocalName) + 1);
514 snprintf(&qName[0], qName.size(), "%s:%s", mPrefix, mLocalName);
515 return internString(mEnv, mParsingContext, &qName[0]);
528 bool matchesQName(const char* qName) {
529 const char* lastColon = strrchr(qName, ':');
538 return strcmp(qName, mLocalName) == 0;
542 size_t prefixLength = lastColon - qName;
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMDocumentImpl.java 435 java.lang.String qName)
475 java.lang.String qName, Attributes atts)
480 // %TBD% Split prefix off qname
482 int colon=qName.indexOf(':');
484 prefix=qName.substring(0,colon);
499 qName=atts.getQName(i);
500 if(qName.startsWith("xmlns:") || "xmlns".equals(qName))
503 colon=qName.indexOf(':');
506 prefix=qName.substring(0,colon)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java 3361 String qname = null; local
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 147 milliseconds