Lines Matching defs:Insertion
203 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId));
204 if (Insertion.second) {
231 return Insertion.first->second;
1447 auto Insertion = FnDebugInfo.insert({&GV, std::make_unique<FunctionInfo>()});
1448 assert(Insertion.second && "function already has info");
1449 CurFn = Insertion.first->second.get();
3237 auto Insertion = ScopeGlobals.insert(
3239 if (Insertion.second)
3240 Insertion.first->second = std::make_unique<GlobalVariableList>();
3241 VariableList = Insertion.first->second.get();