Lines Matching refs:Methods
375 llvm::Constant *Methods,
1217 std::vector<llvm::Constant*> Methods; in GenerateMethodList() local
1232 Methods.push_back(llvm::ConstantStruct::get(ObjCMethodTy, Elements)); in GenerateMethodList()
1237 Methods.size()); in GenerateMethodList()
1239 Methods); in GenerateMethodList()
1251 Methods.clear(); in GenerateMethodList()
1252 Methods.push_back(llvm::ConstantPointerNull::get( in GenerateMethodList()
1254 Methods.push_back(llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), in GenerateMethodList()
1256 Methods.push_back(MethodArray); in GenerateMethodList()
1259 return MakeGlobal(ObjCMethodListTy, Methods, ".objc_method_list"); in GenerateMethodList()
1311 llvm::Constant *Methods, in GenerateClassStructure() argument
1331 Methods->getType(), // methods in GenerateClassStructure()
1360 Elements.push_back(Methods); in GenerateClassStructure()
1384 std::vector<llvm::Constant*> Methods; in GenerateProtocolMethodList() local
1390 Methods.push_back(llvm::ConstantStruct::get(ObjCMethodDescTy, Elements)); in GenerateProtocolMethodList()
1395 Methods); in GenerateProtocolMethodList()
1398 Methods.clear(); in GenerateProtocolMethodList()
1399 Methods.push_back(llvm::ConstantInt::get(IntTy, MethodNames.size())); in GenerateProtocolMethodList()
1400 Methods.push_back(Array); in GenerateProtocolMethodList()
1401 return MakeGlobal(ObjCMethodDescListTy, Methods, ".objc_method_list"); in GenerateProtocolMethodList()