Home
last modified time | relevance | path

Searched refs:thisNode (Results 1 – 19 of 19) sorted by relevance

/external/guava/android/guava/src/com/google/common/graph/
DDirectedGraphConnections.java179 N thisNode, Iterable<EndpointPair<N>> incidentEdges, Function<N, V> successorNodeToValueFn) { in ofImmutable() argument
180 checkNotNull(thisNode); in ofImmutable()
190 if (incidentEdge.nodeU().equals(thisNode) && incidentEdge.nodeV().equals(thisNode)) { in ofImmutable()
193 adjacentNodeValues.put(thisNode, new PredAndSucc(successorNodeToValueFn.apply(thisNode))); in ofImmutable()
195 orderedNodeConnectionsBuilder.add(new NodeConnection.Pred<>(thisNode)); in ofImmutable()
196 orderedNodeConnectionsBuilder.add(new NodeConnection.Succ<>(thisNode)); in ofImmutable()
199 } else if (incidentEdge.nodeV().equals(thisNode)) { // incidentEdge is an inEdge in ofImmutable()
210 checkArgument(incidentEdge.nodeU().equals(thisNode)); in ofImmutable()
368 public Iterator<EndpointPair<N>> incidentEdgeIterator(final N thisNode) {
369 checkNotNull(thisNode);
[all …]
DUndirectedGraphConnections.java80 public Iterator<EndpointPair<N>> incidentEdgeIterator(final N thisNode) { in incidentEdgeIterator() argument
86 return EndpointPair.unordered(thisNode, incidentNode); in incidentEdgeIterator()
DGraphConnections.java45 Iterator<EndpointPair<N>> incidentEdgeIterator(N thisNode); in incidentEdgeIterator() argument
/external/guava/guava/src/com/google/common/graph/
DDirectedGraphConnections.java179 N thisNode, Iterable<EndpointPair<N>> incidentEdges, Function<N, V> successorNodeToValueFn) { in ofImmutable() argument
180 checkNotNull(thisNode); in ofImmutable()
190 if (incidentEdge.nodeU().equals(thisNode) && incidentEdge.nodeV().equals(thisNode)) { in ofImmutable()
193 adjacentNodeValues.put(thisNode, new PredAndSucc(successorNodeToValueFn.apply(thisNode))); in ofImmutable()
195 orderedNodeConnectionsBuilder.add(new NodeConnection.Pred<>(thisNode)); in ofImmutable()
196 orderedNodeConnectionsBuilder.add(new NodeConnection.Succ<>(thisNode)); in ofImmutable()
199 } else if (incidentEdge.nodeV().equals(thisNode)) { // incidentEdge is an inEdge in ofImmutable()
210 checkArgument(incidentEdge.nodeU().equals(thisNode)); in ofImmutable()
368 public Iterator<EndpointPair<N>> incidentEdgeIterator(final N thisNode) {
369 checkNotNull(thisNode);
[all …]
DUndirectedGraphConnections.java80 public Iterator<EndpointPair<N>> incidentEdgeIterator(final N thisNode) { in incidentEdgeIterator() argument
86 return EndpointPair.unordered(thisNode, incidentNode); in incidentEdgeIterator()
DGraphConnections.java45 Iterator<EndpointPair<N>> incidentEdgeIterator(N thisNode); in incidentEdgeIterator() argument
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
DFirstFunction.java40 Data thisNode = arg.getReference().getSymlink(); in execute() local
41 return literalConstant(thisNode.isFirstSibling(), arg); in execute()
DSubcountFunction.java40 Data thisNode = arg.getReference().getSymlink(); in execute() local
41 return literalConstant(thisNode.getChildCount(), arg); in execute()
DLastFunction.java40 Data thisNode = arg.getReference().getSymlink(); in execute() local
41 return literalConstant(thisNode.isLastSibling(), arg); in execute()
/external/angle/src/compiler/translator/
DFunctionLookup.h36 void setThisNode(TIntermTyped *thisNode);
37 TIntermTyped *thisNode() const;
DFunctionLookup.cpp154 void TFunctionLookup::setThisNode(TIntermTyped *thisNode) in setThisNode() argument
156 mThisNode = thisNode; in setThisNode()
159 TIntermTyped *TFunctionLookup::thisNode() const in thisNode() function in sh::TFunctionLookup
DParseContext.cpp6815 if (fnCall->thisNode() != nullptr) in addFunctionCallOrMethod()
6828 TIntermTyped *thisNode = fnCall->thisNode(); in addMethod() local
6841 else if (!thisNode->isArray()) in addMethod()
6845 else if (thisNode->getQualifier() == EvqPerVertexIn && in addMethod()
6853 TIntermUnary *node = new TIntermUnary(EOpArrayLength, thisNode, nullptr); in addMethod()
6854 markStaticReadIfSymbol(thisNode); in addMethod()
/external/antlr/runtime/C/src/
Dantlr3collections.c1864 pANTLR3_INT_TRIE_NODE thisNode; in intTrieGet() local
1882 thisNode = trie->root; /* Start at the root node */ in intTrieGet()
1883 nextNode = thisNode->leftN; /* Examine the left node from the root */ in intTrieGet()
1887 while (thisNode->bitNum > nextNode->bitNum) in intTrieGet()
1891 thisNode = nextNode; in intTrieGet()
1955 pANTLR3_INT_TRIE_NODE thisNode; in intTrieAdd() local
1968 thisNode = trie->root; /* Start with the root node */ in intTrieAdd()
1974 while (thisNode->bitNum > nextNode->bitNum) in intTrieAdd()
1978 thisNode = nextNode; in intTrieAdd()
2125 thisNode = trie->root; in intTrieAdd()
[all …]
/external/antlr/runtime/Cpp/include/
Dantlr3collections.inl180 IntTrieNodeType* thisNode; local
197 thisNode = m_root; /* Start at the root node */
198 nextNode = thisNode->get_leftN(); /* Examine the left node from the root */
203 while( thisNode->get_bitNum() > nextNode->get_bitNum() )
207 thisNode = nextNode;
260 IntTrieNodeType* thisNode; local
273 thisNode = m_root; /* Start with the root node */
280 while (thisNode->get_bitNum() > nextNode->get_bitNum() )
284 thisNode = nextNode;
412 thisNode = m_root;
[all …]
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/
DAtomicFUTransformerJS.kt510 val thisNode = Parser(CompilerEnvirons()).parse("this", null, 0) in <lambda>() constant
511 this.arguments = listOf((thisNode.firstChild as ExpressionStatement).expression) in <lambda>()
/external/swiftshader/src/OpenGL/compiler/
DParseHelper.h238 …ionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIntermNode *thisNode, const TSourceLoc…
DParseHelper.cpp3524 …ionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIntermNode *thisNode, const TSourceLoc… in addFunctionCallOrMethod() argument
3530 if(thisNode != nullptr) in addFunctionCallOrMethod()
3534 TIntermTyped *typedThis = thisNode->getAsTyped(); in addFunctionCallOrMethod()
/external/deqp-deps/glslang/glslang/HLSL/
DhlslGrammar.cpp3176 TIntermTyped* thisNode = node; in acceptPostfixExpression() local
3179 if (! acceptFunctionCall(field.loc, *field.string, node, thisNode)) { in acceptPostfixExpression()
/external/angle/third_party/vulkan-deps/glslang/src/glslang/HLSL/
DhlslGrammar.cpp3178 TIntermTyped* thisNode = node; in acceptPostfixExpression() local
3181 if (! acceptFunctionCall(field.loc, *field.string, node, thisNode)) { in acceptPostfixExpression()