HomeSort by relevance Sort by last modified time
    Searched full:expandedtypeid (Results 1 - 4 of 4) sorted by null

  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseTraversers.java 222 * @param expandedTypeID The expanded type ID that must match.
226 public int next(int context, int current, int expandedTypeID)
233 if (m_exptype.elementAt(current) == expandedTypeID)
269 * @param expandedTypeID The expanded type ID that must match.
273 public int first(int context, int expandedTypeID)
275 return (getExpandedTypeID(context) == expandedTypeID)
276 ? context : next(context, context, expandedTypeID);
306 * @param expandedTypeID The expanded type ID that must match.
310 public int next(int context, int current, int expandedTypeID)
318 if (getExpandedTypeID(current) == expandedTypeID)
    [all...]
DTMDefaultBase.java 314 * @param expandedTypeID The expanded type ID of the node.
317 protected void indexNode(int expandedTypeID, int identity)
321 short type = ent.getType(expandedTypeID);
325 int namespaceID = ent.getNamespaceID(expandedTypeID);
326 int localNameID = ent.getLocalNameID(expandedTypeID);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 594 int expandedTypeID = getExpandedTypeID(nodeHandle);
596 int namespaceID = m_expandedNameTable.getNamespaceID(expandedTypeID);
601 // String name = m_expandedNameTable.getLocalName(expandedTypeID);
606 if (null == m_expandedNameTable.getLocalName(expandedTypeID))
609 return "xmlns:" + m_expandedNameTable.getLocalName(expandedTypeID);
611 else if (0 == m_expandedNameTable.getLocalNameID(expandedTypeID))
616 return m_expandedNameTable.getLocalName(expandedTypeID);
643 int expandedTypeID = getExpandedTypeID(nodeHandle);
644 int namespaceID = m_expandedNameTable.getNamespaceID(expandedTypeID);
648 String name = m_expandedNameTable.getLocalName(expandedTypeID);
    [all...]
SAX2DTM2.java     [all...]

Completed in 629 milliseconds