Home | History | Annotate | Download | only in templates

Lines Matching refs:child

58     for (ElemTemplateElement child = m_firstChild; child != null;
59 child = child.m_nextSibling)
61 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK)
65 transformer.pushElemTemplateElement(child);
66 ((ElemFallback) child).executeFallback(transformer);
78 * Return true if this extension element has a <xsl:fallback> child element.
80 * @return true if this extension element has a <xsl:fallback> child element.
84 for (ElemTemplateElement child = m_firstChild; child != null;
85 child = child.m_nextSibling)
87 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK)
97 * Execute fallback if fallback child exists or do nothing