/external/apache-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/apache-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...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPUtilsImpl.java | 591 * @param sourceNode the source node 598 private static void appendSubtree(XMPMetaImpl destXMP, XMPNode sourceNode, XMPNode destParent, 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.getOptions(), true) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
ConstraintPainter.java | 90 INode sourceNode = source.node; 92 if (sourceNode == targetNode) { 97 Rect sourceBounds = sourceNode.getBounds(); 99 paintConstraint(graphics, constraint.type, sourceNode, sourceBounds, targetNode, 183 private static void paintConstraint(IGraphics graphics, ConstraintType type, INode sourceNode, 208 if (paintCornerConstraint(graphics, type, sourceNode, sourceBounds, targetNode, 216 paintVerticalConstraint(graphics, type, sourceNode, sourceBounds, targetNode, 223 paintHorizontalConstraint(graphics, type, sourceNode, sourceBounds, targetNode, 269 * @param sourceNode the source node 278 INode sourceNode, Rect sourceBounds, INode targetNode, Rect targetBounds [all...] |
/external/apache-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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/93/1/.cp/ |
convert.jar | |
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/ |
prettify.js | [all...] |
/prebuilts/tools/common/m2/repository/xalan/xalan/2.7.1/ |
xalan-2.7.1.jar | |