Home
last modified time | relevance | path

Searched refs:currentNode (Results 1 – 25 of 37) sorted by relevance

12

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodAnalyzer.java33 private AbstractInsnNode currentNode; field in MethodAnalyzer
49 currentNode = methodNode.instructions.getFirst(); in accept()
50 while (currentNode != null) { in accept()
51 currentNode.accept(methodVisitor); in accept()
52 currentNode = currentNode.getNext(); in accept()
69 builder.addInstruction(currentNode); in visitInsn()
74 builder.addInstruction(currentNode); in visitIntInsn()
79 builder.addInstruction(currentNode); in visitVarInsn()
84 builder.addInstruction(currentNode); in visitTypeInsn()
90 builder.addInstruction(currentNode); in visitFieldInsn()
[all …]
/external/skia/modules/svg/src/
DSkSVGPattern.cpp62 const SkSVGPattern *currentNode = this, in resolveHref() local
67 inherit_if_needed(currentNode->fX , attrs->fX) | in resolveHref()
68 inherit_if_needed(currentNode->fY , attrs->fY) | in resolveHref()
69 inherit_if_needed(currentNode->fWidth , attrs->fWidth) | in resolveHref()
70 inherit_if_needed(currentNode->fHeight , attrs->fHeight) | in resolveHref()
71 inherit_if_needed(currentNode->fPatternTransform, attrs->fPatternTransform); in resolveHref()
74 contentNode = currentNode; in resolveHref()
84 currentNode = currentNode->hrefTarget(ctx); in resolveHref()
85 } while (currentNode); in resolveHref()
/external/apache-xml/src/main/java/org/apache/xpath/functions/
DFunctionDef1Arg.java86 int currentNode = xctxt.getCurrentNode(); in getArg0AsString() local
87 if(DTM.NULL == currentNode) in getArg0AsString()
91 DTM dtm = xctxt.getDTM(currentNode); in getArg0AsString()
92 return dtm.getStringValue(currentNode); in getArg0AsString()
119 int currentNode = xctxt.getCurrentNode(); in getArg0AsNumber() local
120 if(DTM.NULL == currentNode) in getArg0AsNumber()
124 DTM dtm = xctxt.getDTM(currentNode); in getArg0AsNumber()
125 XMLString str = dtm.getStringValue(currentNode); in getArg0AsNumber()
DFuncCurrent.java56 int currentNode = DTM.NULL; in execute() local
62 currentNode = iter.getCurrentContextNode(); in execute()
69 currentNode = xctxt.getContextNode(); in execute()
71 return new XNodeSet(currentNode, xctxt.getDTMManager()); in execute()
DFuncPosition.java95 int currentNode = xctxt.getContextNode(); in getPositionInContextNodeList() local
99 if(n == currentNode) in getPositionInContextNodeList()
/external/escapevelocity/src/main/java/com/google/escapevelocity/
DReparser.java151 Node currentNode = currentNode(); in parseTo() local
152 if (stopSet.contains(currentNode.getClass())) { in parseTo()
155 if (currentNode instanceof EofNode) { in parseTo()
162 if (currentNode instanceof TokenNode) { in parseTo()
165 parsed = currentNode; in parseTo()
173 private Node currentNode() { in currentNode() method in Reparser
178 Node currentNode = currentNode(); in nextNode() local
179 if (currentNode instanceof EofNode) { in nextNode()
180 return currentNode; in nextNode()
183 return currentNode(); in nextNode()
[all …]
/external/skqp/experimental/svg/model/
DSkSVGPattern.cpp112 const SkSVGPattern *currentNode = this, in resolveHref() local
117 inherit_if_needed(currentNode->fAttributes.fX , attrs->fX) | in resolveHref()
118 inherit_if_needed(currentNode->fAttributes.fY , attrs->fY) | in resolveHref()
119 inherit_if_needed(currentNode->fAttributes.fWidth , attrs->fWidth) | in resolveHref()
120 inherit_if_needed(currentNode->fAttributes.fHeight , attrs->fHeight) | in resolveHref()
121 inherit_if_needed(currentNode->fAttributes.fPatternTransform, attrs->fPatternTransform); in resolveHref()
124 contentNode = currentNode; in resolveHref()
134 currentNode = currentNode->hrefTarget(ctx); in resolveHref()
135 } while (currentNode); in resolveHref()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
DXmlResourceParserImpl.java59 private Node currentNode; field in XmlResourceParserImpl
171 if (currentNode == null) { in getText()
174 return StringResources.processStringResources(currentNode.getTextContent()); in getText()
227 String namespace = currentNode != null ? currentNode.getNamespaceURI() : null; in getNamespace()
237 if (currentNode == null) { in getName()
240 return currentNode.getNodeName(); in getName()
244 if (currentNode == null) { in getAttributeAt()
247 NamedNodeMap map = currentNode.getAttributes(); in getAttributeAt()
255 if (currentNode == null) { in getAttribute()
259 Element element = (Element) currentNode; in getAttribute()
[all …]
/external/antlr/runtime/ObjC/Framework/
DUnbufferedCommonTreeNodeStream.m37 @synthesize currentNode;
90 currentNode = root;
201 [state setCurrentNode:currentNode];
232 currentNode = [state currentNode];
320 if (currentNode == nil) {
330 if (currentChildIndex < (NSInteger)[currentNode getChildCount]) {
334 if (currentNode != nil) {
344 CommonTree *node = currentNode;
350 if ([currentNode getChildCount] == 0) {
351 currentNode = nil;
[all …]
DUnbufferedCommonTreeNodeStreamState.m48 - (CommonTree *) currentNode
50 return currentNode;
55 if (currentNode != aCurrentNode) {
57 [currentNode release];
58 currentNode = aCurrentNode;
DUnbufferedCommonTreeNodeStreamState.h31 CommonTree *currentNode; variable
42 - (CommonTree *) currentNode;
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/node/
DNodeCursor.java78 public abstract JsonNode currentNode(); in currentNode() method in NodeCursor
88 JsonNode n = currentNode(); in iterateChildren()
138 public JsonNode currentNode() { in currentNode() method in NodeCursor.RootCursor
177 public JsonNode currentNode() { return _currentElement; } in currentNode() method in NodeCursor.ArrayCursor
223 public JsonNode currentNode() { in currentNode() method in NodeCursor.ObjectCursor
228 public NodeCursor startArray() { return new ArrayCursor(currentNode(), this); } in startArray()
231 public NodeCursor startObject() { return new ObjectCursor(currentNode(), this); } in startObject()
DTreeTraversingParser.java205 return currentNode().textValue(); in getText()
208 return String.valueOf(currentNode().numberValue()); in getText()
210 JsonNode n = currentNode(); in getText()
303 JsonNode n = currentNode(); in getEmbeddedObject()
319 JsonNode n = currentNode(); in isNaN()
338 JsonNode n = currentNode(); in getBinaryValue()
370 protected JsonNode currentNode() { in currentNode() method in TreeTraversingParser
374 return _nodeCursor.currentNode(); in currentNode()
380 JsonNode n = currentNode(); in currentNumericNode()
/external/llvm-project/mlir/lib/Transforms/
DCSE.cpp193 auto &currentNode = stack.back(); in simplifyRegion() local
196 if (!currentNode->processed) { in simplifyRegion()
197 currentNode->processed = true; in simplifyRegion()
198 simplifyBlock(knownValues, domInfo, currentNode->node->getBlock()); in simplifyRegion()
202 if (currentNode->childIterator != currentNode->node->end()) { in simplifyRegion()
203 auto *childNode = *(currentNode->childIterator++); in simplifyRegion()
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
DStepPattern.java330 public XObject execute(XPathContext xctxt, int currentNode) in execute() argument
334 DTM dtm = xctxt.getDTM(currentNode); in execute()
338 int expType = dtm.getExpandedTypeID(currentNode); in execute()
340 return execute(xctxt, currentNode, dtm, expType); in execute()
382 XPathContext xctxt, int currentNode, DTM dtm, int expType) in execute() argument
398 score = super.execute(xctxt, currentNode, dtm, expType); in execute()
405 if (!executePredicates(xctxt, dtm, currentNode)) in execute()
411 currentNode); in execute()
665 XPathContext xctxt, DTM dtm, int currentNode) in executeRelativePathPattern() argument
670 int context = currentNode; in executeRelativePathPattern()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DKeyTable.java195 int currentNode; in getRefsTable() local
197 while (DTM.NULL != (currentNode = m_keyNodes.nextNode())) in getRefsTable()
206 currentNode, in getRefsTable()
211 addValueInRefsTable(xctxt, exprResult, currentNode); in getRefsTable()
220 addValueInRefsTable(xctxt, exprResult, currentNode); in getRefsTable()
/external/cldr/tools/java/org/unicode/cldr/util/
DDiscreteComparator.java315 Node<T> currentNode = this; in visit() local
318 … System.out.println("Visiting:\t" + gap + currentNode + " => " + resultOrdering.keySet()); in visit()
320 currentNode.visited = true; in visit()
321 currentNode.chained = true; in visit()
322 for (Node<T> subNode : currentNode.less) { in visit()
331 currentNode.chained = false; in visit()
332 resultOrdering.put(currentNode.me, resultOrdering.size()); in visit()
/external/llvm/include/llvm/Analysis/
DDominanceFrontierImpl.h168 const DomTreeNodeT *currentNode = currentW->Node; in calculate() local
171 assert(currentNode && "Invalid work object. Missing current Node"); in calculate()
181 if (DT[*SI]->getIDom() != currentNode) in calculate()
190 for (typename DomTreeNodeT::const_iterator NI = currentNode->begin(), in calculate()
191 NE = currentNode->end(); in calculate()
197 childBB, currentBB, IDominee, currentNode)); in calculate()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DDominanceFrontierImpl.h175 const DomTreeNodeT *currentNode = currentW->Node; in calculate() local
178 assert(currentNode && "Invalid work object. Missing current Node"); in calculate()
186 if (DT[Succ]->getIDom() != currentNode) in calculate()
195 for (typename DomTreeNodeT::const_iterator NI = currentNode->begin(), in calculate()
196 NE = currentNode->end(); in calculate()
202 childBB, currentBB, IDominee, currentNode)); in calculate()
/external/llvm-project/llvm/include/llvm/Analysis/
DDominanceFrontierImpl.h175 const DomTreeNodeT *currentNode = currentW->Node; in calculate() local
178 assert(currentNode && "Invalid work object. Missing current Node"); in calculate()
186 if (DT[Succ]->getIDom() != currentNode) in calculate()
195 for (typename DomTreeNodeT::const_iterator NI = currentNode->begin(), in calculate()
196 NE = currentNode->end(); in calculate()
202 childBB, currentBB, IDominee, currentNode)); in calculate()
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
DTypeLocator.java93 AbstractTypeDeclaration currentNode = typeDeclaration; in TypeLocator() local
94 while (currentNode != null) { in TypeLocator()
95 typeNames.add(currentNode.getName().getFullyQualifiedName()); in TypeLocator()
97 ASTNode parentNode = currentNode.getParent(); in TypeLocator()
105 + currentNode); in TypeLocator()
108 currentNode = (AbstractTypeDeclaration) parentNode; in TypeLocator()
/external/dagger2/java/dagger/internal/codegen/extension/
DDaggerGraphs.java65 N currentNode = currentNodes.remove(); in shortestPath() local
66 for (N nextNode : graph.successors(currentNode)) { in shortestPath()
70 visitedNodeToPathPredecessor.put(nextNode, currentNode); in shortestPath()
/external/jsilver/src/com/google/clearsilver/jsilver/data/
DNewHdfParser.java111 Data currentNode; field in NewHdfParser.ParseState
119 currentNode = output; in ParseState()
532 Data child = handleNodeCreation(state.currentNode, element); in handleDescend()
533 state.context.push(state.currentNode); in handleDescend()
534 state.currentNode = child; in handleDescend()
543 Data child = handleNodeCreation(state.currentNode, element); in handleAssign()
548 Data child = handleNodeCreation(state.currentNode, element); in handleCopy()
558 Data child = handleNodeCreation(state.currentNode, element); in handleLink()
567 state.currentNode = state.context.pop(); in handleAscend()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDOMBuilder.java178 Node currentNode = m_currentNode; in append() local
180 if (null != currentNode) in append()
182 if (currentNode == m_root && m_nextSibling != null) in append()
183 currentNode.insertBefore(newNode, m_nextSibling); in append()
185 currentNode.appendChild(newNode); in append()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DSampleDataQueue.java373 AllocationNode currentNode = fromNode; in clearAllocationNodes() local
375 allocationsToRelease[i] = currentNode.allocation; in clearAllocationNodes()
376 currentNode = currentNode.clear(); in clearAllocationNodes()

12