Lines Matching defs:Name

978   llvm::Constant *EmitPropertyList(Twine Name,
985 llvm::Constant *EmitProtocolMethodTypes(Twine Name,
1009 /// \param Name - The variable name.
1016 llvm::GlobalVariable *CreateMetadataVar(Twine Name,
1126 llvm::Constant *EmitMethodList(Twine Name,
1141 llvm::Constant *EmitMethodDescList(Twine Name,
1168 llvm::Constant *EmitProtocolList(Twine Name,
1270 virtual llvm::GlobalVariable *GetClassGlobal(const std::string &Name) {
1327 llvm::Constant *EmitMethodList(Twine Name,
1354 llvm::Constant *EmitProtocolList(Twine Name,
1370 llvm::GlobalVariable *GetClassGlobal(const std::string &Name);
2742 CGObjCMac::EmitProtocolList(Twine Name,
2769 CreateMetadataVar(Name, Init, "__OBJC,__cat_cls_meth,regular,no_dead_strip",
2808 llvm::Constant *CGObjCCommonMac::EmitPropertyList(Twine Name,
2854 CreateMetadataVar(Name, Init,
2863 CGObjCCommonMac::EmitProtocolMethodTypes(Twine Name,
2875 CreateMetadataVar(Name, Init,
2903 CGObjCMac::EmitMethodDescList(Twine Name, const char *Section,
2916 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
3132 std::string Name("\01L_OBJC_CLASS_");
3133 Name += ClassName;
3136 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
3147 GV = CreateMetadataVar(Name, Init, Section, 4, true);
3200 std::string Name("\01L_OBJC_METACLASS_");
3201 Name += ID->getName();
3204 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
3213 Init, Name);
3223 std::string Name = "\01L_OBJC_METACLASS_" + ID->getNameAsString();
3233 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
3244 Name);
3249 std::string Name = "\01L_OBJC_CLASS_" + ID->getNameAsString();
3251 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
3260 Name);
3387 llvm::Constant *CGObjCMac::EmitMethodList(Twine Name,
3402 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
3408 SmallString<256> Name;
3409 GetNameForMethod(OMD, CD, Name);
3417 Name.str(),
3425 CGObjCCommonMac::CreateMetadataVar(Twine Name,
3433 llvm::GlobalValue::InternalLinkage, Init, Name);
4972 SmallVectorImpl<char> &Name) {
4973 llvm::raw_svector_ostream OS(Name);
6090 CGObjCNonFragileABIMac::EmitMethodList(Twine Name,
6110 llvm::GlobalValue::InternalLinkage, Init, Name);
6123 std::string Name = "OBJC_IVAR_$_" + Container->getNameAsString() +
6126 CGM.getModule().getGlobalVariable(Name);
6133 Name);
6402 CGObjCNonFragileABIMac::EmitProtocolList(Twine Name,
6413 Name.toVector(TmpName);
6437 Init, Name);
6655 CGObjCNonFragileABIMac::GetClassGlobal(const std::string &Name) {
6656 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
6661 0, Name);