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

/freebsd-12-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-12-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.cpp5532 auto InsertPair = MinTrailingZerosCache.insert({S, Result});
5533 assert(InsertPair.second && "Should insert a new key");
5534 return InsertPair.first->second;
6167 auto InsertPair = LoopPropertiesCache.insert({L, LP});
6168 assert(InsertPair.second && "We just checked!");
6169 Itr = InsertPair.first;
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGException.cpp1720 auto InsertPair = ParentCGF.EscapedLocals.insert( local
1722 int FrameEscapeIdx = InsertPair.first->second;

Completed in 200 milliseconds