| /openbsd-src/gnu/usr.sbin/mkhybrid/src/libfile/ |
| H A D | softmagic.c | 223 int matched; local 279 matched = 1; 283 matched = v != l; 286 v, l, matched); 290 matched = v == l; 293 v, l, matched); 298 matched = v > l; 301 v, l, matched); 304 matched = (int32) v > (int32) l; 307 v, l, matched); [all …]
|
| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | jump.py | 22 matched = False 24 if (not matched): 27 matched = True 38 if (not matched): 41 matched = True 52 if (not matched): 55 matched = True 66 if (not matched): 69 matched = True 76 if (not matched): [all …]
|
| /openbsd-src/usr.bin/less/ |
| H A D | pattern.c | 111 int matched; in match_pattern() local 115 matched = match(tpattern, strlen(tpattern), line, line_len, in match_pattern() 127 matched = !regexec(spattern, line, 1, &rm, flags); in match_pattern() 128 if (matched) { in match_pattern() 133 matched = (!(search_type & SRCH_NO_MATCH) && matched) || in match_pattern() 134 ((search_type & SRCH_NO_MATCH) && !matched); in match_pattern() 135 return (matched); in match_pattern()
|
| /openbsd-src/usr.sbin/user/ |
| H A D | main.c | 77 int matched; in main() local 81 for (matched = i = 0 ; i < cmdp->c_wc && i < MaxCmdWords ; i++) { in main() 85 matched += 1; in main() 90 if (matched == cmdp->c_wc && cmdp->c_func != NULL) in main() 91 return (*cmdp->c_func)(argc - (matched - 1), in main() 92 argv + (matched - 1)); in main()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_suppressions.cpp | 146 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions() local 148 suppression_ctx->GetMatched(&matched); in PrintMatchedSuppressions() 149 if (!matched.size()) in PrintMatchedSuppressions() 152 for (uptr i = 0; i < matched.size(); i++) in PrintMatchedSuppressions() 153 hit_count += atomic_load_relaxed(&matched[i]->hit_count); in PrintMatchedSuppressions() 156 for (uptr i = 0; i < matched.size(); i++) { in PrintMatchedSuppressions() 157 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count), in PrintMatchedSuppressions() 158 matched[i]->type, matched[i]->templ); in PrintMatchedSuppressions()
|
| /openbsd-src/gnu/usr.bin/texinfo/doc/ |
| H A D | help2man | 366 my $matched = ''; 372 $matched .= $& if %append; 382 $matched .= $& if %append; 395 $matched .= $& if %append; 403 $matched .= $& if %append; 411 $matched .= $& if %append; 420 $matched .= $& if %append; 428 $matched .= $& if %append; 451 if ($matched =~ $pat)
|
| /openbsd-src/share/locale/ctype/ |
| H A D | gen_ctype_utf8.pl | 173 my $matched; 177 $matched = 1; 181 $matched = 1; 185 $matched = 1; 195 $matched = 1; 202 $matched = 1; 216 push @{ $info->{SPECIAL} }, $code unless $matched; 225 $matched = 1;
|
| /openbsd-src/gnu/usr.bin/perl/ext/File-DosGlob/lib/File/ |
| H A D | DosGlob.pm | 22 my @matched = (); 86 push(@matched, "$head$e"), next INNER if &$matchsub($e); 95 push(@matched, "$head$e"), next INNER if &$matchsub("$e."); 98 push @retval, @matched if @matched;
|
| /openbsd-src/gnu/usr.bin/perl/t/op/ |
| H A D | switch.t | 752 my $matched; 754 when ("other arg") {$matched = 1} 755 default {$matched = 0} 759 ok($matched, "$test: matched"); 765 my $matched; 767 when ("other arg") {$matched = 1} 771 ok(!$matched, "$test: not matched"); 777 my $matched; 779 when ($obj) {$matched = 1} 780 default {$matched = 0} [all …]
|
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbtest.py | 1979 matched = thread_line_pattern.match(line) 1980 if matched: 1981 self.runCmd('thread select %s' % matched.group(1)) 2078 matched = bool(match_object) 2081 print("Matched" if matched else "Not matched", file=sbuf) 2082 if matched: 2085 self.assertTrue(matched if matching else not matched, 2352 def found_str(matched): argument 2353 return "was found" if matched else "was not found" 2369 matched = matching [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/arm/ |
| H A D | unwind-arm.c | 850 void *matched; in __gnu_unwind_pr_common() local 857 matched = (void *)(ucbp + 1); in __gnu_unwind_pr_common() 863 &matched)) in __gnu_unwind_pr_common() 864 matched = (void *)0; in __gnu_unwind_pr_common() 867 if (matched) in __gnu_unwind_pr_common() 871 ucbp->barrier_cache.bitpattern[0] = (_uw) matched; in __gnu_unwind_pr_common() 904 void *matched; in __gnu_unwind_pr_common() local 908 matched = (void *)(ucbp + 1); in __gnu_unwind_pr_common() 911 &matched)) in __gnu_unwind_pr_common() 920 ucbp->barrier_cache.bitpattern[0] = (_uw) matched; in __gnu_unwind_pr_common()
|
| /openbsd-src/usr.sbin/bgpd/ |
| H A D | control.c | 250 int verbose, matched; in control_dispatch_msg() 332 matched = 0; in control_dispatch_msg() 337 matched = 1; in control_dispatch_msg() 361 if (!matched && !RB_EMPTY(peers)) { in control_dispatch_msg() 382 matched = 0; in control_dispatch_msg() 387 matched = 1; in control_dispatch_msg() 455 if (!matched) in control_dispatch_msg() 244 int verbose, matched; control_dispatch_msg() local
|
| /openbsd-src/gnu/usr.bin/perl/t/re/ |
| H A D | reg_eval.t | 47 my $matched = $str =~ / 55 if ($matched) {
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlreref.pod | 31 p Preserve a copy of the matched string - 44 If 'pattern' is an empty string, the last I<successfully> matched 226 matched by a pattern with a possessive quantifier will not be backtracked 270 (N) subpattern N has matched something 271 (<name>) named subpattern has matched something 272 ('name') named subpattern has matched something 283 $` Everything prior to matched string 284 $& Entire matched string 285 $' Everything after to matched string 287 ${^PREMATCH} Everything prior to matched strin [all...] |
| H A D | perlrequick.pod | 27 value if the regex matched, or false if the regex did not match. In 75 A metacharacter can be matched literally by putting a backslash before 109 With all of the regexes above, if the regex matched anywhere in the 130 characters to be possibly matched inside. But we'll drop the "bracketed" 151 characters for a character class are C<-]\^$> and are matched using an 301 parts of a string that matched. For each grouping, the part that 302 matched inside goes into the special variables C<$1>, C<$2>, etc. 312 list of matched values C<($1,$2,...)>. So we could rewrite it as 422 In list context, C</g> returns a list of matched groupings, or if 434 string whatever is matched wit [all...] |
| H A D | perlrecharclass.pod | 15 in such a way that one character of the set is matched. 18 string is the string the regular expression is matched against.) 96 matches anything that is matched by C<\p{Digit}>, which includes [0-9]. 98 current locale might not have C<[0-9]> matched by C<\d>, and/or might match 116 C<\d+>, the matched string might contain a mixture of digits from 127 is the same set of characters matched by C<\p{Numeric_Type=Decimal}>. 145 Any character not matched by C<\d> is matched by C<\D>. 209 Any character not matched by C<\w> is matched b [all...] |
| /openbsd-src/gnu/usr.bin/perl/ |
| H A D | regcomp.sym | 36 # GROUPP GROUPP, num 1 ; Whether the group matched. 236 REF REF, num 2 V ; Match some already matched string 237 REFF REF, num 2 V ; Match already matched string, using /di rules. 238 REFFL REF, num 2 V ; Match already matched string, using /li rules. 242 REFFU REF, num 2 V ; Match already matched string, usng /ui. 243 REFFA REF, num 2 V ; Match already matched string, using /aai rules. 247 REFN REF, no-sv 2 V ; Match some already matched string 248 REFFN REF, no-sv 2 V ; Match already matched string, using /di rules. 249 REFFLN REF, no-sv 2 V ; Match already matched string, using /li rules. 250 REFFUN REF, num 2 V ; Match already matched string, using /ui rules. [all …]
|
| /openbsd-src/gnu/usr.bin/cvs/lib/ |
| H A D | fnmatch.c | 142 goto matched; 151 matched:;
|
| /openbsd-src/gnu/lib/libiberty/src/ |
| H A D | fnmatch.c | 175 goto matched; in fnmatch() 184 matched:; in fnmatch()
|
| /openbsd-src/usr.sbin/authpf/ |
| H A D | authpf.c | 465 int matched; in allowed_luser() local 498 matched = 0; in allowed_luser() 515 matched++; in allowed_luser() 547 matched++; in allowed_luser() 553 matched = strcmp(pw->pw_name, buf) == 0 || in allowed_luser() 560 if (matched) { in allowed_luser() 562 return (1); /* matched an allowed user/group */ in allowed_luser()
|
| /openbsd-src/sys/arch/landisk/dev/ |
| H A D | rs5c313.c | 411 static int matched = 0; in rs5c313_landisk_match() local 413 if (matched) in rs5c313_landisk_match() 416 return (matched = 1); in rs5c313_landisk_match()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Text-Balanced/t/ |
| H A D | 04_extdel.t | 31 ($neg ? \&isnt : \&is)->(substr($str,pos($str)||0,1), ';', "$orig_str matched list"); 39 ($neg ? \&unlike : \&like)->( $str, qr/\A;/, "$orig_str matched scalar");
|
| H A D | 02_extbrk.t | 30 ($neg ? \&isnt : \&is)->(substr($str,pos($str)||0,1), ';', "$orig_str matched list"); 38 ($neg ? \&unlike : \&like)->( $str, qr/\A;/, "$orig_str matched scalar");
|
| H A D | 08_extvar.t | 32 ($neg ? \&isnt : \&is)->(substr($str,pos($str)||0,1), ';', "$orig_str matched list"); 40 ($neg ? \&unlike : \&like)->( $str, qr/\A;/, "$orig_str matched scalar");
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_suppressions.cpp | 175 InternalMmapVector<Suppression *> *matched) { in GetMatched() argument 178 matched->push_back(&suppressions_[i]); in GetMatched()
|