Home
last modified time | relevance | path

Searched refs:NodeMap (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/ASTMatchers/
DASTMatchersInternal.cpp22 for (IDToNodeMap::const_iterator It = NodeMap.begin(); in copyTo()
23 It != NodeMap.end(); in copyTo()
30 copy(NodeMap.begin(), NodeMap.end(), in copyTo()
31 inserter(Other->NodeMap, Other->NodeMap.begin())); in copyTo()
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h71 NodeMap[ID] = ast_type_traits::DynTypedNode::create(*Node); in addNode()
74 NodeMap[ID] = Node; in addNode()
83 IDToNodeMap::const_iterator It = NodeMap.find(ID); in getNodeAs()
84 if (It == NodeMap.end()) { in getNodeAs()
100 IDToNodeMap NodeMap; variable
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h86 DenseMap<const Value*, SDValue> NodeMap; variable
390 SDValue &N = NodeMap[V]; in setValue()
DSelectionDAGBuilder.cpp840 NodeMap.clear(); in clear()
952 if (NodeMap.count(&I)) { in visit()
987 SDValue &N = NodeMap[V]; in getValue()
1004 NodeMap[V] = Val; in getValue()
1013 SDValue &N = NodeMap[V]; in getNonRegisterValue()
1018 NodeMap[V] = Val; in getNonRegisterValue()
1046 SDValue N1 = NodeMap[V]; in getValueImpl()
1081 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), in getValueImpl()
1134 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), in getValueImpl()
4607 SDValue &N = NodeMap[Address]; in visitIntrinsicCall()
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExplodedGraph.h364 typedef llvm::DenseMap<const ExplodedNode*, ExplodedNode*> NodeMap; typedef