Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Class

66   assert(BoxingMethod->isClassMethod() && "BoxingMethod must be a class method");
69 // Generate a reference to the class pointer, which will be the receiver.
70 // Assumes that the method was introduced in the class that should be
177 // Generate a reference to the class pointer, which will be the receiver.
182 ObjCInterfaceDecl *Class
185 llvm::Value *Receiver = Runtime.GetClass(*this, Class);
192 Receiver, Args, Class,
283 case ObjCMessageExpr::Class:
285 // It's never necessary for class objects.
335 case ObjCMessageExpr::Class: {
338 assert(ObjTy && "Invalid Objective-C class message send");
340 assert(OID && "Invalid Objective-C class message send");
456 /*is class msg*/ false,
505 /// its pointer, name, and types registered in the class struture.
566 class PropertyImplStrategy {
760 // Sema only makes only of these when the ivar has a C++ class type,
1060 // Sema only makes only of these when the ivar has a C++ class type,
2268 /// Where alloc is declared as: + (id) alloc; in NSAutoreleasePool class.
2269 /// init is declared as: - (id) init; in its NSObject super class.