/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 844 MDString *GetterName; 850 MDString *GetterName, MDString *SetterName, unsigned Attributes, 852 : Name(Name), File(File), Line(Line), GetterName(GetterName), 856 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()), 861 Line == RHS->getLine() && GetterName == RHS->getRawGetterName() && 866 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
|
D | DebugInfoMetadata.cpp | 605 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument 608 assert(isCanonical(GetterName) && "Expected canonical MDString"); in getImpl() 610 DEFINE_GETIMPL_LOOKUP(DIObjCProperty, (Name, File, Line, GetterName, in getImpl() 612 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
|
D | DIBuilder.cpp | 314 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument 316 return DIObjCProperty::get(VMContext, Name, File, LineNumber, GetterName, in createObjCProperty()
|
/external/clang/include/clang/Sema/ |
D | DeclSpec.h | 818 Nullability(0), GetterName(nullptr), SetterName(nullptr) { } in ObjCDeclSpec() 858 const IdentifierInfo *getGetterName() const { return GetterName; } in getGetterName() 859 IdentifierInfo *getGetterName() { return GetterName; } in getGetterName() 860 void setGetterName(IdentifierInfo *name) { GetterName = name; } in setGetterName() 879 IdentifierInfo *GetterName; // getter name or NULL if no getter variable
|
/external/llvm/unittests/IR/ |
D | MetadataTest.cpp | 1949 StringRef GetterName = "getter"; in TEST_F() local 1954 auto *N = DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F() 1961 EXPECT_EQ(GetterName, N->getGetterName()); in TEST_F() 1965 EXPECT_EQ(N, DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F() 1968 EXPECT_NE(N, DIObjCProperty::get(Context, "other", File, Line, GetterName, in TEST_F() 1970 EXPECT_NE(N, DIObjCProperty::get(Context, Name, getFile(), Line, GetterName, in TEST_F() 1972 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line + 1, GetterName, in TEST_F() 1976 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F() 1978 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F() 1980 EXPECT_NE(N, DIObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F()
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 2176 StringRef GetterName, StringRef SetterName, unsigned Attributes, 2179 getCanonicalMDString(Context, GetterName), 2185 MDString *GetterName, MDString *SetterName, 2198 StringRef GetterName, StringRef SetterName, 2200 (Name, File, Line, GetterName, SetterName, Attributes, 2204 MDString *GetterName, MDString *SetterName, 2206 (Name, File, Line, GetterName, SetterName, Attributes,
|
D | DIBuilder.h | 254 StringRef GetterName,
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 741 Selector GetterName; // getter name of NULL if no getter variable 757 GetterName(Selector()), in ObjCPropertyDecl() 854 Selector getGetterName() const { return GetterName; } in getGetterName() 855 void setGetterName(Selector Sel) { GetterName = Sel; } in setGetterName()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 1387 StringRef GetterName = DT.getObjCPropertyGetterName(); in createMemberDIE() local 1388 if (!GetterName.empty()) in createMemberDIE() 1390 dwarf::DW_FORM_string, GetterName); in createMemberDIE()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.cpp | 937 StringRef GetterName = Property->getGetterName(); in constructTypeDIE() local 938 if (!GetterName.empty()) in constructTypeDIE() 939 addString(ElemDie, dwarf::DW_AT_APPLE_property_getter, GetterName); in constructTypeDIE()
|
/external/clang/lib/Sema/ |
D | SemaPseudoObject.cpp | 1471 UnqualifiedId GetterName; in buildGet() local 1473 GetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildGet() 1479 SourceLocation(), GetterName, nullptr); in buildGet()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | DIBuilder.cpp | 339 StringRef GetterName, StringRef SetterName, in createObjCIVar() argument 354 MDString::get(VMContext, GetterName), in createObjCIVar()
|