Searched refs:baseID (Results 1 - 8 of 8) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DTransformerFactoryImpl.java260 String baseID;
270 baseID = dsource.getSystemId();
275 baseID = isource.getSystemId();
281 StylesheetPIHandler handler = new StylesheetPIHandler(baseID, media,
294 TreeWalker walker = new TreeWalker(handler, new org.apache.xml.utils.DOM2Helper(), baseID);
844 String baseID = source.getSystemId();
846 if (null != baseID) {
847 baseID = SystemIDResolver.getAbsoluteURI(baseID);
857 return processFromNode(node, baseID);
[all...]
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/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSVGSMILElement.h182 Condition(Type, BeginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeat = -1);
183 static PassOwnPtrWillBeRawPtr<Condition> create(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeat = -1) argument
185 return adoptPtrWillBeNoop(new Condition(type, beginOrEnd, baseID, name, offset, repeat));
192 String baseID() const { return m_baseID; } function in class:blink::SVGSMILElement::Condition
H A DSVGSMILElement.cpp162 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeat) argument
165 , m_baseID(baseID)
451 String baseID; local
456 baseID = conditionString.left(pos);
471 if (baseID.isEmpty())
480 m_conditions.append(Condition::create(type, beginOrEnd, baseID, nameString, offset, repeat));
593 Element* eventBase = condition.baseID().isEmpty() ? targetElement() : treeScope().getElementById(AtomicString(condition.baseID()));
607 ASSERT(!condition->baseID().isEmpty());
608 Element* element = treeScope().getElementById(AtomicString(condition->baseID()));
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLPathRendering.cpp230 GrGLuint baseID = static_cast<const GrGLPathRange*>(pathRange)->basePathID(); local
250 count, GR_GL_UNSIGNED_INT, indices, baseID, fillMode,
255 count, GR_GL_UNSIGNED_INT, indices, baseID, 0xffff, writeMask,
260 count, GR_GL_UNSIGNED_INT, indices, baseID, fillMode, writeMask,
267 count, GR_GL_UNSIGNED_INT, indices, baseID, fillMode,
273 count, GR_GL_UNSIGNED_INT, indices, baseID, 0xffff,
/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);
639 importer->getRules(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 2817 milliseconds