Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/crypto/openssl/doc/man7/
H A Dproperty.pod149 Definition ::= PropertyName ( '=' Value )?
150 ( ',' PropertyName ( '=' Value )? )*
152 PropertyQuery ::= '-' PropertyName
153 | '?'? ( PropertyName (( '=' | '!=' ) Value)?)
159 PropertyName ::= [A-Za-z] [A-Za-z0-9_]* ( '.' [A-Za-z] [A-Za-z0-9_]* )*
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.h339 StringRef PropertyName) const;
H A DCodeGenInstruction.cpp582 StringRef PropertyName) const { in isOperandImpl()
592 Constraint->getDef()->getValueAsBit(PropertyName); in isOperandImpl()
/freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp470 StringRef PropertyName(PropertyNameString); in rewriteToObjCProperty() local
487 if (PropertyName.equals("target") || PropertyName.contains("delegate") || in rewriteToObjCProperty()
488 PropertyName.contains("dataSource")) { in rewriteToObjCProperty()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp668 SmallString<100> PropertyName = thisPropertyName; in findSetter() local
669 PropertyName[0] = front; in findSetter()
670 IdentifierInfo *AltMember = &S.PP.getIdentifierTable().get(PropertyName); in findSetter()
H A DSemaCodeComplete.cpp8731 Scope *S, IdentifierInfo *PropertyName) { in CodeCompleteObjCPropertySynthesizeIvar() argument
8758 PropertyName, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { in CodeCompleteObjCPropertySynthesizeIvar()
8772 NameWithPrefix += PropertyName->getName(); in CodeCompleteObjCPropertySynthesizeIvar()
8773 std::string NameWithSuffix = PropertyName->getName().str(); in CodeCompleteObjCPropertySynthesizeIvar()
8783 if ((PropertyName == Ivar->getIdentifier() || in CodeCompleteObjCPropertySynthesizeIvar()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp944 StringRef PropertyName = Property->getName(); in constructTypeDIE() local
945 addString(ElemDie, dwarf::DW_AT_APPLE_property_name, PropertyName); in constructTypeDIE()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp1200 IdentifierInfo &PropertyName = *Tok.getIdentifierInfo(); in ParseCastExpression() local
1203 Res = Actions.ActOnClassPropertyRefExpr(II, PropertyName, in ParseCastExpression()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp768 PropertyName, enumerator
4139 case ObjCLabelType::PropertyName: Label = "OBJC_PROP_NAME_ATTR_"; break; in CreateCStringLiteral()
4158 case ObjCLabelType::PropertyName: in CreateCStringLiteral()
5637 Entry = CreateCStringLiteral(Ident->getName(), ObjCLabelType::PropertyName); in GetPropertyName()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h13793 IdentifierInfo *PropertyName);