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 for (IDToNodeMap::const_iterator I = NodeMap.begin(), in copyTo()
31 E = NodeMap.end(); in copyTo()
33 Other->NodeMap[I->first] = I->second; in copyTo()
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h72 NodeMap[ID] = ast_type_traits::DynTypedNode::create(*Node); in addNode()
75 NodeMap[ID] = Node; in addNode()
84 IDToNodeMap::const_iterator It = NodeMap.find(ID); in getNodeAs()
85 if (It == NodeMap.end()) { in getNodeAs()
101 IDToNodeMap NodeMap; variable
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h86 DenseMap<const Value*, SDValue> NodeMap; variable
390 SDValue &N = NodeMap[V]; in setValue()
DSelectionDAGBuilder.cpp868 NodeMap.clear(); in clear()
980 if (NodeMap.count(&I)) { in visit()
1015 SDValue &N = NodeMap[V]; in getValue()
1032 NodeMap[V] = Val; in getValue()
1041 SDValue &N = NodeMap[V]; in getNonRegisterValue()
1046 NodeMap[V] = Val; in getNonRegisterValue()
1074 SDValue N1 = NodeMap[V]; in getValueImpl()
1109 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), in getValueImpl()
1162 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), in getValueImpl()
4537 SDValue &N = NodeMap[Address]; in visitIntrinsicCall()
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExplodedGraph.h359 typedef llvm::DenseMap<const ExplodedNode*, ExplodedNode*> NodeMap; typedef