HomeSort by relevance Sort by last modified time
    Searched defs:MapTy (Results 1 - 13 of 13) sorted by null

  /external/llvm/tools/dsymutil/
NonRelocatableStringpool.h 27 MapTy;
48 const MapTy::MapEntryTy *getFirstEntry() const {
54 const MapTy::MapEntryTy *getNextEntry(const MapTy::MapEntryTy *E) const {
55 return static_cast<const MapTy::MapEntryTy *>(E->getValue().second);
61 MapTy Strings;
63 MapTy::MapEntryTy Sentinel, *Last;
MachOUtils.cpp 494 typedef NonRelocatableStringpool::MapTy MapTy;
496 Entry = static_cast<MapTy::MapEntryTy *>(Entry->getValue().second))
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCInstMethSignature.cpp 92 typedef llvm::DenseMap<Selector,ObjCMethodDecl*> MapTy;
93 MapTy IMeths;
107 MapTy::iterator MI = IMeths.find(S);
RetainCountChecker.cpp 518 typedef llvm::DenseMap<ObjCSummaryKey, const RetainSummary *> MapTy;
519 MapTy M;
527 MapTy::iterator I = M.find(K);
558 MapTy::iterator I = M.find(ObjCSummaryKey(II, S));
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
FunctionSummary.h 56 typedef llvm::DenseMap<const Decl *, FunctionSummary> MapTy;
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::const_iterator I = Map.find(D)
    [all...]
  /external/clang/lib/AST/
ParentMap.cpp 22 typedef llvm::DenseMap<Stmt*, Stmt*> MapTy;
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*) Impl
    [all...]
ExprConstant.cpp 331 typedef std::map<const void*, APValue> MapTy;
332 typedef MapTy::const_iterator temp_iterator;
334 MapTy Temporaries;
342 MapTy::iterator I = Temporaries.find(Key);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
BlotMapVector.h 19 typedef DenseMap<KeyT, size_t> MapTy;
20 MapTy Map;
37 for (typename MapTy::const_iterator I = Map.begin(), E = Map.end(); I != E;
50 std::pair<typename MapTy::iterator, bool> Pair =
62 std::pair<typename MapTy::iterator, bool> Pair =
74 typename MapTy::iterator It = Map.find(Key);
81 typename MapTy::const_iterator It = Map.find(Key);
91 typename MapTy::iterator It = Map.find(Key);
  /external/llvm/include/llvm/ADT/
DenseSet.h 41 detail::DenseSetPair<ValueT>> MapTy;
42 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT),
44 MapTy TheMap;
81 typename MapTy::iterator I;
85 typedef typename MapTy::iterator::difference_type difference_type;
91 Iterator(const typename MapTy::iterator &i) : I(i) {}
102 typename MapTy::const_iterator I;
106 typedef typename MapTy::const_iterator::difference_type difference_type;
112 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {}
  /external/llvm/lib/IR/
ConstantsContext.h 584 typedef DenseMap<ConstantClass *, char, MapInfo> MapTy;
587 MapTy Map;
590 typename MapTy::iterator map_begin() { return Map.begin(); }
591 typename MapTy::iterator map_end() { return Map.end(); }
626 typename MapTy::iterator find(LookupKey Lookup) {
635 typename MapTy::iterator I = Map.find(CP);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 415 Type *MapTy;
417 MapTy = Type::getInt16PtrTy(C->getContext(), AS);
419 MapTy = Type::getInt32PtrTy(C->getContext(), AS);
421 MapTy = Type::getInt64PtrTy(C->getContext(), AS);
423 MapTy = PointerType::getIntNPtrTy(C->getContext(),
428 C = FoldBitCast(C, MapTy, DL);
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]

Completed in 682 milliseconds