Home
last modified time | relevance | path

Searched refs:setter (Results 1 – 25 of 38) sorted by relevance

12

/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_by_name.c45 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 Darchive_write_add_filter.c41 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 Darchive_write_set_format_by_name.c44 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 Darchive_write_set_format.c42 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 DSSL_CTX_set_min_proto_version.pod47 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 DX509_STORE_get0_param.pod7 - X509_STORE setter and getter functions
H A DOSSL_PARAM.pod37 (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 DCT_POLICY_EVAL_CTX_new.pod105 Each setter has a matching getter for accessing the current value.
H A DX509_LOOKUP_meth_new.pod171 the function set by the corresponding setter.
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp617 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 Ddbus_new_helpers.h97 WPADBusPropertyAccessor setter; member
H A Ddbus_new_introspect.c92 dsc->setter ? "write" : ""); in add_property()
H A Ddbus_new_helpers.c206 if (dsc->setter == NULL) { in properties_set()
218 if (dsc->setter(dsc, &iter, &error, user_data) == TRUE) { in properties_set()
H A Ddbus_new.c4440 desc->setter = wpas_dbus_setter_iface_global; in wpa_dbus_ctrl_iface_props_init()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DBuiltinTypes.def296 // of a setter and a getter, with the setter used if the
/freebsd/tests/atf_python/sys/netpfil/ipfw/
H A Dinsns.py329 @prob.setter
347 @ip.setter
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp8128 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 DCGObjC.cpp1402 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 DNumericalStabilitySanitizer.cpp1960 #define MOVE_FLAG(attr, setter) \ in moveFastMathFlags() argument
1963 FMF.set##setter(); \ in moveFastMathFlags()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticCommonKinds.td58 "method name referenced in property setter attribute "
H A DDiagnosticASTKinds.td960 "readwrite|retain|copy|nonatomic|setter|atomic|weak|strong|"
970 "readwrite|retain|copy|nonatomic|setter|atomic|weak|strong|"
H A DDiagnosticSemaKinds.td1188 "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 DDiagnosticParseKinds.td526 "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 DIndex.h6231 const CXIdxEntityInfo *setter; member
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.def1258 HANDLE_DW_APPLE_PROPERTY(0x80, setter)

12