Searched refs:patchMethodIndex (Results 1 – 2 of 2) sorted by relevance
58 std::size_t operator()(const PatchMethodIndex &patchMethodIndex) const in operator()60 return std::hash<CString>{}(patchMethodIndex.recordName) ^ in operator()61 …std::hash<CString>{}(patchMethodIndex.className) ^ std::hash<CString>{}(patchMethodIndex.methodNam… in operator()65 bool operator==(const PatchMethodIndex &patchMethodIndex) const67 … return recordName == patchMethodIndex.recordName && className == patchMethodIndex.className &&68 methodName == patchMethodIndex.methodName;
445 PatchMethodIndex patchMethodIndex = {baseRecordName, baseClassName, baseMethodName}; in FindSameMethod() local446 auto methodIter = patchMethodLiterals.find(patchMethodIndex); in FindSameMethod()493 PatchMethodIndex patchMethodIndex = {recordName, className, methodName}; in GeneratePatchInfo() local494 if (patchMethodLiterals.find(patchMethodIndex) == patchMethodLiterals.end()) { in GeneratePatchInfo()495 patchMethodLiterals.emplace(patchMethodIndex, methodLiteral); in GeneratePatchInfo()