Searched refs:patchMethodIndex (Results 1 – 2 of 2) sorted by relevance
57 std::size_t operator()(const PatchMethodIndex &patchMethodIndex) const in operator()59 return std::hash<CString>{}(patchMethodIndex.recordName) ^ in operator()60 …std::hash<CString>{}(patchMethodIndex.className) ^ std::hash<CString>{}(patchMethodIndex.methodNam… in operator()64 bool operator==(const PatchMethodIndex &patchMethodIndex) const66 … return recordName == patchMethodIndex.recordName && className == patchMethodIndex.className &&67 methodName == patchMethodIndex.methodName;
458 PatchMethodIndex patchMethodIndex = {baseRecordName, baseClassName, baseMethodName}; in FindSameMethod() local459 auto methodIter = patchMethodLiterals.find(patchMethodIndex); in FindSameMethod()506 PatchMethodIndex patchMethodIndex = {recordName, className, methodName}; in GeneratePatchInfo() local507 if (patchMethodLiterals.find(patchMethodIndex) == patchMethodLiterals.end()) { in GeneratePatchInfo()508 patchMethodLiterals.emplace(patchMethodIndex, methodLiteral); in GeneratePatchInfo()