Home
last modified time | relevance | path

Searched refs:PropertyName (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/lldb/utils/TableGen/
H A DLLDBPropertyDefEmitter.cpp128 static void emityProperties(std::string PropertyName, in emityProperties() argument
133 std::string NeededMacro = "LLDB_PROPERTIES_" + PropertyName; in emityProperties()
138 OS << "// Property definitions for " << PropertyName << "\n"; in emityProperties()
140 OS << "static constexpr PropertyDefinition g_" << PropertyName in emityProperties()
147 OS << "#endif // " << PropertyName << " Property\n\n"; in emityProperties()
151 static void emitPropertyEnum(std::string PropertyName, in emitPropertyEnum() argument
156 std::string NeededMacro = "LLDB_PROPERTIES_" + PropertyName; in emitPropertyEnum()
161 OS << "// Property enum cases for " << PropertyName << "\n"; in emitPropertyEnum()
167 OS << "#endif // " << PropertyName << " Property\n\n"; in emitPropertyEnum()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/objc/
H A DPropertyDeclarationCheck.cpp82 bool hasCategoryPropertyPrefix(llvm::StringRef PropertyName) { in hasCategoryPropertyPrefix() argument
85 return RegexExp.match(PropertyName); in hasCategoryPropertyPrefix()
88 bool prefixedPropertyNameValid(llvm::StringRef PropertyName) { in prefixedPropertyNameValid() argument
89 size_t Start = PropertyName.find_first_of('_'); in prefixedPropertyNameValid()
90 assert(Start != llvm::StringRef::npos && Start + 1 < PropertyName.size()); in prefixedPropertyNameValid()
91 auto Prefix = PropertyName.substr(0, Start); in prefixedPropertyNameValid()
96 return RegexExp.match(PropertyName.substr(Start + 1)); in prefixedPropertyNameValid()
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DCodeGenInstruction.h326 bool isOperandImpl(unsigned i, StringRef PropertyName) const;
H A DCodeGenInstruction.cpp515 StringRef PropertyName) const { in isOperandImpl()
525 Constraint->getDef()->getValueAsBit(PropertyName); in isOperandImpl()
/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DObjCMT.cpp473 StringRef PropertyName(PropertyNameString); in rewriteToObjCProperty() local
490 if (PropertyName.equals("target") || PropertyName.contains("delegate") || in rewriteToObjCProperty()
491 PropertyName.contains("dataSource")) { in rewriteToObjCProperty()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaPseudoObject.cpp663 SmallString<100> PropertyName = thisPropertyName; in findSetter() local
664 PropertyName[0] = front; in findSetter()
665 IdentifierInfo *AltMember = &S.PP.getIdentifierTable().get(PropertyName); in findSetter()
H A DSemaCodeComplete.cpp8569 Scope *S, IdentifierInfo *PropertyName) { in CodeCompleteObjCPropertySynthesizeIvar() argument
8596 PropertyName, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in CodeCompleteObjCPropertySynthesizeIvar()
8610 NameWithPrefix += PropertyName->getName(); in CodeCompleteObjCPropertySynthesizeIvar()
8611 std::string NameWithSuffix = PropertyName->getName().str(); in CodeCompleteObjCPropertySynthesizeIvar()
8621 if ((PropertyName == Ivar->getIdentifier() || in CodeCompleteObjCPropertySynthesizeIvar()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp942 StringRef PropertyName = Property->getName(); in constructTypeDIE() local
943 addString(ElemDie, dwarf::DW_AT_APPLE_property_name, PropertyName); in constructTypeDIE()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseExpr.cpp1171 IdentifierInfo &PropertyName = *Tok.getIdentifierInfo(); in ParseCastExpression() local
1174 Res = Actions.ActOnClassPropertyRefExpr(II, PropertyName, in ParseCastExpression()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjCMac.cpp764 PropertyName, enumerator
4153 case ObjCLabelType::PropertyName: Label = "OBJC_PROP_NAME_ATTR_"; break; in CreateCStringLiteral()
4172 case ObjCLabelType::PropertyName: in CreateCStringLiteral()
5668 Entry = CreateCStringLiteral(Ident->getName(), ObjCLabelType::PropertyName); in GetPropertyName()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h12991 IdentifierInfo *PropertyName);