Lines Matching refs:method_key
58 MethodKey method_key; in GetKey() local
59 method_key.class_descriptor = method->decl->parent->descriptor; in GetKey()
60 method_key.method_name = method->decl->name; in GetKey()
61 method_key.prototype = method->decl->prototype; in GetKey()
62 return method_key; in GetKey()
65 uint32_t MethodsHasher::Hash(const MethodKey& method_key) const { in Hash()
66 return static_cast<uint32_t>(std::hash<void*>{}(method_key.class_descriptor) ^ in Hash()
67 std::hash<void*>{}(method_key.method_name) ^ in Hash()
68 std::hash<void*>{}(method_key.prototype)); in Hash()
71 bool MethodsHasher::Compare(const MethodKey& method_key, const EncodedMethod* method) const { in Compare() argument
72 return method_key.class_descriptor == method->decl->parent->descriptor && in Compare()
73 method_key.method_name == method->decl->name && in Compare()
74 method_key.prototype == method->decl->prototype; in Compare()