Searched refs:pattern (Results 76 - 100 of 121) sorted by relevance

12345

/osnet-11/usr/src/lib/libast/common/port/
H A Dastconf.c1520 astconflist(Sfio_t* sp, const char* path, int flags, const char* pattern) argument
1551 pattern = 0;
1552 if (pattern)
1558 if (regcomp(&re, pattern, REG_DISCIPLINE|REG_EXTENDED|REG_LENIENT|REG_NULL))
1565 if (pattern)
1622 if (pattern)
1660 if (pattern)
/osnet-11/usr/src/lib/libmtmalloc/common/
H A Dmtmalloc.c200 #define FREEPATTERN 0xdeadbeef /* debug fill pattern for free buf */
201 #define INITPATTERN 0xbaddcafe /* debug fill pattern for new buf */
531 /* we copy the pattern before we set the bit to free */
1625 * we skip debug pattern checking.
1952 copy_pattern(uint32_t pattern, void *buf_arg, size_t size) argument
1958 buf[3] = buf[2] = buf[1] = buf[0] = pattern;
1962 *buf++ = pattern;
1966 verify_pattern(uint32_t pattern, void *buf_arg, size_t size) argument
1972 if (*buf != pattern)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dperl5db.pl71 In any case, watch for this pattern. It occurs fairly often.
77 (search for subroutines by pattern) allows you to negate the pattern
125 bit-pattern, we can save and restore it easily (it will just look like
2160 =head4 C<S> - list subroutines matching/not matching a pattern
2169 $Spatt = $3; # The pattern (if any) to use.
2178 # Otherwise, check it against the pattern. We then use
2841 We take the argument and treat it as a pattern. If it turns out to be a
2850 # The pattern as a string.
2856 # If the pattern is
[all...]
H A DSwitch.pm518 case /\w+/ { print "pattern" }
519 case qr/\w+/ { print "pattern" }
557 string regexp pattern match match if $s =~ /$c/;
662 -- hash membership, pattern match, array intersection, simple equality,
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DParser.java98 * @param pattern the operand of the term.
109 Object pattern,
428 if ((char)tok != CPAREN) { // It's a wildcarded pattern...
432 // Need to convert to a wildcarded pattern. Regardless
445 // Check for inappropriate pattern.
107 evaluate(AttributeString tag, char op, Object pattern, boolean invert, ParserRecord returns) argument
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dllib-lldap261 char *pattern, char *prefix, char *suffix, char *attr,
264 int ldap_create_filter(char *buf, unsigned long buflen, char *pattern, char *prefix, char *suffix, char *attr, char *value, char **valwords);
/osnet-11/usr/src/lib/libdiskmgt/common/
H A Dfindevs.c623 char *pattern; local
637 pattern = DEVLINK_FLOPPY_REGEX;
639 pattern = DEVLINK_REGEX;
643 (void) di_devlink_walk(args->handle, pattern,
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dregcomp.c22 static reg_errcode_t re_compile_internal (regex_t *preg, const char * pattern,
211 Returns 0 if the pattern was valid, otherwise an error string.
218 re_compile_pattern (pattern, length, bufp)
219 const char *pattern;
224 re_compile_pattern (const char *pattern, size_t length,
238 ret = re_compile_internal (bufp, pattern, length, re_syntax_options);
249 also be assigned to arbitrarily: each pattern buffer stores its own
447 `buffer' to the compiled pattern;
448 `used' to the length of the compiled pattern;
457 PATTERN is the address of the pattern strin
752 re_compile_internal(regex_t *preg, const char * pattern, size_t length, reg_syntax_t syntax) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DFunctions.pm93 'Regexp' => 'Regular expressions and pattern matching',
258 m// Regexp match a string with a regular expression pattern
287 qr/STRING/ Regexp Compile pattern
305 s/// Regexp replace a pattern with a string
H A DHtml.pm552 # have some ...\t...\t...\n pattern
1469 sub pattern ($) { $_[0] ? '[^\S\n]+'.('>' x ($_[0] + 1)) : '>' } subroutine
1650 my $term = pattern $closing;
1679 s/\A(.*?)(([BCEFILSXZ])<(<+[^\S\n]+)?|@{[pattern $closing[0]]})//s ){
2034 my $term = pattern $closing;
2064 # some pattern matching operator?
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/DProf/
H A DDProf.pm172 A pattern like this is used by Test::More's skip() function, for
/osnet-11/usr/src/lib/libldap4/common/
H A Dllib-lldap237 char *pattern, char *prefix, char *suffix, char *attr,
/osnet-11/usr/src/cmd/ldap/common/
H A Dldapsearch.c277 printf( gettext("filter pattern: %s\nreturning: "), filtpattern );
628 perror( gettext("filter and/or pattern too long?") );
638 perror( gettext("snprintf filter (filter and/or pattern too long?)") );
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Opcode/
H A DOpcode.pm263 If an optional pattern is given then only lines which match the
264 (case insensitive) pattern will be output.
/osnet-11/usr/src/lib/pybootmgmt/common/bootmgmt/
H A Dpysol.py585 def di_devlink_walk(hdl, pattern, path, flags, walk_arg, walkfunc):
586 """Conduct a walk of all devlinks that patch the given pattern and
594 r = _libdi.di_devlink_walk(hdl, pattern, path, flags, walk_arg, wf)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dpat.t251 # As well as failing if the pattern matches do unexpected things, the
2806 print "# [ID 20020412.005] wrong pmop flags checked when empty pattern\n";
2807 # requires reuse of last successful pattern
3081 $pattern = "^(b+?|a){1,2}c";
3082 ok("bac" =~ /$pattern/ && $1 eq 'a', "[perl #3547]");
3083 ok("bbac" =~ /$pattern/ && $1 eq 'a', "[perl #3547]");
3084 ok("bbbac" =~ /$pattern/ && $1 eq 'a', "[perl #3547]");
3085 ok("bbbbac" =~ /$pattern/ && $1 eq 'a', "[perl #3547]");
3264 ok($c=~/${c}|\x{100}/, "ASCII pattern that really is utf8");
/osnet-11/usr/src/lib/rad/pyrad/common/
H A Dclient.py849 The Name class serves as both an object name and a pattern to match existing
855 An object pattern requires neither a domain nor a non-empty set of key-value
856 pairs. A pattern matches a name if everything (domain, keys) present in the
857 pattern is present in the name and has the same value.
1249 def list_objects(self, pattern = None):
1252 pattern. If no pattern is supplied, all server objects will
1257 pattern: Name (default: None)
1258 a RAD Name pattern
1264 if pattern
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Ddprofpp.PL277 Aggregate "Group" all calls matching the pattern together.
292 Filter all calls matching the pattern.
376 # -G Group all calls matching the pattern together.
378 # -f Filter all calls mathcing the pattern.
/osnet-11/usr/src/lib/libumem/common/
H A Dumem.c626 copy_pattern(uint64_t pattern, void *buf_arg, size_t size) argument
632 *buf++ = pattern;
636 verify_pattern(uint64_t pattern, void *buf_arg, size_t size) argument
642 if (*buf != pattern)
/osnet-11/usr/src/head/
H A Dldap.h1304 char *pattern, char *prefix, char *suffix, char *attr,
1427 char *pattern, char *prefix, char *suffix, char *attr,
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Safe/t/
H A Dopcode.pl668 match pattern match (m//) ck_match d/
669 qr pattern quote (qr//) ck_match s/
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Filter/
H A DSimple.pm459 B<Note that, no matter what you set the terminator pattern to,
563 Filters only the pattern literal parts of a Perl quotelike (i.e. the
/osnet-11/usr/src/lib/watchmalloc/common/
H A Dmalloc.c84 0xdeadbeefdeadbeefULL, /* pattern in a freed block */
85 0xbaddcafebaddcafeULL /* pattern in an allocated block */
91 uint64_t pattern = patterns[pat]; local
97 *datap++ = pattern;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A Dxsubpp9 B<xsubpp> [B<-v>] [B<-C++>] [B<-except>] [B<-s pattern>] [B<-prototypes>] [B<-noversioncheck>] [B<-nolinenumbers>] [B<-nooptimize>] [B<-typemap typemap>] ... file.xs
129 $usage = "Usage: xsubpp [-v] [-C++] [-except] [-prototypes] [-noversioncheck] [-nolinenumbers] [-nooptimize] [-noinout] [-noargtypes] [-s pattern] [-typemap typemap]... file.xs\n";
393 my($pattern) = @_ ;
397 while $kwd = check_keyword($pattern) ;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/
H A Dfind2perl.PL779 File name matches specified GLOB wildcard pattern. GLOB may need to be

Completed in 80 milliseconds

12345