Searched defs:baseID (Results 1 - 4 of 4) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStylesheetPIHandler.java43 /** The baseID of the document being processed. */
93 * @param baseID The base ID of the XML document, needed to resolve
99 public StylesheetPIHandler(String baseID, String media, String title, argument
103 m_baseID = baseID;
/external/icu/icu4c/source/i18n/
H A Dcollationruleparser.cpp618 char baseID[ULOC_FULLNAME_CAPACITY]; local
619 length = uloc_getBaseName(localeID, baseID, ULOC_FULLNAME_CAPACITY, &errorCode);
625 if(length == 3 && uprv_memcmp(baseID, "und", 3) == 0) {
626 uprv_strcpy(baseID, "root");
642 importer->getRules(baseID, length > 0 ? collationType : "standard",
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java273 * @param baseID Base URL for this stylesheet.
275 public void setSystemId(String baseID) argument
277 pushBaseIndentifier(baseID);
1374 * @param baseID The current base identifier for this position in the
1379 void pushBaseIndentifier(String baseID) argument
1382 if (null != baseID)
1384 int posOfHash = baseID.indexOf('#');
1388 m_fragmentIDString = baseID.substring(posOfHash + 1);
1397 m_baseIdentifiers.push(baseID);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM2.java3306 * @baseID The node identity of the base node, which can be an
3310 protected final int getNextNamespaceNode2(int baseID) { argument
3312 while ((type = _type2(++baseID)) == DTM.ATTRIBUTE_NODE);
3315 return baseID;

Completed in 361 milliseconds