/external/llvm/lib/IR/ |
D | DebugInfoMetadata.cpp | 532 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument 535 assert(isCanonical(GetterName) && "Expected canonical MDString"); in getImpl() 538 (getString(Name), File, Line, getString(GetterName), in getImpl() 540 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
|
D | LLVMContextImpl.h | 778 StringRef GetterName; 784 StringRef GetterName, StringRef SetterName, unsigned Attributes, 786 : Name(Name), File(File), Line(Line), GetterName(GetterName), 790 GetterName(N->getGetterName()), SetterName(N->getSetterName()), 795 Line == RHS->getLine() && GetterName == RHS->getGetterName() && 800 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
|
D | DIBuilder.cpp | 327 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument 329 return MDObjCProperty::get(VMContext, Name, File, LineNumber, GetterName, in createObjCProperty()
|
/external/clang/include/clang/Sema/ |
D | DeclSpec.h | 811 GetterName(nullptr), SetterName(nullptr) { } in ObjCDeclSpec() 825 const IdentifierInfo *getGetterName() const { return GetterName; } in getGetterName() 826 IdentifierInfo *getGetterName() { return GetterName; } in getGetterName() 827 void setGetterName(IdentifierInfo *name) { GetterName = name; } in setGetterName() 841 IdentifierInfo *GetterName; // getter name or NULL if no getter variable
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 2099 StringRef GetterName, StringRef SetterName, unsigned Attributes, 2102 getCanonicalMDString(Context, GetterName), 2108 MDString *GetterName, MDString *SetterName, 2121 StringRef GetterName, StringRef SetterName, 2123 (Name, File, Line, GetterName, SetterName, Attributes, 2127 MDString *GetterName, MDString *SetterName, 2129 (Name, File, Line, GetterName, SetterName, Attributes,
|
D | DIBuilder.h | 243 StringRef GetterName,
|
/external/llvm/unittests/IR/ |
D | MetadataTest.cpp | 1912 StringRef GetterName = "getter"; in TEST_F() local 1917 auto *N = MDObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F() 1924 EXPECT_EQ(GetterName, N->getGetterName()); in TEST_F() 1928 EXPECT_EQ(N, MDObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F() 1931 EXPECT_NE(N, MDObjCProperty::get(Context, "other", File, Line, GetterName, in TEST_F() 1933 EXPECT_NE(N, MDObjCProperty::get(Context, Name, getFile(), Line, GetterName, in TEST_F() 1935 EXPECT_NE(N, MDObjCProperty::get(Context, Name, File, Line + 1, GetterName, in TEST_F() 1939 EXPECT_NE(N, MDObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F() 1941 EXPECT_NE(N, MDObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F() 1943 EXPECT_NE(N, MDObjCProperty::get(Context, Name, File, Line, GetterName, in TEST_F()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 2226 Selector GetterName; // getter name of NULL if no getter variable 2241 GetterName(Selector()), in ObjCPropertyDecl() 2325 Selector getGetterName() const { return GetterName; } in getGetterName() 2326 void setGetterName(Selector Sel) { GetterName = Sel; } in setGetterName()
|
/external/clang/lib/Sema/ |
D | SemaPseudoObject.cpp | 1437 UnqualifiedId GetterName; in buildGet() local 1439 GetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildGet() 1445 GetterName, nullptr); in buildGet()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.cpp | 1065 StringRef GetterName = Property->getGetterName(); in constructTypeDIE() local 1066 if (!GetterName.empty()) in constructTypeDIE() 1067 addString(ElemDie, dwarf::DW_AT_APPLE_property_getter, GetterName); in constructTypeDIE()
|