Searched refs:InsertPair (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DBlotMapVector.h67 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &InsertPair) { argument
69 Map.insert(std::make_pair(InsertPair.first, size_t(0)));
73 Vector.push_back(InsertPair);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCFLSteensAliasAnalysis.cpp228 auto InsertPair = Cache.insert(std::make_pair(Fn, Optional<FunctionInfo>())); local
229 (void)InsertPair;
230 assert(InsertPair.second &&
H A DCFLAndersAliasAnalysis.cpp813 auto InsertPair = Cache.insert(std::make_pair(&Fn, Optional<FunctionInfo>())); local
814 (void)InsertPair;
815 assert(InsertPair.second &&
H A DScalarEvolution.cpp5320 auto InsertPair = MinTrailingZerosCache.insert({S, Result});
5321 assert(InsertPair.second && "Should insert a new key");
5322 return InsertPair.first->second;
5955 auto InsertPair = LoopPropertiesCache.insert({L, LP});
5956 assert(InsertPair.second && "We just checked!");
5957 Itr = InsertPair.first;
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGException.cpp1743 auto InsertPair = ParentCGF.EscapedLocals.insert( local
1745 int FrameEscapeIdx = InsertPair.first->second;
1840 auto InsertPair = ParentCGF.EscapedLocals.insert( local
1842 int FrameEscapeIdx = InsertPair.first->second;

Completed in 89 milliseconds