Lines Matching defs:isa
240 virtual ClassDescriptorSP GetClassDescriptorFromISA(ObjCISA isa);
242 ClassDescriptorSP GetNonKVOClassDescriptor(ObjCISA isa);
286 bool IsValidISA(ObjCISA isa) {
288 return m_isa_to_descriptor.count(isa) > 0;
301 virtual ObjCISA GetParentClass(ObjCISA isa);
337 bool ISAIsCached(ObjCISA isa) const {
338 return m_isa_to_descriptor.find(isa) != m_isa_to_descriptor.end();
341 bool AddClass(ObjCISA isa, const ClassDescriptorSP &descriptor_sp) {
342 if (isa != 0) {
343 m_isa_to_descriptor[isa] = descriptor_sp;
349 bool AddClass(ObjCISA isa, const ClassDescriptorSP &descriptor_sp,
352 bool AddClass(ObjCISA isa, const ClassDescriptorSP &descriptor_sp,
354 if (isa != 0) {
355 m_isa_to_descriptor[isa] = descriptor_sp;
356 m_hash_to_isa_map.insert(std::make_pair(class_name_hash, isa));