Searched defs:MapTy (Results 1 - 11 of 11) sorted by relevance

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DFunctionSummary.h56 typedef llvm::DenseMap<const Decl *, FunctionSummary> MapTy; typedef in class:clang::ento::FunctionSummariesTy
57 MapTy Map;
60 MapTy::iterator findOrInsertSummary(const Decl *D) {
61 MapTy::iterator I = Map.find(D);
72 MapTy::iterator I = findOrInsertSummary(D);
78 MapTy::iterator I = findOrInsertSummary(D);
88 MapTy::const_iterator I = Map.find(D);
95 MapTy::iterator I = findOrInsertSummary(D);
106 MapTy::const_iterator I = Map.find(D);
113 MapTy
[all...]
/external/clang/lib/AST/
H A DParentMap.cpp22 typedef llvm::DenseMap<Stmt*, Stmt*> MapTy; typedef
29 static void BuildParentMap(MapTy& M, Stmt* S,
97 MapTy *M = new MapTy();
104 delete (MapTy*) Impl;
109 BuildParentMap(*(MapTy*) Impl, S);
116 MapTy *M = reinterpret_cast<MapTy *>(Impl);
121 MapTy* M = (MapTy*) Imp
[all...]
H A DExprConstant.cpp311 typedef std::map<const void*, APValue> MapTy; typedef in struct:__anon16030::CallStackFrame
312 typedef MapTy::const_iterator temp_iterator;
314 MapTy Temporaries;
322 MapTy::iterator I = Temporaries.find(Key);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCInstMethSignature.cpp91 typedef llvm::DenseMap<Selector,ObjCMethodDecl*> MapTy; typedef
92 MapTy IMeths;
112 MapTy::iterator MI = IMeths.find(S);
H A DRetainCountChecker.cpp505 typedef llvm::DenseMap<ObjCSummaryKey, const RetainSummary *> MapTy; typedef in class:__anon16470::ObjCSummaryCache
506 MapTy M;
514 MapTy::iterator I = M.find(K);
545 MapTy::iterator I = M.find(ObjCSummaryKey(II, S));
/external/llvm/include/llvm/ADT/
H A DDenseSet.h27 typedef DenseMap<ValueT, char, ValueInfoT> MapTy; typedef in class:llvm::DenseSet
28 MapTy TheMap;
65 typename MapTy::iterator I;
68 typedef typename MapTy::iterator::difference_type difference_type;
74 Iterator(const typename MapTy::iterator &i) : I(i) {}
85 typename MapTy::const_iterator I;
88 typedef typename MapTy::const_iterator::difference_type difference_type;
94 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {}
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp390 Type *MapTy; local
392 MapTy = Type::getInt16PtrTy(C->getContext());
394 MapTy = Type::getInt32PtrTy(C->getContext());
396 MapTy = Type::getInt64PtrTy(C->getContext());
398 MapTy = IntegerType::get(C->getContext(),
400 MapTy = PointerType::getUnqual(MapTy);
404 C = FoldBitCast(C, MapTy, TD);
/external/llvm/lib/IR/
H A DConstantsContext.h518 typedef std::map<MapKey, ConstantClass *> MapTy; typedef in class:llvm::ConstantUniqueMap
519 typedef std::map<ConstantClass *, typename MapTy::iterator> InverseMapTy;
524 MapTy Map;
533 typename MapTy::iterator map_begin() { return Map.begin(); }
534 typename MapTy::iterator map_end() { return Map.end(); }
537 for (typename MapTy::iterator I=Map.begin(), E=Map.end();
549 typename MapTy::iterator InsertOrGetItem(std::pair<MapKey, ConstantClass *>
552 std::pair<typename MapTy::iterator, bool> IP = Map.insert(InsertVal);
558 typename MapTy::iterator FindExistingElement(ConstantClass *CP) {
567 typename MapTy
694 typedef DenseMap<ConstantClass *, char, MapInfo> MapTy; typedef in class:llvm::ConstantAggrUniqueMap
[all...]
/external/clang/lib/Basic/
H A DSourceManager.cpp1969 typedef llvm::DenseMap<FileID, DecompTy> MapTy; typedef
1970 std::pair<MapTy::iterator, bool>
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp56 typedef DenseMap<KeyT, size_t> MapTy; typedef in class:__anon22554::MapVector
57 MapTy Map;
74 for (typename MapTy::const_iterator I = Map.begin(), E = Map.end();
88 std::pair<typename MapTy::iterator, bool> Pair =
101 std::pair<typename MapTy::iterator, bool> Pair =
113 typename MapTy::iterator It = Map.find(Key);
119 typename MapTy::const_iterator It = Map.find(Key);
128 typename MapTy::iterator It = Map.find(Key);
659 typedef MapVector<const Value *, PtrState> MapTy; typedef in class:__anon22558::BBState
663 MapTy PerPtrTopDow
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3558 IntegerType *MapTy = BitMap->getType(); local
3563 Value *ShiftAmt = Builder.CreateZExtOrTrunc(Index, MapTy, "switch.cast");
3567 ConstantInt::get(MapTy, BitMapElementTy->getBitWidth()),

Completed in 675 milliseconds