Home
last modified time | relevance | path

Searched refs:matched (Results 1 – 25 of 335) sorted by relevance

12345678910>>...14

/openbsd/gnu/usr.sbin/mkhybrid/src/libfile/
H A Dsoftmagic.c223 int matched; local
279 matched = 1;
283 matched = v != l;
286 v, l, matched);
290 matched = v == l;
298 matched = v > l;
313 matched = v < l;
327 matched = (v & l) == l;
334 matched = (v & l) != l;
341 matched = 0;
[all …]
/openbsd/gnu/llvm/lldb/examples/python/
H A Djump.py22 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/usr.bin/less/
H A Dpattern.c111 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/usr.sbin/user/
H A Dmain.c77 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/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cpp146 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/gnu/usr.bin/texinfo/doc/
H A Dhelp2man366 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/share/locale/ctype/
H A Dgen_ctype_utf8.pl173 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/gnu/usr.bin/perl/ext/File-DosGlob/lib/File/
H A DDosGlob.pm22 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/gnu/usr.bin/perl/t/op/
H A Dswitch.t752 my $matched;
755 default {$matched = 0}
759 ok($matched, "$test: matched");
765 my $matched;
777 my $matched;
779 when ($obj) {$matched = 1}
780 default {$matched = 0}
784 ok($matched, "$test: matched");
793 my $matched;
795 when ($obj) {$matched = 1}
[all …]
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py1980 if matched:
2082 if matched:
2085 self.assertTrue(matched if matching else not matched,
2352 def found_str(matched): argument
2369 matched = matching
2387 matched = index != -1
2391 if matched != matching:
2400 if matched:
2408 matched = bool(matched)
2409 if matched != matching:
[all …]
/openbsd/gnu/gcc/gcc/config/arm/
H A Dunwind-arm.c850 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/usr.sbin/bgpd/
H A Dcontrol.c244 int verbose, matched; in control_dispatch_msg() local
326 matched = 0; in control_dispatch_msg()
331 matched = 1; in control_dispatch_msg()
355 if (!matched && RB_EMPTY(peers)) { in control_dispatch_msg()
376 matched = 0; in control_dispatch_msg()
381 matched = 1; in control_dispatch_msg()
449 if (!matched) in control_dispatch_msg()
/openbsd/gnu/usr.bin/perl/t/re/
H A Dreg_eval.t47 my $matched = $str =~ /
55 if ($matched) {
/openbsd/gnu/usr.bin/perl/pod/
H A Dperlreref.pod31 p Preserve a copy of the matched string -
44 If 'pattern' is an empty string, the last I<successfully> matched
271 (N) subpattern N has matched something
272 (<name>) named subpattern has matched something
273 ('name') named subpattern has matched something
284 $` Everything prior to matched string
285 $& Entire matched string
286 $' Everything after to matched string
288 ${^PREMATCH} Everything prior to matched string
289 ${^MATCH} Entire matched string
[all …]
H A Dperlrequick.pod27 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
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 with the C<regex>. The operator C<=~> is
446 With the C<s///> operator, the matched variables C<$1>, C<$2>, etc.
474 matched substring. Some examples:
[all …]
H A Dperlrecharclass.pod15 in such a way that one character of the set is matched.
18 string is the string the regular expression is matched against.)
145 Any character not matched by C<\d> is matched by C<\D>.
209 Any character not matched by C<\w> is matched by C<\W>.
262 Any character not matched by C<\s> is matched by C<\S>.
292 vertical tab (C<"\cK">) was not matched by C<\s>.
446 character classes, exactly one character is matched.* To match
500 the class, the entire sequence is matched. For example,
1061 are also matched by the second operand)
1064 points that are matched by either, but not both, of the
[all …]
/openbsd/gnu/usr.bin/perl/
H A Dregcomp.sym36 # 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.
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.
262 GROUPP GROUPP, num 1 ; Whether the group matched.
[all …]
/openbsd/gnu/usr.bin/cvs/lib/
H A Dfnmatch.c142 goto matched;
151 matched:;
/openbsd/gnu/lib/libiberty/src/
H A Dfnmatch.c175 goto matched; in fnmatch()
184 matched:; in fnmatch()
/openbsd/usr.sbin/authpf/
H A Dauthpf.c465 int matched; in allowed_luser() local
498 matched = 0; in allowed_luser()
515 matched++; in allowed_luser()
538 matched++; in allowed_luser()
544 matched = strcmp(pw->pw_name, buf) == 0 || in allowed_luser()
551 if (matched) { in allowed_luser()
/openbsd/sys/arch/landisk/dev/
H A Drs5c313.c411 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/gnu/usr.bin/perl/cpan/Text-Balanced/t/
H A D02_extbrk.t30 ($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 D04_extdel.t31 ($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 D08_extvar.t32 ($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/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.cpp175 InternalMmapVector<Suppression *> *matched) { in GetMatched() argument
178 matched->push_back(&suppressions_[i]); in GetMatched()

12345678910>>...14