Searched refs:sourceNode (Results 1 - 24 of 24) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemCopy.java96 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));
H A DElemApplyImport.java80 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!");
H A DElemExsltFuncResult.java64 int sourceNode = context.getCurrentNode();
67 XObject var = getValue(transformer, sourceNode);
H A DElemChoose.java96 int sourceNode = xctxt.getCurrentNode();
103 if (when.getTest().bool(xctxt, sourceNode, when)) {
H A DElemIf.java131 int sourceNode = xctxt.getCurrentNode();
133 if (m_test.bool(xctxt, sourceNode, this)) {
H A DElemParam.java116 int sourceNode = transformer.getXPathContext().getCurrentNode();
117 XObject var = getValue(transformer, sourceNode);
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 DElemApplyTemplates.java159 // 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);
H A DElemForEach.java329 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;
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 DElemElement.java207 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);
H A DElemPI.java130 int sourceNode = xctxt.getCurrentNode();
132 String piName = m_name_atv == null ? null : m_name_atv.evaluate(xctxt, sourceNode, this);
H A DElemCopyOf.java130 int sourceNode = xctxt.getCurrentNode();
131 XObject value = m_selectExpression.execute(xctxt, sourceNode, this);
199 // transformer.getTraceManager().fireSelectedEvent(sourceNode, this,
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 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...]
H A DElemLiteralResult.java1346 int sourceNode = xctxt.getCurrentNode();
1348 avt.evaluate(xctxt, sourceNode, this);
/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/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/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
H A DPathProfiling.cpp484 BallLarusNode* sourceNode = getSource(); local
486 BasicBlock* source = sourceNode->getBlock();
1087 BLInstrumentationNode* sourceNode = (BLInstrumentationNode*)edge->getSource(); local
1096 if( sourceNode->getBlock() && sourceNode->getNumberSuccEdges() <= 1) {
1098 << sourceNode->getName() << " (at end)\n");
1099 instrumentNode = sourceNode;
1109 pushValueIntoNode(sourceNode, targetNode);
1405 BallLarusNode* sourceNode = edge->getSource(); local
1407 BasicBlock* sourceBlock = sourceNode
[all...]
/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/adhd/scripts/audio_tuning/frontend/
H A Daudio.js111 var sourceNode; variable
192 if (sourceNode) {
194 sourceNode.disconnect();
197 connect_from_native(pin(sourceNode), audio_graph);
201 sourceNode.connect(audioContext.destination);
976 sourceNode = audioContext.createMediaElementSource(mediaElement);
/external/annotation-tools/asmx/test/lib/
H A Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 537 milliseconds