| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| H A D | xgettext-glade-3 | 29 <property name="visible">no</property> 30 <property name="title" translatable="yes">gedit: ASCII table</property> 31 <property name="type">GTK_WINDOW_TOPLEVEL</property> 32 <property name="modal">no</property> 33 <property name="allow_shrink">yes</property> 34 <property name="allow_grow">yes</property> 35 <property name="window-position">GTK_WIN_POS_NONE</property> 39 <property name="homogeneous">no</property> 40 <property name="spacing">8</property> 41 <property name="visible">yes</property> [all …]
|
| /netbsd-src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/ |
| H A D | networkconfig.ui | 4 <property name="geometry" > 11 </property> 12 <property name="windowTitle" > 14 </property> 18 <property name="text" > 20 </property> 25 <property name="frameShape" > 27 </property> 28 <property name="frameShadow" > 30 </property> [all …]
|
| H A D | wpagui.ui | 4 <property name="geometry" > 11 </property> 12 <property name="windowTitle" > 14 </property> 15 <property name="windowIcon" > 18 </property> 23 <property name="text" > 25 </property> 33 <property name="text" > 35 </property> [all …]
|
| H A D | userdatarequest.ui | 7 <property name="geometry" > 14 </property> 15 <property name="windowTitle" > 17 </property> 18 <property name="sizeGripEnabled" > 20 </property> 24 <property name="text" > 26 </property> 31 <property name="margin" > 33 </property> [all …]
|
| H A D | scanresults.ui | 4 <property name="geometry" > 11 </property> 12 <property name="windowTitle" > 14 </property> 18 <property name="editTriggers" > 20 </property> 21 <property name="uniformRowHeights" > 23 </property> 24 <property name="sortingEnabled" > 26 </property> [all …]
|
| H A D | eventhistory.ui | 4 <property name="geometry" > 11 </property> 12 <property name="windowTitle" > 14 </property> 18 <property name="sizePolicy" > 23 </property> 24 <property name="verticalScrollBarPolicy" > 26 </property> 27 <property name="selectionMode" > 29 </property> [all …]
|
| /netbsd-src/usr.sbin/memswitch/ |
| H A D | methods.h | 35 int fill_uchar(struct property*); 36 int fill_ushort(struct property*); 37 int fill_ulong(struct property*); 39 int flush_uchar(struct property*); 40 int flush_ushort(struct property*); 41 int flush_ulong(struct property*); 42 int flush_dummy(struct property*); 44 int parse_dummy(struct property*, const char*); 45 int parse_uchar(struct property*, const char*); 46 int parse_ushort(struct property*, const char*); [all …]
|
| H A D | methods.c | 98 fill_uchar(struct property *prop) in fill_uchar() 113 fill_ushort(struct property *prop) in fill_ushort() 128 fill_ulong(struct property *prop) in fill_ulong() 143 flush_uchar(struct property *prop) in flush_uchar() 157 flush_ushort(struct property *prop) in flush_ushort() 172 flush_ulong(struct property *prop) in flush_ulong() 189 flush_dummy(struct property *prop) in flush_dummy() 195 parse_dummy(struct property *prop, const char *value) in parse_dummy() 203 parse_byte(struct property *prop, const char *value) in parse_byte() 239 parse_uchar(struct property *prop, const char *value) in parse_uchar() [all …]
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/ |
| H A D | drm_property.c | 106 struct drm_property *property = NULL; in drm_property_create() local 115 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL); in drm_property_create() 116 if (!property) in drm_property_create() 119 property->dev = dev; in drm_property_create() 122 property->values = kcalloc(num_values, sizeof(uint64_t), in drm_property_create() 124 if (!property->values) in drm_property_create() 128 ret = drm_mode_object_add(dev, &property->base, DRM_MODE_OBJECT_PROPERTY); in drm_property_create() 132 property->flags = flags; in drm_property_create() 133 property->num_values = num_values; in drm_property_create() 134 INIT_LIST_HEAD(&property->enum_list); in drm_property_create() [all …]
|
| H A D | drm_atomic_uapi.c | 425 struct drm_crtc_state *state, struct drm_property *property, in drm_atomic_crtc_set_property() argument 433 if (property == config->prop_active) in drm_atomic_crtc_set_property() 435 else if (property == config->prop_mode_id) { in drm_atomic_crtc_set_property() 441 } else if (property == config->prop_vrr_enabled) { in drm_atomic_crtc_set_property() 443 } else if (property == config->degamma_lut_property) { in drm_atomic_crtc_set_property() 451 } else if (property == config->ctm_property) { in drm_atomic_crtc_set_property() 459 } else if (property == config->gamma_lut_property) { in drm_atomic_crtc_set_property() 467 } else if (property == config->prop_out_fence_ptr) { in drm_atomic_crtc_set_property() 478 return crtc->funcs->atomic_set_property(crtc, state, property, val); in drm_atomic_crtc_set_property() 482 property->base.id, property->name); in drm_atomic_crtc_set_property() [all …]
|
| H A D | drm_mode_object.c | 239 struct drm_property *property, in drm_object_attach_property() argument 243 struct drm_device *dev = property->dev; in drm_object_attach_property() 263 obj->properties->properties[count] = property; in drm_object_attach_property() 289 struct drm_property *property, uint64_t val) in drm_object_property_set_value() argument 293 WARN_ON(drm_drv_uses_atomic_modeset(property->dev) && in drm_object_property_set_value() 294 !(property->flags & DRM_MODE_PROP_IMMUTABLE)); in drm_object_property_set_value() 297 if (obj->properties->properties[i] == property) { in drm_object_property_set_value() 308 struct drm_property *property, in __drm_object_property_get_value() argument 317 if (drm_drv_uses_atomic_modeset(property->dev) && in __drm_object_property_get_value() 318 !(property->flags & DRM_MODE_PROP_IMMUTABLE)) in __drm_object_property_get_value() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/ |
| H A D | dde.d | 35 @property ubyte reserved() { return cast(ubyte) (_bf & 0x3F); } in reserved() 36 @property bool fBusy() { return cast(bool) (_bf & 0x40); } in fBusy() 37 @property bool fAck() { return cast(bool) (_bf & 0x80); } in fAck() 39 @property ubyte reserved(ubyte r) { in reserved() 44 @property bool fBusy(bool f) { _bf = cast(ubyte) ((_bf & ~0x40) | (f << 6)); return f; } in fBusy() 45 @property bool fAck(bool f) { _bf = cast(ubyte) ((_bf & ~0x80) | (f << 7)); return f; } in fAck() 52 @property ushort reserved() { return cast(ushort) (_bf & 0x3FFF); } in reserved() 53 @property bool fDeferUpd() { return cast(bool) (_bf & 0x4000); } in fDeferUpd() 54 @property bool fAckReq() { return cast(bool) (_bf & 0x8000); } in fAckReq() 56 @property ushort reserved(ushort r) { in reserved() [all …]
|
| H A D | shlobj.d | 1038 @property bool fShowAllObjects() { return cast(bool) (_bf & 0x0001); } 1039 @property bool fShowExtensions() { return cast(bool) (_bf & 0x0002); } 1040 @property bool fNoConfirmRecycle() { return cast(bool) (_bf & 0x0004); } 1041 @property bool fShowSysFiles() { return cast(bool) (_bf & 0x0008); } 1042 @property bool fShowCompColor() { return cast(bool) (_bf & 0x0010); } 1043 @property bool fDoubleClickInWebView() { return cast(bool) (_bf & 0x0020); } 1044 @property bool fDesktopHTML() { return cast(bool) (_bf & 0x0040); } 1045 @property bool fWin95Classic() { return cast(bool) (_bf & 0x0080); } 1046 @property bool fDontPrettyPath() { return cast(bool) (_bf & 0x0100); } 1047 @property bool fShowAttribCol() { return cast(bool) (_bf & 0x0200); } [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | json.c | 234 void property(const char *name, const char *s) in property() function 243 void property(const char *name, int i) in property() function 258 void property(const char *name, TRUST trust) in property() function 267 property(name, "system"); in property() 270 property(name, "trusted"); in property() 273 property(name, "safe"); in property() 280 void property(const char *name, PURE purity) in property() function 289 property(name, "weak"); in property() 292 property(name, "const"); in property() 295 property(name, "strong"); in property() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | json.d | 242 extern(D) void property(const char[] name, const char[] s) in property() function 268 extern(D) void property(const char[] name, int i) in property() function 282 extern(D) void property(const char[] name, TRUST trust) in property() function 290 case TRUST.system: return property(name, "system"); in property() 291 case TRUST.trusted: return property(name, "trusted"); in property() 292 case TRUST.safe: return property(name, "safe"); in property() 296 extern(D) void property(const char[] name, PURE purity) in property() function 304 case PURE.weak: return property(name, "weak"); in property() 305 case PURE.const_: return property(name, "strong"); in property() 306 case PURE.fwdref: return property(name, "fwdref"); in property() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
| H A D | elf-properties.c | 49 if (type == p->property.pr_type) in _bfd_elf_get_property() 51 if (datasz > p->property.pr_datasz) in _bfd_elf_get_property() 54 p->property.pr_datasz = datasz; in _bfd_elf_get_property() 56 return &p->property; in _bfd_elf_get_property() 58 else if (type < p->property.pr_type) in _bfd_elf_get_property() 70 p->property.pr_type = type; in _bfd_elf_get_property() 71 p->property.pr_datasz = datasz; in _bfd_elf_get_property() 74 return &p->property; in _bfd_elf_get_property() 349 if (type == list->property.pr_type) in elf_find_and_remove_property() 354 return &list->property; in elf_find_and_remove_property() [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/bfd/ |
| H A D | elf-properties.c | 49 if (type == p->property.pr_type) in _bfd_elf_get_property() 51 if (datasz > p->property.pr_datasz) in _bfd_elf_get_property() 54 p->property.pr_datasz = datasz; in _bfd_elf_get_property() 56 return &p->property; in _bfd_elf_get_property() 58 else if (type < p->property.pr_type) in _bfd_elf_get_property() 70 p->property.pr_type = type; in _bfd_elf_get_property() 71 p->property.pr_datasz = datasz; in _bfd_elf_get_property() 74 return &p->property; in _bfd_elf_get_property() 349 if (type == list->property.pr_type) in elf_find_and_remove_property() 354 return &list->property; in elf_find_and_remove_property() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/linux/ |
| H A D | perf_event.d | 499 @property ulong disabled() @safe pure nothrow @nogc const in disabled() 505 @property void disabled(ulong v) @safe pure nothrow @nogc in disabled() 519 @property ulong inherit() @safe pure nothrow @nogc const in inherit() 525 @property void inherit(ulong v) @safe pure nothrow @nogc in inherit() 539 @property ulong pinned() @safe pure nothrow @nogc const in pinned() 545 @property void pinned(ulong v) @safe pure nothrow @nogc in pinned() 559 @property ulong exclusive() @safe pure nothrow @nogc const in exclusive() 565 @property void exclusive(ulong v) @safe pure nothrow @nogc in exclusive() 579 @property ulong exclude_user() @safe pure nothrow @nogc const in exclude_user() 585 @property void exclude_user(ulong v) @safe pure nothrow @nogc in exclude_user() [all …]
|
| /netbsd-src/usr.sbin/acpitools/aml/ |
| H A D | aml_evalobj.c | 80 if (name == NULL || name->property == NULL || in aml_eval_fieldobject() 81 name->property->type != aml_t_field) { in aml_eval_fieldobject() 86 field = &name->property->field; in aml_eval_fieldobject() 96 if (wname == NULL || wname->property == NULL || in aml_eval_fieldobject() 97 wname->property->type != aml_t_opregion) { in aml_eval_fieldobject() 103 or = &wname->property->opregion; in aml_eval_fieldobject() 195 if (aname == NULL || aname->property == NULL) { in aml_eval_name() 205 ret = aname->property; in aml_eval_name() 214 switch (aname->property->type) { in aml_eval_name() 217 aname = aml_search_name(env, aname->property in aml_eval_name() [all...] |
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/ |
| H A D | property.pod | 5 property - Properties, a selection mechanism for algorithm implementations 23 A I<reserved> property name consists of a single C-style identifier 30 A I<user defined> property name is similar, but it B<must> consist of 32 The last identifier in the name can be considered the 'true' property 35 property names like 42 A I<property> is a I<name=value> pair. 43 A I<property definition> is a sequence of comma separated properties. 46 For example: "" defines an empty property definition (i.e., no restriction); 47 "my.foo=bar" defines a property named I<my.foo> which has a string value I<bar> 48 and "iteration.count=3" defines a property named I<iteration.count> which [all …]
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | imx6ulz.dtsi | 9 /delete-property/ ethernet0; 10 /delete-property/ ethernet1; 11 /delete-property/ i2c2; 12 /delete-property/ i2c3; 13 /delete-property/ serial4; 14 /delete-property/ serial5; 15 /delete-property/ serial6; 16 /delete-property/ serial7; 17 /delete-property/ spi2; 18 /delete-property/ spi3;
|
| /netbsd-src/external/gpl2/dtc/dist/tests/ |
| H A D | stringlist.c | 21 const char *property) in check_expected_failure() argument 61 const char *property, int count) in check_string_count() argument 69 err = fdt_stringlist_count(fdt, offset, property); in check_string_count() 72 property, path, err); in check_string_count() 76 path, property, err, count); in check_string_count() 80 const char *property, const char *string, in check_string_index() argument 89 err = fdt_stringlist_search(fdt, offset, property, string); in check_string_index() 93 string, property, path, err, idx); in check_string_index() 97 const char *property, int idx, in check_string() argument 107 result = fdt_stringlist_get(fdt, offset, property, idx, &len); in check_string() [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/sim/ppc/ |
| H A D | device.h | 234 const char *property); /* NULL for first property */ 261 const char *property, 268 const char *property, 275 const char *property); 282 const char *property, 288 const char *property); 299 const char *property, 305 const char *property, 311 const char *property, 317 const char *property); [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 65 ObjCPropertyDecl *property) { in checkPropertyDeclWithOwnership() argument 66 if (property->isInvalidDecl()) return; in checkPropertyDeclWithOwnership() 68 ObjCPropertyAttribute::Kind propertyKind = property->getPropertyAttributes(); in checkPropertyDeclWithOwnership() 70 = property->getType().getObjCLifetime(); in checkPropertyDeclWithOwnership() 75 = getImpliedARCOwnership(propertyKind, property->getType()); in checkPropertyDeclWithOwnership() 90 property->setPropertyAttributes(attr); in checkPropertyDeclWithOwnership() 96 property->setInvalidDecl(); in checkPropertyDeclWithOwnership() 97 S.Diag(property->getLocation(), in checkPropertyDeclWithOwnership() 99 << property->getDeclName() in checkPropertyDeclWithOwnership() 722 ObjCPropertyDecl *property, in checkARCPropertyImpl() argument [all …]
|
| /netbsd-src/external/gpl2/dtc/dist/ |
| H A D | livetree.c | 41 struct property *build_property(char *name, struct data val, in build_property() 44 struct property *new = xmalloc(sizeof(*new)); in build_property() 55 struct property *build_property_delete(char *name) in build_property_delete() 57 struct property *new = xmalloc(sizeof(*new)); in build_property_delete() 67 struct property *chain_property(struct property *first, struct property *list) in chain_property() 75 struct property *reverse_properties(struct property *first) in reverse_properties() 77 struct property *p = first; in reverse_properties() 78 struct property *head = NULL; in reverse_properties() 79 struct property *next; in reverse_properties() 90 struct node *build_node(struct property *proplist, struct node *children, in build_node() [all …]
|