Home
last modified time | relevance | path

Searched refs:attribute (Results 1 – 25 of 135) sorted by relevance

123456

/mirbsd/src/gnu/usr.sbin/sendmail/cf/
Dsendmail.schema27 # attribute sendmailMTACluster cis
35 # attribute sendmailMTAHost cis
63 # attribute sendmailMTAKey cis
77 # attribute sendmailMTAMapName cis
84 # attribute sendmailMTAMapValue cis
91 # attribute sendmailMTAMapSearch cis
98 # attribute sendmailMTAMapURL cis
150 # attribute sendmailMTAAliasGrouping cis
158 # attribute sendmailMTAAliasValue cis
165 # attribute sendmailMTAAliasSearch cis
[all …]
/mirbsd/src/gnu/usr.bin/perl/t/op/
Dattrs.t55 like $@, qr/^Invalid SCALAR attribute: ["']?plugh["']? at/;
65 like $@, qr/^Invalid SCALAR attribute: ["']?_5x5["']? at/;
168 my $attribute = $negate . $attr;
169 eval "use attributes __PACKAGE__, \$value, '$attribute'";
171 if ($attribute eq '-shared') {
174 is( $@, '', "$type attribute $attribute");
177 like $@, qr/^Invalid $type attribute: $attribute/,
178 "Bogus $type attribute $attribute should fail";
/mirbsd/src/gnu/usr.bin/perl/lib/Term/
DANSIColor.pm124 my $attribute = '';
131 $attribute .= $attributes{$_} . ';';
133 chop $attribute;
134 ($attribute ne '') ? "\e[${attribute}m" : undef;
/mirbsd/src/gnu/usr.bin/perl/ext/attrs/t/
Dattrs.t80 unless ($@ && $@ =~ m/^Invalid CODE attribute: ["']?plugh["']? at/) {
102 unless ($@ && $@ =~ m/Unterminated attribute parameter in attribute list at/) {
113 unless ($@ && $@ =~ m/Invalid separator character '[+]' in attribute list at/) {
/mirbsd/src/gnu/usr.bin/perl/lib/Attribute/Handlers/
DChanges21 - Tweaked handling of anon arrays as attribute args
33 - Added multi-phasic attribute handlers (thanks Garrett)
55 - Fixed handling of attribute data that includes a newline (thanks Pete)
87 and they would loose their attribute on the next run over them.
88 Now perl 5.8 calls the attribute handler runtime whenever it hits my.
DREADME7 Attribute::Handlers - Simpler definition of attribute handlers
11 define attribute handler subroutines for specific attributes. Variables
14 the attribute handler subroutines, which will then be called at the end
/mirbsd/src/usr.sbin/httpd/src/modules/standard/
Dmod_mime.c435 char *attribute, *value; in analyze_ct() local
496 attribute = NULL; in analyze_ct()
500 if (attribute == NULL) { in analyze_ct()
510 attribute = ap_pstrndup(p, mp, cp - mp); in analyze_ct()
511 attribute = zap_sp(attribute); in analyze_ct()
512 if (attribute == NULL || *attribute == '\0') { in analyze_ct()
594 pp->attr = attribute; in analyze_ct()
609 attribute = NULL; in analyze_ct()
/mirbsd/src/sbin/atactl/
Datasmart.h46 struct attribute { struct
56 struct attribute attribute[30]; /* Device attribute */ member
/mirbsd/src/usr.bin/ctags/
DC.c279 static char attribute[] = "__attribute__"; in func_entry() local
280 char maybe_attribute[sizeof attribute + 1]; in func_entry()
338 if (anext - maybe_attribute < (int)(sizeof attribute - 1)) in func_entry()
345 if (strcmp(maybe_attribute, attribute) == 0) { in func_entry()
/mirbsd/src/gnu/usr.bin/binutils/gdb/
Ddwarf2read.c521 struct attribute *attrs; /* An array of attributes */
537 struct attribute struct
791 static char *read_attribute (struct attribute *, struct attr_abbrev *,
794 static char *read_attribute_value (struct attribute *, unsigned,
831 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
859 static void dwarf2_const_value (struct attribute *, struct symbol *,
862 static void dwarf2_const_value_data (struct attribute *attr,
1005 static unsigned int dwarf2_get_ref_die_offset (struct attribute *,
1008 static int dwarf2_get_attr_constant_value (struct attribute *, int);
1011 struct attribute *,
[all …]
/mirbsd/src/gnu/usr.bin/perl/pod/
Dperltooc.pod71 variables, you can make your class attribute accessor methods either ignorant
168 values to the specific, named class attribute.
511 without any attribute methods whatsoever. The most commonly used module
535 # accessor method for "name" attribute
542 # read-only accessor method for "birthday" attribute
549 # accessor method for "stars" attribute
578 Hold on, that doesn't look like anything special. Those attribute
586 In the three attribute methods, C<%$self> is really accessing the %Cosmos
663 implement I<translucent attributes>. A translucent attribute is one
665 attribute, in which case C<< $object->attribute() >> returns that value.
[all …]
/mirbsd/src/sbin/isakmpd/
DTO-DO63 * Validate incoming attribute according to policy, main mode. [done]
65 * Validate incoming attribute according to policy, quick mode. [done]
69 * Validate attribute types (i.e. that what the specs tells should be
/mirbsd/src/usr.bin/vi/cl/
Dcl_funcs.c77 cl_attr(sp, attribute, on) in cl_attr() argument
79 scr_attr_t attribute;
86 switch (attribute) {
/mirbsd/src/gnu/usr.bin/perl/ext/Storable/t/
Dtied_hook.t222 my $v = $bx->{attribute};
246 $v = $bx->{attribute};
Dretrieve.t32 $c->{attribute} = 'attrval';
Ddclone.t32 $c->{attribute} = 'attrval';
/mirbsd/src/gnu/usr.bin/perl/lib/Term/ANSIColor/
DREADME2 (A simple ANSI text attribute control module)
34 attribute and the other of which uses two subs which take strings of
76 that attribute 2 is dark.
/mirbsd/src/gnu/usr.bin/perl/lib/Test/
DBuilder.pm1072 foreach my $attribute (qw(No_Header No_Ending No_Diag)) {
1073 my $method = lc $attribute;
1079 $self->{$attribute} = $no;
1081 return $self->{$attribute};
/mirbsd/src/libexec/login_radius/
Draddauth.c577 int attribute, attribute_len; in parse_challenge() local
586 attribute = *ptr++; in parse_challenge()
591 switch (attribute) { in parse_challenge()
/mirbsd/src/sys/dev/wsfont/
Dfiles.wsfont7 # in getting the rasops_rotation attribute, without having to depend
/mirbsd/src/gnu/usr.sbin/sendmail/cf/cf/
Drelay-domains9 # with the RELAY attribute instead of being enumerated here.
/mirbsd/src/gnu/usr.bin/perl/ext/threads/t/
Dproblems.t68 # with the : unique attribute.
106 /^The 'unique' attribute may only be applied to 'our' variables/
/mirbsd/src/lib/libssl/src/doc/crypto/
DPKCS7_sign.pod46 an SMIMECapabilities attribute. If B<PKCS7_NOATTR> is set then no authenticatedAttributes
50 If present the SMIMECapabilities attribute indicates support for the following
/mirbsd/src/sys/dev/rasops/
DREADME16 - Flags in attribute values are hardcoded
/mirbsd/src/gnu/usr.bin/lynx/src/
DLYCharUtils.h93 int attribute);

123456