/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | ElemCopy.java | 96 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()
|
D | ElemApplyImport.java | 80 int sourceNode = transformer.getXPathContext().getCurrentNode(); in execute() local 81 if (DTM.NULL != sourceNode) in execute() 85 transformer.applyTemplateToNode(this, matchTemplate, sourceNode); in execute()
|
D | ElemVariable.java | 243 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()
|
D | ElemForEach.java | 329 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()
|
D | ElemApplyTemplates.java | 200 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()
|
D | ElemWithParam.java | 190 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()
|
D | ElemExsltFuncResult.java | 64 int sourceNode = context.getCurrentNode(); in execute() local 67 XObject var = getValue(transformer, sourceNode); in execute()
|
D | ElemParam.java | 116 int sourceNode = transformer.getXPathContext().getCurrentNode(); in execute() local 117 XObject var = getValue(transformer, sourceNode); in execute()
|
D | ElemIf.java | 131 int sourceNode = xctxt.getCurrentNode(); in execute() local 133 if (m_test.bool(xctxt, sourceNode, this)) { in execute()
|
D | ElemChoose.java | 96 int sourceNode = xctxt.getCurrentNode(); in execute() local 103 if (when.getTest().bool(xctxt, sourceNode, when)) { in execute()
|
D | XUnresolvedVariable.java | 77 public XUnresolvedVariable(ElemVariable obj, int sourceNode, in XUnresolvedVariable() argument 83 m_context = sourceNode; in XUnresolvedVariable()
|
D | ElemElement.java | 207 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()
|
D | ElemPI.java | 130 int sourceNode = xctxt.getCurrentNode(); in execute() local 132 String piName = m_name_atv == null ? null : m_name_atv.evaluate(xctxt, sourceNode, this); in execute()
|
D | ElemNumber.java | 560 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 …]
|
D | ElemCopyOf.java | 130 int sourceNode = xctxt.getCurrentNode(); in execute() local 131 XObject value = m_selectExpression.execute(xctxt, sourceNode, this); in execute()
|
D | ElemExtensionCall.java | 284 String rawName, org.w3c.dom.Node sourceNode, TransformerImpl transformer) in getAttribute() argument 295 xctxt.getDTMHandleFromNode(sourceNode), in getAttribute()
|
D | ElemLiteralResult.java | 1346 int sourceNode = xctxt.getCurrentNode(); 1348 avt.evaluate(xctxt, sourceNode, this);
|
/external/webkit/Source/WebCore/xml/ |
D | XSLTProcessor.cpp | 69 const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame) in createDocumentFromSource() argument 71 RefPtr<Document> ownerDocument = sourceNode->document(); in createDocumentFromSource() 72 bool sourceIsDocument = (sourceNode == ownerDocument.get()); in createDocumentFromSource() 126 PassRefPtr<Document> XSLTProcessor::transformToDocument(Node* sourceNode) in transformToDocument() argument 131 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding)) in transformToDocument() 133 return createDocumentFromSource(resultString, resultEncoding, resultMIMEType, sourceNode, 0); in transformToDocument() 136 PassRefPtr<DocumentFragment> XSLTProcessor::transformToFragment(Node* sourceNode, Document* outputD… in transformToFragment() argument 146 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncoding)) in transformToFragment()
|
D | XSLTProcessorQt.cpp | 114 bool XSLTProcessor::transformToString(Node* sourceNode, String&, String& resultString, String&) in transformToString() argument 133 RefPtr<Document> ownerDocument = sourceNode->document(); in transformToString() 134 bool sourceIsDocument = (sourceNode == ownerDocument.get()); in transformToString() 150 source = createMarkup(sourceNode); in transformToString()
|
D | XSLTProcessorLibxslt.cpp | 265 static inline xmlDocPtr xmlDocPtrFromNode(Node* sourceNode, bool& shouldDelete) in xmlDocPtrFromNode() argument 267 RefPtr<Document> ownerDocument = sourceNode->document(); in xmlDocPtrFromNode() 268 bool sourceIsDocument = (sourceNode == ownerDocument.get()); in xmlDocPtrFromNode() 274 …oc = (xmlDocPtr)xmlDocPtrForString(ownerDocument->cachedResourceLoader(), createMarkup(sourceNode), in xmlDocPtrFromNode() 300 bool XSLTProcessor::transformToString(Node* sourceNode, String& mimeType, String& resultString, Str… in transformToString() argument 302 RefPtr<Document> ownerDocument = sourceNode->document(); in transformToString() 318 if (xmlDocPtr sourceDoc = xmlDocPtrFromNode(sourceNode, shouldFreeSourceDoc)) { in transformToString()
|
D | XSLTProcessor.h | 51 …ource, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame);
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
D | MsgMgr.java | 124 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/llvm/lib/Transforms/Instrumentation/ |
D | PathProfiling.cpp | 484 BallLarusNode* sourceNode = getSource(); in getSuccessorNumber() local 486 BasicBlock* source = sourceNode->getBlock(); in getSuccessorNumber() 1088 BLInstrumentationNode* sourceNode = (BLInstrumentationNode*)edge->getSource(); in insertInstrumentationStartingAt() local 1097 if( sourceNode->getBlock() && sourceNode->getNumberSuccEdges() <= 1) { in insertInstrumentationStartingAt() 1099 << sourceNode->getName() << " (at end)\n"); in insertInstrumentationStartingAt() 1100 instrumentNode = sourceNode; in insertInstrumentationStartingAt() 1110 pushValueIntoNode(sourceNode, targetNode); in insertInstrumentationStartingAt() 1406 BallLarusNode* sourceNode = edge->getSource(); in splitCritical() local 1408 BasicBlock* sourceBlock = sourceNode->getBlock(); in splitCritical() 1412 || sourceNode->getNumberSuccEdges() <= 1 in splitCritical()
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | XPath.java | 524 XPathContext xctxt, int sourceNode, String msg, Object[] args) in warn() argument 577 XPathContext xctxt, int sourceNode, String msg, Object[] args) in error() argument
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_bar_folder_controller.mm | 201 - (BOOL)dragBookmark:(const BookmarkNode*)sourceNode 1250 - (BOOL)dragBookmark:(const BookmarkNode*)sourceNode 1253 DCHECK(sourceNode); 1276 if (!destParent->HasAncestor(sourceNode)) { 1278 [self bookmarkModel]->Copy(sourceNode, destParent, destIndex); 1280 [self bookmarkModel]->Move(sourceNode, destParent, destIndex); 1428 const BookmarkNode* sourceNode = [sourceButton bookmarkNode]; 1430 if (destNode->HasAncestor(sourceNode)) 1460 const BookmarkNode* sourceNode = [sourceButton bookmarkNode]; 1461 return [self dragBookmark:sourceNode to:point copy:copy]; [all …]
|