Searched defs:sourceNode (Results 1 - 13 of 13) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DMsgMgr.java116 * @param sourceNode Source tree node
124 public void warn(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg) argument
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[]) argument
270 * @param sourceNode Source tree node
278 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg) argument
281 error(srcLctr, styleNode, sourceNode, msg, null);
289 * @param sourceNode Source tree node
298 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, Strin argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemExtensionCall.java276 * @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),
283 getAttribute( String rawName, org.w3c.dom.Node sourceNode, TransformerImpl transformer) argument
H A DXUnresolvedVariable.java69 * @param sourceNode The node context for execution.
77 public XUnresolvedVariable(ElemVariable obj, int sourceNode, argument
83 m_context = sourceNode;
H A DElemWithParam.java184 * @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) argument
197 xctxt.pushCurrentNode(sourceNode);
203 var = m_selectPattern.execute(xctxt, sourceNode, this);
H A DElemVariable.java243 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) argument
268 xctxt.pushCurrentNode(sourceNode);
274 var = m_selectPattern.execute(xctxt, sourceNode, this);
H A DElemNumber.java560 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) argument
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) argument
[all...]
/external/webkit/Source/WebCore/xml/
H A DXSLTProcessorQt.cpp114 bool XSLTProcessor::transformToString(Node* sourceNode, String&, String& resultString, String&) argument
133 RefPtr<Document> ownerDocument = sourceNode->document();
134 bool sourceIsDocument = (sourceNode == ownerDocument.get());
150 source = createMarkup(sourceNode);
H A DXSLTProcessor.cpp69 const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame)
71 RefPtr<Document> ownerDocument = sourceNode->document();
72 bool sourceIsDocument = (sourceNode == ownerDocument.get());
126 PassRefPtr<Document> XSLTProcessor::transformToDocument(Node* sourceNode) argument
131 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding))
133 return createDocumentFromSource(resultString, resultEncoding, resultMIMEType, sourceNode, 0);
136 PassRefPtr<DocumentFragment> XSLTProcessor::transformToFragment(Node* sourceNode, Document* outputDoc) argument
146 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding))
68 createDocumentFromSource(const String& sourceString, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame) argument
H A DXSLTProcessorLibxslt.cpp265 static inline xmlDocPtr xmlDocPtrFromNode(Node* sourceNode, bool& shouldDelete) argument
267 RefPtr<Document> ownerDocument = sourceNode->document();
268 bool sourceIsDocument = (sourceNode == ownerDocument.get());
274 sourceDoc = (xmlDocPtr)xmlDocPtrForString(ownerDocument->cachedResourceLoader(), createMarkup(sourceNode),
300 bool XSLTProcessor::transformToString(Node* sourceNode, String& mimeType, String& resultString, String& resultEncoding) argument
302 RefPtr<Document> ownerDocument = sourceNode->document();
318 if (xmlDocPtr sourceDoc = xmlDocPtrFromNode(sourceNode, shouldFreeSourceDoc)) {
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPath.java513 * @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)
523 warn( XPathContext xctxt, int sourceNode, String msg, Object[] args) argument
576 error( XPathContext xctxt, int sourceNode, String msg, Object[] args) argument
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPUtilsImpl.java591 * @param sourceNode the source node
598 private static void appendSubtree(XMPMetaImpl destXMP, XMPNode sourceNode, XMPNode destParent, argument
601 XMPNode destNode = XMPNodeUtils.findChildNode(destParent, sourceNode.getName(), false);
606 valueIsEmpty = sourceNode.getOptions().isSimple() ?
607 sourceNode.getValue() == null || sourceNode.getValue().length() == 0 :
608 !sourceNode.hasChildren();
621 destParent.addChild((XMPNode) sourceNode.clone());
626 destXMP.setNode(destNode, sourceNode.getValue(), sourceNode
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DPathProfiling.cpp484 BallLarusNode* sourceNode = getSource(); local
486 BasicBlock* source = sourceNode->getBlock();
1088 BLInstrumentationNode* sourceNode = (BLInstrumentationNode*)edge->getSource(); local
1097 if( sourceNode->getBlock() && sourceNode->getNumberSuccEdges() <= 1) {
1099 << sourceNode->getName() << " (at end)\n");
1100 instrumentNode = sourceNode;
1110 pushValueIntoNode(sourceNode, targetNode);
1406 BallLarusNode* sourceNode = edge->getSource(); local
1408 BasicBlock* sourceBlock = sourceNode
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/93/1/.cp/
H A Dconvert.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ ...

Completed in 200 milliseconds