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/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;
/external/webkit/Source/WebCore/svg/animation/
H A DSVGSMILElement.cpp106 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats) argument
109 , m_baseID(baseID)
309 String baseID; local
314 baseID = conditionString.left(pos);
331 if (baseID.isEmpty())
340 m_conditions.append(Condition(type, beginOrEnd, baseID, nameString, offset, repeats));

Completed in 216 milliseconds