Home
last modified time | relevance | path

Searched refs:sourceNode (Results 1 – 23 of 23) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemCopy.java96 int sourceNode = xctxt.getCurrentNode(); in execute() local
97 xctxt.pushCurrentNode(sourceNode); in execute()
98 DTM dtm = xctxt.getDTM(sourceNode); in execute()
99 short nodeType = dtm.getNodeType(sourceNode); in execute()
106 ClonerToResultTree.cloneToResultTree(sourceNode, nodeType, dtm, in execute()
112 SerializerUtils.processNSDecls(rthandler, sourceNode, nodeType, dtm); in execute()
115 String ns = dtm.getNamespaceURI(sourceNode); in execute()
116 String localName = dtm.getLocalName(sourceNode); in execute()
118 dtm.getNodeName(sourceNode)); in execute()
DElemApplyImport.java80 int sourceNode = transformer.getXPathContext().getCurrentNode(); in execute() local
81 if (DTM.NULL != sourceNode) in execute()
85 transformer.applyTemplateToNode(this, matchTemplate, sourceNode); in execute()
DElemVariable.java243 int sourceNode = transformer.getXPathContext().getCurrentNode(); in execute() local
245 XObject var = getValue(transformer, sourceNode); in execute()
261 public XObject getValue(TransformerImpl transformer, int sourceNode) in getValue() argument
268 xctxt.pushCurrentNode(sourceNode); in getValue()
274 var = m_selectPattern.execute(xctxt, sourceNode, this); in getValue()
DElemForEach.java329 final int sourceNode = xctxt.getCurrentNode(); in transformSelectedNodes() local
331 sourceNode); in transformSelectedNodes()
338 : transformer.processSortKeys(this, sourceNode); in transformSelectedNodes()
358 DTM dtm = xctxt.getDTM(sourceNode); in transformSelectedNodes()
359 int docID = sourceNode & DTMManager.IDENT_DTM_DEFAULT; in transformSelectedNodes()
DElemApplyTemplates.java200 final int sourceNode = xctxt.getCurrentNode(); in transformSelectedNodes() local
201 DTMIterator sourceNodes = m_selectExpression.asIterator(xctxt, sourceNode); in transformSelectedNodes()
217 : transformer.processSortKeys(this, sourceNode); in transformSelectedNodes()
230 DTM dtm = xctxt.getDTM(sourceNode); in transformSelectedNodes()
244 XObject obj = ewp.getValue(transformer, sourceNode); in transformSelectedNodes()
DElemWithParam.java190 public XObject getValue(TransformerImpl transformer, int sourceNode) in getValue() argument
197 xctxt.pushCurrentNode(sourceNode); in getValue()
203 var = m_selectPattern.execute(xctxt, sourceNode, this); in getValue()
DElemExsltFuncResult.java64 int sourceNode = context.getCurrentNode(); in execute() local
67 XObject var = getValue(transformer, sourceNode); in execute()
DElemParam.java116 int sourceNode = transformer.getXPathContext().getCurrentNode(); in execute() local
117 XObject var = getValue(transformer, sourceNode); in execute()
DElemIf.java131 int sourceNode = xctxt.getCurrentNode(); in execute() local
133 if (m_test.bool(xctxt, sourceNode, this)) { in execute()
DElemChoose.java96 int sourceNode = xctxt.getCurrentNode(); in execute() local
103 if (when.getTest().bool(xctxt, sourceNode, when)) { in execute()
DXUnresolvedVariable.java77 public XUnresolvedVariable(ElemVariable obj, int sourceNode, in XUnresolvedVariable() argument
83 m_context = sourceNode; in XUnresolvedVariable()
DElemElement.java207 int sourceNode = xctxt.getCurrentNode(); in execute() local
210 String nodeName = m_name_avt == null ? null : m_name_avt.evaluate(xctxt, sourceNode, this); in execute()
231 nodeNamespace = m_namespace_avt.evaluate(xctxt, sourceNode, this); in execute()
DElemPI.java130 int sourceNode = xctxt.getCurrentNode(); in execute() local
132 String piName = m_name_atv == null ? null : m_name_atv.evaluate(xctxt, sourceNode, this); in execute()
DElemNumber.java560 int sourceNode = transformer.getXPathContext().getCurrentNode(); in execute() local
561 String countString = getCountString(transformer, sourceNode); in execute()
787 String getCountString(TransformerImpl transformer, int sourceNode) in getCountString() argument
797 XObject countObj = m_valueExpr.execute(xctxt, sourceNode, this); in getCountString()
815 list[0] = ctable.countNode(xctxt, this, sourceNode); in getCountString()
820 getMatchingAncestors(xctxt, sourceNode, in getCountString()
839 ? formatNumberList(transformer, list, sourceNode) : ""; in getCountString()
942 public int getTargetNode(XPathContext xctxt, int sourceNode) in getTargetNode() argument
947 XPath countMatchPattern = getCountMatchPattern(xctxt, sourceNode); in getTargetNode()
952 countMatchPattern, sourceNode, in getTargetNode()
[all …]
DElemCopyOf.java130 int sourceNode = xctxt.getCurrentNode(); in execute() local
131 XObject value = m_selectExpression.execute(xctxt, sourceNode, this); in execute()
DElemExtensionCall.java284 String rawName, org.w3c.dom.Node sourceNode, TransformerImpl transformer) in getAttribute() argument
295 xctxt.getDTMHandleFromNode(sourceNode), in getAttribute()
DElemLiteralResult.java1346 int sourceNode = xctxt.getCurrentNode();
1348 avt.evaluate(xctxt, sourceNode, this);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DMsgMgr.java124 public void warn(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg) in warn() argument
127 warn(srcLctr, styleNode, sourceNode, msg, null); in warn()
143 …public void warn(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg, Object args[]) in warn() argument
278 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg) in error() argument
281 error(srcLctr, styleNode, sourceNode, msg, null); in error()
298 …public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg, Object args[… in error() argument
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAccessibilityRecord.java24 private AccessibilityNodeInfo sourceNode; field in ShadowAccessibilityRecord
50 sourceNode = node; in setSourceNode()
58 if (sourceNode == null) { in getSource()
61 return AccessibilityNodeInfo.obtain(sourceNode); in getSource()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPUtilsImpl.java598 private static void appendSubtree(XMPMetaImpl destXMP, XMPNode sourceNode, XMPNode destParent, in appendSubtree() argument
601 XMPNode destNode = XMPNodeUtils.findChildNode(destParent, sourceNode.getName(), false); in appendSubtree()
606 valueIsEmpty = sourceNode.getOptions().isSimple() ? in appendSubtree()
607 sourceNode.getValue() == null || sourceNode.getValue().length() == 0 : in appendSubtree()
608 !sourceNode.hasChildren(); in appendSubtree()
621 destParent.addChild((XMPNode) sourceNode.clone()); in appendSubtree()
626 destXMP.setNode(destNode, sourceNode.getValue(), sourceNode.getOptions(), true); in appendSubtree()
628 destNode = (XMPNode) sourceNode.clone(); in appendSubtree()
636 PropertyOptions sourceForm = sourceNode.getOptions(); in appendSubtree()
647 for (Iterator it = sourceNode.iterateChildren(); it.hasNext();) in appendSubtree()
[all …]
/external/llvm-project/mlir/lib/Transforms/
DInliner.cpp302 ResolvedCall(CallOpInterface call, CallGraphNode *sourceNode, in ResolvedCall()
304 : call(call), sourceNode(sourceNode), targetNode(targetNode) {} in ResolvedCall()
306 CallGraphNode *sourceNode, *targetNode; member
314 CallGraphNode *sourceNode, CallGraph &cg, in collectCallOps() argument
325 addToWorklist(sourceNode, blocks); in collectCallOps()
328 std::tie(block, sourceNode) = worklist.pop_back_val(); in collectCallOps()
341 calls.emplace_back(call, sourceNode, targetNode); in collectCallOps()
351 addToWorklist(nestedNode ? nestedNode : sourceNode, nestedRegion); in collectCallOps()
481 useList.dropCallUses(it.sourceNode, call.getOperation(), cg); in inlineCallsInSCC()
482 useList.mergeUsesAfterInlining(it.targetNode, it.sourceNode); in inlineCallsInSCC()
/external/apache-xml/src/main/java/org/apache/xpath/
DXPath.java524 XPathContext xctxt, int sourceNode, String msg, Object[] args) in warn() argument
577 XPathContext xctxt, int sourceNode, String msg, Object[] args) in error() argument
/external/adhd/scripts/audio_tuning/frontend/
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);