HomeSort by relevance Sort by last modified time
    Searched refs:sourceNode (Results 1 - 25 of 25) sorted by null

  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemCopy.java 96 int sourceNode = xctxt.getCurrentNode();
97 xctxt.pushCurrentNode(sourceNode);
98 DTM dtm = xctxt.getDTM(sourceNode);
99 short nodeType = dtm.getNodeType(sourceNode);
106 ClonerToResultTree.cloneToResultTree(sourceNode, nodeType, dtm,
112 SerializerUtils.processNSDecls(rthandler, sourceNode, nodeType, dtm);
115 String ns = dtm.getNamespaceURI(sourceNode);
116 String localName = dtm.getLocalName(sourceNode);
118 dtm.getNodeName(sourceNode));
ElemApplyImport.java 80 int sourceNode = transformer.getXPathContext().getCurrentNode();
81 if (DTM.NULL != sourceNode)
85 transformer.applyTemplateToNode(this, matchTemplate, sourceNode);
87 else // if(null == sourceNode)
90 XSLTErrorResources.ER_NULL_SOURCENODE_APPLYIMPORTS); //"sourceNode is null in xsl:apply-imports!");
ElemExsltFuncResult.java 64 int sourceNode = context.getCurrentNode();
67 XObject var = getValue(transformer, sourceNode);
ElemChoose.java 96 int sourceNode = xctxt.getCurrentNode();
103 if (when.getTest().bool(xctxt, sourceNode, when)) {
ElemIf.java 131 int sourceNode = xctxt.getCurrentNode();
133 if (m_test.bool(xctxt, sourceNode, this)) {
ElemParam.java 116 int sourceNode = transformer.getXPathContext().getCurrentNode();
117 XObject var = getValue(transformer, sourceNode);
XUnresolvedVariable.java 69 * @param sourceNode The node context for execution.
77 public XUnresolvedVariable(ElemVariable obj, int sourceNode,
83 m_context = sourceNode;
ElemWithParam.java 184 * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
190 public XObject getValue(TransformerImpl transformer, int sourceNode)
197 xctxt.pushCurrentNode(sourceNode);
203 var = m_selectPattern.execute(xctxt, sourceNode, this);
ElemApplyTemplates.java 159 // if (null != sourceNode)
200 final int sourceNode = xctxt.getCurrentNode();
201 DTMIterator sourceNodes = m_selectExpression.asIterator(xctxt, sourceNode);
217 : transformer.processSortKeys(this, sourceNode);
230 DTM dtm = xctxt.getDTM(sourceNode);
244 XObject obj = ewp.getValue(transformer, sourceNode);
ElemForEach.java 329 final int sourceNode = xctxt.getCurrentNode();
331 sourceNode);
338 : transformer.processSortKeys(this, sourceNode);
358 DTM dtm = xctxt.getDTM(sourceNode);
359 int docID = sourceNode & DTMManager.IDENT_DTM_DEFAULT;
ElemVariable.java 243 int sourceNode = transformer.getXPathContext().getCurrentNode();
245 XObject var = getValue(transformer, sourceNode);
255 * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
261 public XObject getValue(TransformerImpl transformer, int sourceNode)
268 xctxt.pushCurrentNode(sourceNode);
274 var = m_selectPattern.execute(xctxt, sourceNode, this);
ElemElement.java 207 int sourceNode = xctxt.getCurrentNode();
210 String nodeName = m_name_avt == null ? null : m_name_avt.evaluate(xctxt, sourceNode, this);
231 nodeNamespace = m_namespace_avt.evaluate(xctxt, sourceNode, this);
ElemPI.java 130 int sourceNode = xctxt.getCurrentNode();
132 String piName = m_name_atv == null ? null : m_name_atv.evaluate(xctxt, sourceNode, this);
ElemCopyOf.java 130 int sourceNode = xctxt.getCurrentNode();
131 XObject value = m_selectExpression.execute(xctxt, sourceNode, this);
199 // transformer.getTraceManager().fireSelectedEvent(sourceNode, this,
ElemExtensionCall.java 276 * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
284 String rawName, org.w3c.dom.Node sourceNode, TransformerImpl transformer)
295 xctxt.getDTMHandleFromNode(sourceNode),
ElemNumber.java 560 int sourceNode = transformer.getXPathContext().getCurrentNode();
561 String countString = getCountString(transformer, sourceNode);
781 * @param sourceNode The source node being counted.
787 String getCountString(TransformerImpl transformer, int sourceNode)
797 XObject countObj = m_valueExpr.execute(xctxt, sourceNode, this);
815 list[0] = ctable.countNode(xctxt, this, sourceNode);
820 getMatchingAncestors(xctxt, sourceNode,
839 ? formatNumberList(transformer, list, sourceNode) : "";
936 * @param sourceNode non-null reference to the <a href="http://www.w3.org/TR/xslt#dt-current-node">current source node</a>.
942 public int getTargetNode(XPathContext xctxt, int sourceNode)
    [all...]
ElemLiteralResult.java     [all...]
  /external/webkit/WebCore/xml/
XSLTProcessor.cpp 65 const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame)
67 RefPtr<Document> ownerDocument = sourceNode->document();
68 bool sourceIsDocument = (sourceNode == ownerDocument.get());
121 PassRefPtr<Document> XSLTProcessor::transformToDocument(Node* sourceNode)
126 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding))
128 return createDocumentFromSource(resultString, resultEncoding, resultMIMEType, sourceNode, 0);
131 PassRefPtr<DocumentFragment> XSLTProcessor::transformToFragment(Node* sourceNode, Document* outputDoc)
141 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding))
XSLTProcessorQt.cpp 116 bool XSLTProcessor::transformToString(Node* sourceNode, String&, String& resultString, String&)
132 RefPtr<Document> ownerDocument = sourceNode->document();
133 bool sourceIsDocument = (sourceNode == ownerDocument.get());
149 source = createMarkup(sourceNode);
XSLTProcessorLibxslt.cpp 240 static inline xmlDocPtr xmlDocPtrFromNode(Node* sourceNode, bool& shouldDelete)
242 RefPtr<Document> ownerDocument = sourceNode->document();
243 bool sourceIsDocument = (sourceNode == ownerDocument.get());
249 sourceDoc = (xmlDocPtr)xmlDocPtrForString(ownerDocument->docLoader(), createMarkup(sourceNode),
275 bool XSLTProcessor::transformToString(Node* sourceNode, String& mimeType, String& resultString, String& resultEncoding)
277 RefPtr<Document> ownerDocument = sourceNode->document();
293 if (xmlDocPtr sourceDoc = xmlDocPtrFromNode(sourceNode, shouldFreeSourceDoc)) {
XSLTProcessor.h 50 PassRefPtr<Document> createDocumentFromSource(const String& source, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame);
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
MsgMgr.java 116 * @param sourceNode Source tree node
124 public void warn(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg)
127 warn(srcLctr, styleNode, sourceNode, msg, null);
134 * @param sourceNode Source tree node
143 public void warn(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg, Object args[])
270 * @param sourceNode Source tree node
278 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg)
281 error(srcLctr, styleNode, sourceNode, msg, null);
289 * @param sourceNode Source tree node
298 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg, Object args[]
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/
XPath.java 513 * @param sourceNode Not used.
524 XPathContext xctxt, int sourceNode, String msg, Object[] args)
566 * @param sourceNode Not used.
577 XPathContext xctxt, int sourceNode, String msg, Object[] args)
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyScene.java 127 protected void attachEdgeSourceAnchor(String edge, ViewNode oldSourceNode, ViewNode sourceNode) {
129 final Widget source = findWidget(sourceNode);
  /external/webkit/WebCore/editing/
ReplaceSelectionCommand.cpp 439 Node* sourceNode = source.deepEquivalent().node();
441 Node* sourceBlock = enclosingBlock(sourceNode);
450 !isBlock(sourceNode) && !isBlock(destinationNode);
    [all...]

Completed in 292 milliseconds