Lines Matching defs:Map
1 //===- ParentMapContext.cpp - Map of parents using DynTypedNode -*- C++ -*-===//
115 const MapTy &Map) {
116 auto I = Map.find(Node);
117 if (I == Map.end()) {
357 ASTVisitor(ParentMap &Map) : Map(Map) {}
433 &Map.PointerParents);
439 &Map.OtherParents);
445 &Map.OtherParents);
450 &Map.PointerParents);
456 &Map.OtherParents);
461 addParent(StmtNode, &Map.PointerParents);
470 ParentMap ⤅