/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_add_filter_by_name.c | 45 struct { const char *name; int (*setter)(struct archive *); } names[] = 70 return ((names[i].setter)(a)); in archive_write_add_filter_by_name() 46 struct { const char *name; int (*setter)(struct archive *); } names[] = global() member
|
H A D | archive_write_add_filter.c | 41 struct { int code; int (*setter)(struct archive *); } codes[] = 66 return ((codes[i].setter)(a)); in archive_write_add_filter() 42 struct { int code; int (*setter)(struct archive *); } codes[] = global() member
|
H A D | archive_write_set_format_by_name.c | 44 struct { const char *name; int (*setter)(struct archive *); } names[] = 87 return ((names[i].setter)(a)); in archive_write_set_format_by_name() 45 struct { const char *name; int (*setter)(struct archive *); } names[] = global() member
|
H A D | archive_write_set_format.c | 42 struct { int code; int (*setter)(struct archive *); } codes[] = 75 return ((codes[i].setter)(a)); in archive_write_set_format() 43 struct { int code; int (*setter)(struct archive *); } codes[] = global() member
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_CTX_set_min_proto_version.pod | 47 These setter functions return 1 on success and 0 on failure. The getter 62 The setter functions were added in OpenSSL 1.1.0. The getter functions
|
H A D | X509_STORE_get0_param.pod | 7 - X509_STORE setter and getter functions
|
H A D | OSSL_PARAM.pod | 37 (the I<setter>) that has intimate knowledge about the object that can 58 build up its own B<OSSL_PARAM> array to pass down to a I<setter> or 241 Keys that a I<setter> or I<responder> doesn't recognise should simply 247 If the keys that a called I<setter> recognises form a consistent
|
H A D | CT_POLICY_EVAL_CTX_new.pod | 105 Each setter has a matching getter for accessing the current value.
|
H A D | X509_LOOKUP_meth_new.pod | 171 the function set by the corresponding setter.
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaPseudoObject.cpp | 617 ObjCMethodDecl *setter = RefExpr->getImplicitPropertySetter(); in findGetter() local 618 assert(setter && "both setter and getter are null - cannot happen"); in findGetter() 620 setter->getSelector().getIdentifierInfoForSlot(0); in findGetter() 641 if (ObjCMethodDecl *setter = RefExpr->getImplicitPropertySetter()) { in findSetter() local 642 Setter = setter; in findSetter() 643 SetterSelector = setter->getSelector(); in findSetter() 662 if (ObjCMethodDecl *setter = in findSetter() local 664 if (setter->isPropertyAccessor() && warn) in findSetter() 666 dyn_cast<ObjCInterfaceDecl>(setter->getDeclContext())) { in findSetter() 677 if (prop != prop1 && (prop1->getSetterMethodDecl() == setter)) { in findSetter() [all …]
|
/freebsd/contrib/wpa/wpa_supplicant/dbus/ |
H A D | dbus_new_helpers.h | 97 WPADBusPropertyAccessor setter; member
|
H A D | dbus_new_introspect.c | 92 dsc->setter ? "write" : ""); in add_property()
|
H A D | dbus_new_helpers.c | 206 if (dsc->setter == NULL) { in properties_set() 218 if (dsc->setter(dsc, &iter, &error, user_data) == TRUE) { in properties_set()
|
H A D | dbus_new.c | 4440 desc->setter = wpas_dbus_setter_iface_global; in wpa_dbus_ctrl_iface_props_init()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | BuiltinTypes.def | 296 // of a setter and a getter, with the setter used if the
|
/freebsd/tests/atf_python/sys/netpfil/ipfw/ |
H A D | insns.py | 329 @prob.setter 347 @ip.setter
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 8128 clang::ObjCMethodDecl *setter = nullptr; in AddObjCClassProperty() local 8129 setter = isInstance ? class_interface_decl->lookupInstanceMethod(setter_sel) in AddObjCClassProperty() 8131 if (!setter_sel.isNull() && !setter) { in AddObjCClassProperty() 8142 setter = in AddObjCClassProperty() 8144 setter->setDeclName(setter_sel); in AddObjCClassProperty() 8145 setter->setReturnType(result_type); in AddObjCClassProperty() 8146 setter->setDeclContext(class_interface_decl); in AddObjCClassProperty() 8147 setter->setInstanceMethod(isInstance); in AddObjCClassProperty() 8148 setter->setVariadic(isVariadic); in AddObjCClassProperty() 8149 setter->setPropertyAccessor(isPropertyAccessor); in AddObjCClassProperty() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGObjC.cpp | 1402 Expr *setter = PID->getSetterCXXAssignment(); in hasTrivialSetExpr() local 1403 if (!setter) return true; in hasTrivialSetExpr() 1413 if (CallExpr *call = dyn_cast<CallExpr>(setter)) { in hasTrivialSetExpr() 1421 assert(isa<ExprWithCleanups>(setter)); in hasTrivialSetExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | NumericalStabilitySanitizer.cpp | 1960 #define MOVE_FLAG(attr, setter) \ in moveFastMathFlags() argument 1963 FMF.set##setter(); \ in moveFastMathFlags()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticCommonKinds.td | 58 "method name referenced in property setter attribute "
|
H A D | DiagnosticASTKinds.td | 960 "readwrite|retain|copy|nonatomic|setter|atomic|weak|strong|" 970 "readwrite|retain|copy|nonatomic|setter|atomic|weak|strong|"
|
H A D | DiagnosticSemaKinds.td | 1188 "getter %1|with setter %1}0 was selected for synthesis">, 1372 def err_setter_type_void : Error<"type of setter must be void">; 1426 "setter cannot be specified for a readonly property">, 1429 "writable atomic property %0 cannot pair a synthesized %select{getter|setter}1 " 1430 "with a user defined %select{getter|setter}2">, 1432 def note_atomic_property_fixup_suggest : Note<"setter and getter must both be " 1481 "synthesized properties %0 and %1 both claim setter %2 -" 1482 " use of this setter will cause unexpected behavior">; 1484 "atomic by default property %0 has a user defined %select{getter|setter}1 " 1512 "%1|with setter %1}0 declared here">; [all …]
|
H A D | DiagnosticParseKinds.td | 526 "expected '=' for Objective-C setter">; 528 "expected selector for Objective-C %select{setter|getter}0">;
|
/freebsd/contrib/llvm-project/clang/include/clang-c/ |
H A D | Index.h | 6231 const CXIdxEntityInfo *setter; member
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | Dwarf.def | 1258 HANDLE_DW_APPLE_PROPERTY(0x80, setter)
|