Home
last modified time | relevance | path

Searched refs:SetterName (Results 1 – 22 of 22) sorted by relevance

/external/clang/lib/Basic/
DIdentifierTable.cpp583 SmallString<64> SetterName("set"); in constructSetterName() local
584 SetterName += Name; in constructSetterName()
585 SetterName[3] = toUppercase(SetterName[3]); in constructSetterName()
586 return SetterName; in constructSetterName()
593 IdentifierInfo *SetterName = in constructSetterSelector() local
595 return SelTable.getUnarySelector(SetterName); in constructSetterSelector()
/external/llvm/lib/IR/
DLLVMContextImpl.h845 MDString *SetterName;
850 MDString *GetterName, MDString *SetterName, unsigned Attributes,
853 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
856 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
862 SetterName == RHS->getRawSetterName() &&
866 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
DDebugInfoMetadata.cpp605 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
609 assert(isCanonical(SetterName) && "Expected canonical MDString"); in getImpl()
611 SetterName, Attributes, Type)); in getImpl()
612 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
DDIBuilder.cpp314 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
317 SetterName, PropertyAttributes, Ty); in createObjCProperty()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DLLVMContextImpl.h1011 MDString *SetterName;
1016 MDString *GetterName, MDString *SetterName, unsigned Attributes,
1019 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
1022 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
1028 SetterName == RHS->getRawSetterName() &&
1033 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
DDebugInfoMetadata.cpp958 MDString *GetterName, MDString *SetterName, unsigned Attributes, in getImpl() argument
962 assert(isCanonical(SetterName) && "Expected canonical MDString"); in getImpl()
964 SetterName, Attributes, Type)); in getImpl()
965 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type}; in getImpl()
DDIBuilder.cpp399 StringRef GetterName, StringRef SetterName, in createObjCProperty() argument
402 SetterName, PropertyAttributes, Ty); in createObjCProperty()
DDebugInfo.cpp1029 const char *SetterName, size_t SetterNameLen, in LLVMDIBuilderCreateObjCProperty() argument
1034 {GetterName, GetterNameLen}, {SetterName, SetterNameLen}, in LLVMDIBuilderCreateObjCProperty()
/external/clang/include/clang/Sema/
DDeclSpec.h818 Nullability(0), GetterName(nullptr), SetterName(nullptr) { } in ObjCDeclSpec()
862 const IdentifierInfo *getSetterName() const { return SetterName; } in getSetterName()
863 IdentifierInfo *getSetterName() { return SetterName; } in getSetterName()
864 void setSetterName(IdentifierInfo *name) { SetterName = name; } in setSetterName()
880 IdentifierInfo *SetterName; // setter name or NULL if no setter variable
/external/llvm/unittests/IR/
DMetadataTest.cpp1950 StringRef SetterName = "setter"; in TEST_F() local
1955 SetterName, Attributes, Type); in TEST_F()
1962 EXPECT_EQ(SetterName, N->getSetterName()); in TEST_F()
1966 SetterName, Attributes, Type)); in TEST_F()
1969 SetterName, Attributes, Type)); in TEST_F()
1971 SetterName, Attributes, Type)); in TEST_F()
1973 SetterName, Attributes, Type)); in TEST_F()
1975 SetterName, Attributes, Type)); in TEST_F()
1979 SetterName, Attributes + 1, Type)); in TEST_F()
1981 SetterName, Attributes, in TEST_F()
/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h2176 StringRef GetterName, StringRef SetterName, unsigned Attributes,
2180 getCanonicalMDString(Context, SetterName), Attributes, Type,
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,
DDIBuilder.h255 StringRef SetterName,
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DMetadataTest.cpp2176 StringRef SetterName = "setter"; in TEST_F() local
2181 SetterName, Attributes, Type); in TEST_F()
2188 EXPECT_EQ(SetterName, N->getSetterName()); in TEST_F()
2192 SetterName, Attributes, Type)); in TEST_F()
2195 SetterName, Attributes, Type)); in TEST_F()
2197 SetterName, Attributes, Type)); in TEST_F()
2199 SetterName, Attributes, Type)); in TEST_F()
2201 SetterName, Attributes, Type)); in TEST_F()
2205 SetterName, Attributes + 1, Type)); in TEST_F()
2207 SetterName, Attributes, in TEST_F()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDebugInfoMetadata.h2747 StringRef GetterName, StringRef SetterName, unsigned Attributes,
2751 getCanonicalMDString(Context, SetterName), Attributes, Type,
2756 MDString *GetterName, MDString *SetterName,
2769 StringRef GetterName, StringRef SetterName,
2771 (Name, File, Line, GetterName, SetterName, Attributes,
2775 MDString *GetterName, MDString *SetterName,
2777 (Name, File, Line, GetterName, SetterName, Attributes,
DDIBuilder.h352 StringRef SetterName,
/external/clang/include/clang/AST/
DDeclObjC.h742 Selector SetterName; // setter name of NULL if no setter variable
758 SetterName(Selector()), in ObjCPropertyDecl()
857 Selector getSetterName() const { return SetterName; } in getSetterName()
858 void setSetterName(Selector Sel) { SetterName = Sel; } in setSetterName()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
DDebugInfo.h679 const char *SetterName, size_t SetterNameLen,
/external/clang/lib/Sema/
DSemaPseudoObject.cpp1500 UnqualifiedId SetterName; in buildSet() local
1502 SetterName.setIdentifier(II, RefExpr->getMemberLoc()); in buildSet()
1508 SourceLocation(), SetterName, nullptr); in buildSet()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp940 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local
941 if (!SetterName.empty()) in constructTypeDIE()
942 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp1012 StringRef SetterName = Property->getSetterName(); in constructTypeDIE() local
1013 if (!SetterName.empty()) in constructTypeDIE()
1014 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
/external/clang/lib/Parse/
DParseObjc.cpp769 IdentifierInfo *SetterName = OCDS.getSetterName(); in ParseObjCInterfaceDeclList() local
771 if (SetterName) in ParseObjCInterfaceDeclList()
772 SetterSel = PP.getSelectorTable().getSelector(1, &SetterName); in ParseObjCInterfaceDeclList()
/external/v8/src/wasm/
Dwasm-js.cc2051 Handle<String> SetterName(Isolate* isolate, Handle<String> name) { in SetterName() function
2063 CreateFunc(isolate, SetterName(isolate, name), setter, false); in InstallGetterSetter()