Searched refs:existingIt (Results 1 – 3 of 3) sorted by relevance
281 auto existingIt = impl->operationToIdx.find(parentOp); in addUses() local282 if (existingIt == impl->operationToIdx.end()) { in addUses()292 OperationDefinition &def = *impl->operations[existingIt->second]; in addUses()305 auto existingIt = impl->blocksToIdx.find(arg.getOwner()); in addUses() local306 assert(existingIt != impl->blocksToIdx.end() && in addUses()308 BlockDefinition &blockDef = *impl->blocks[existingIt->second]; in addUses()
139 auto existingIt = locationToLoc.find(std::make_pair(loc, scope)); in translateLoc() local140 if (existingIt != locationToLoc.end()) in translateLoc()141 return existingIt->second; in translateLoc()
2949 auto existingIt = cachedDirectConversions.find(t); in convertType() local2950 if (existingIt != cachedDirectConversions.end()) { in convertType()2951 if (existingIt->second) in convertType()2952 results.push_back(existingIt->second); in convertType()2953 return success(existingIt->second != nullptr); in convertType()