Home
last modified time | relevance | path

Searched refs:GetterName (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/llvm/lib/IR/
HDDebugInfoMetadata.cpp546 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
549 assert(isCanonical(GetterName) && "Expected canonical MDString"); in getImpl()
552 (getString(Name), File, Line, getString(GetterName), in getImpl()
554 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
HDLLVMContextImpl.h809 StringRef GetterName;
815 StringRef GetterName, StringRef SetterName, unsigned Attributes,
817 : Name(Name), File(File), Line(Line), GetterName(GetterName),
821 GetterName(N->getGetterName()), SetterName(N->getSetterName()),
826 Line == RHS->getLine() && GetterName == RHS->getGetterName() &&
831 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
HDDIBuilder.cpp334 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
336 return DIObjCProperty::get(VMContext, Name, File, LineNumber, GetterName, in createObjCProperty()
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDDeclSpec.h803 Nullability(0), GetterName(nullptr), SetterName(nullptr) { } in ObjCDeclSpec()
843 const IdentifierInfo *getGetterName() const { return GetterName; } in getGetterName()
844 IdentifierInfo *getGetterName() { return GetterName; } in getGetterName()
845 void setGetterName(IdentifierInfo *name) { GetterName = name; } in setGetterName()
864 IdentifierInfo *GetterName; // getter name or NULL if no getter variable
/NextBSD/contrib/llvm/include/llvm/IR/
HDDebugInfoMetadata.h2165 StringRef GetterName, StringRef SetterName, unsigned Attributes,
2168 getCanonicalMDString(Context, GetterName),
2174 MDString *GetterName, MDString *SetterName,
2187 StringRef GetterName, StringRef SetterName,
2189 (Name, File, Line, GetterName, SetterName, Attributes,
2193 MDString *GetterName, MDString *SetterName,
2195 (Name, File, Line, GetterName, SetterName, Attributes,
HDDIBuilder.h242 StringRef GetterName,
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDeclObjC.h2465 Selector GetterName; // getter name of NULL if no getter variable
2481 GetterName(Selector()), in ObjCPropertyDecl()
2575 Selector getGetterName() const { return GetterName; } in getGetterName()
2576 void setGetterName(Selector Sel) { GetterName = Sel; } in setGetterName()
/NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/
HDDwarfUnit.cpp941 StringRef GetterName = Property->getGetterName(); in constructTypeDIE() local
942 if (!GetterName.empty()) in constructTypeDIE()
943 addString(ElemDie, dwarf::DW_AT_APPLE_property_getter, GetterName); in constructTypeDIE()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaPseudoObject.cpp1421 UnqualifiedId GetterName; in buildGet() local
1423 GetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildGet()
1429 GetterName, nullptr); in buildGet()