/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
H A D | match.h | 42 /* match.cc. */ 44 /* Generic match subroutines. */ 45 match gfc_match_special_char (gfc_char_t *); 46 match gfc_match_space (void); 47 match gfc_match_eos (void); 48 match gfc_match_small_literal_int (int *, int *); 49 match gfc_match_st_label (gfc_st_label **); 50 match gfc_match_small_int (int *); 51 match gfc_match_name (char *); 52 match gfc_match_symbol (gfc_symbol **, int); [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/ |
H A D | match.h | 42 /* match.c. */ 44 /* Generic match subroutines. */ 45 match gfc_match_special_char (gfc_char_t *); 46 match gfc_match_space (void); 47 match gfc_match_eos (void); 48 match gfc_match_small_literal_int (int *, int *); 49 match gfc_match_st_label (gfc_st_label **); 50 match gfc_match_label (void); 51 match gfc_match_small_int (int *); 52 match gfc_match_small_int_expr (int *, gfc_expr **); [all …]
|
/netbsd-src/external/bsd/tmux/dist/ |
H A D | mdoc2man.awk | 77 if(match(words[w],"^Li|Pf$")) { 79 } else if(match(words[w],"^Xo$")) { 82 if(length(line)&&!(match(line," $")||prenl)) 84 } else if(match(words[w],"^Xc$")) { 90 } else if(match(words[w],"^Bd$")) { 92 if(match(words[w+1],"-literal")) { 97 } else if(match(words[w],"^Ed$")) { 100 } else if(match(words[w],"^Ns$")) { 105 } else if(match(words[w],"^No$")) { 109 } else if(match(words[w],"^Dq$")) { [all …]
|
/netbsd-src/external/mpl/bind/dist/tests/dns/ |
H A D | geoip_test.c | 208 bool match; in ISC_RUN_TEST_IMPL() 216 match = do_lookup_string("10.53.0.1", dns_geoip_country_code, "AU"); in ISC_RUN_TEST_IMPL() 217 assert_true(match); in ISC_RUN_TEST_IMPL() 219 match = do_lookup_string("10.53.0.1", dns_geoip_country_name, in ISC_RUN_TEST_IMPL() 221 assert_true(match); in ISC_RUN_TEST_IMPL() 223 match = do_lookup_string("192.0.2.128", dns_geoip_country_code, "O1"); in ISC_RUN_TEST_IMPL() 224 assert_true(match); in ISC_RUN_TEST_IMPL() 226 match = do_lookup_string("192.0.2.128", dns_geoip_country_name, in ISC_RUN_TEST_IMPL() 228 assert_true(match); in ISC_RUN_TEST_IMPL() 233 bool match; in ISC_RUN_TEST_IMPL() 209 bool match; ISC_RUN_TEST_IMPL() local 234 bool match; ISC_RUN_TEST_IMPL() local 253 bool match; ISC_RUN_TEST_IMPL() local 290 bool match; ISC_RUN_TEST_IMPL() local 330 bool match; ISC_RUN_TEST_IMPL() local 344 bool match; ISC_RUN_TEST_IMPL() local 359 bool match; ISC_RUN_TEST_IMPL() local 374 bool match; ISC_RUN_TEST_IMPL() local [all...] |
/netbsd-src/external/bsd/unbound/dist/testcode/ |
H A D | testpkts.h | 41 ; first give MATCH lines, that say what queries are matched 43 ; 'opcode' makes the query match the opcode from the reply; 45 ; 'qtype' makes the query match the qtype from the reply. 46 ; 'qname' makes the query match the qname from the reply. 47 ; 'subdomain' makes the query match subdomains of qname from the reply. 48 ; 'serial=1023' makes the query match if ixfr serial is 1023. 49 ; 'all' has to match header byte for byte and all rrs in packet. 50 ; 'all_noedns' has to match header byte for byte and all rrs in packet; 53 ; 'DO' will match only queries with DO bit set. 55 ; 'rcode' makes the query match the rcode from the reply. [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/ |
H A D | extract_symbols.py | 39 match = re.match("^.+SECT.+External\s+\|\s+(\S+).*$", line) 40 if match: 41 yield match.group(1) 56 match = re.match("^(\S+)\s+[BDGRSTVW]\s+\S+\s+\S+$", line) 57 if match: 58 yield match.group(1) 71 match = re.search('Name: (\S+)', line) 72 if match: 73 name = match.group(1) 74 match = re.search('Section: (\S+)', line) [all …]
|
H A D | schedcover.py | 71 match = re_sched_default.match(line) 72 if match: add(match.group(1), "default", match.group(2)) 73 match = re_sched_no_default.match(line) 74 if match: add(match.group(1), "default") 75 match = re_sched_spec.match(line) 76 if match: add(match.group(2), match.group(1), match.group(3)) 77 match = re_sched_no_spec.match(line) 78 if match: add(match.group(1), match.group(2)) 79 match = re_sched_itin.match(line) 80 if match: add(match.group(1), "itinerary", match.group(2))
|
/netbsd-src/external/bsd/kyua-atf-compat/dist/ |
H A D | atf-run_test.sh | 46 -o match:'program1:pass -> passed' \ 47 -o match:'program1:skip -> skipped' \ 48 -o match:'subdir/program2:skip -> skipped' \ 49 -o match:'Committed action 1' \ 69 -o match:'program1:pass -> passed' \ 70 -o match:'program1:skip -> skipped' \ 71 -o match:'subdir/nested/program2:fail -> failed' \ 72 -o match:'subdir/nested/program2:skip -> skipped' \ 73 -o match:'Committed action 1' \ 88 -o match:'program1:pass -> passed' \ [all …]
|
/netbsd-src/tests/bin/sh/ |
H A D | t_option.sh | 129 atf_check -s exit:0 -o match:VAR=value -e empty ${TEST_SH} -ce \ 210 atf_check -s exit:0 -o match:I_am_OK -e empty \ 215 atf_check -s not-exit:0 -o match:I_am -o not-match:Broken -e empty \ 220 atf_check -s not-exit:0 -o match:I_am -o not-match:Broken -e empty \ 293 atf_check -s exit:0 -o match:first -o not-match:second -e empty \ 295 atf_check -s exit:0 -o match:first -o not-match:third -e empty \ 362 atf_check -s exit:0 -o match:OK -e empty ${TEST_SH} -ce \ 365 atf_check -s exit:0 -o match:OK -e empty ${TEST_SH} -cue \ 369 atf_check -s exit:0 -o match:OK -e empty ${TEST_SH} -ce \ 372 atf_check -s exit:0 -o match:OKOK -e empty ${TEST_SH} -ce \ [all …]
|
/netbsd-src/external/gpl2/texinfo/dist/util/ |
H A D | texinfo.xsl | 9 <xsl:template match="/"> 19 <xsl:template match="TEXINFO"> 24 <xsl:template match="TEXINFO/SETFILENAME"> 27 <xsl:template match="TEXINFO/SETTITLE" mode="head"> 31 <xsl:template match="TEXINFO/SETTITLE"> 36 <xsl:template match="TEXINFO/DIRCATEGORY"> 39 <xsl:template match="//PARA"> 43 <xsl:template match="//EMPH"> 48 <xsl:template match="TEXINFO/NODE"> 63 <xsl:template match="TEXINFO/NODE/NODENAME" mode="select"> [all …]
|
/netbsd-src/external/bsd/atf/dist/tools/ |
H A D | atf-run_test.sh | 132 atf_check -s eq:0 -o ignore -e not-match:'WARNING.*atf-run' atf-run helper 158 -o match:'1st: sw common' \ 159 -o match:'2nd: sw common' \ 160 -o match:'3rd: sw common' \ 161 -o match:'4th: sw common' \ 172 -o match:'1st: sw atf' \ 173 -o match:'2nd: sw common' \ 174 -o match:'3rd: sw common' \ 175 -o match:'4th: sw common' \ 186 -o match:'1st: sw atf' \ [all …]
|
/netbsd-src/tests/net/if/ |
H A D | t_ifconfig.sh | 110 atf_check -s exit:0 -o match:'inet 127.0.0.1' rump.ifconfig lo0 inet 111 atf_check -s exit:0 -o match:'inet localhost' rump.ifconfig -N lo0 inet 112 atf_check -s exit:0 -o match:'inet6 ::1' rump.ifconfig lo0 inet6 113 atf_check -s exit:0 -o match:'inet6 localhost' rump.ifconfig -N lo0 inet6 114 atf_check -s not-exit:0 -e match:'not supported' rump.ifconfig lo0 atalk 115 atf_check -s not-exit:0 -e match:'not supported' rump.ifconfig -N lo0 atalk 126 atf_check -s exit:0 -o match:'pltime' rump.ifconfig -L shmif0 127 atf_check -s exit:0 -o match:'vltime' rump.ifconfig -L shmif0 131 atf_check -s exit:0 -o match:'localhost' rump.ifconfig -N lo0 132 atf_check -s exit:0 -o match:'0 packets' rump.ifconfig -v lo0 [all …]
|
H A D | t_ifconf.sh | 51 atf_check -s exit:0 -o match:'^2$' "$ifconf" total 52 atf_check -s exit:0 -o match:'lo0' "$ifconf" list 56 atf_check -s exit:0 -o match:'^3$' "$ifconf" total 57 atf_check -s exit:0 -o match:'shmif0' "$ifconf" list 61 atf_check -s exit:0 -o match:'^4$' "$ifconf" total 62 atf_check -s exit:0 -o match:'shmif1' "$ifconf" list 67 atf_check -s exit:0 -o match:'^5$' "$ifconf" total 70 atf_check -s exit:0 -o match:1 -x "$ifconf list 1 | wc -l" 71 atf_check -s exit:0 -o match:2 -x "$ifconf list 2 | wc -l" 72 atf_check -s exit:0 -o match:3 -x "$ifconf list 3 | wc -l" [all …]
|
/netbsd-src/external/bsd/unbound/dist/testdata/ |
H A D | iter_dname_insec.rpl | 19 MATCH qname qtype opcode 31 MATCH qname qtype opcode 41 MATCH qname qtype opcode 51 MATCH qname qtype opcode 60 MATCH subdomain opcode 72 MATCH subdomain opcode 84 MATCH subdomain opcode 96 MATCH opcode subdomain 108 MATCH opcode subdomain 120 MATCH qname qtype opcode [all …]
|
H A D | rpz_respip.rpl | 60 MATCH opcode qtype qname 72 MATCH opcode qtype qname 82 MATCH opcode qtype qname 92 MATCH opcode qtype qname 102 MATCH opcode qtype qname 112 MATCH opcode qtype qname 122 MATCH opcode qtype qname 132 MATCH opcode qtype qname 142 MATCH opcode qtype qname 152 MATCH opcode qtype qname [all …]
|
H A D | net_signed_servfail.rpl | 25 MATCH opcode qtype qname 39 MATCH opcode qtype qname 50 MATCH opcode subdomain 68 MATCH opcode qtype qname 82 MATCH opcode qtype qname 93 MATCH opcode qtype qname 104 MATCH opcode subdomain 122 MATCH opcode qtype qname 136 MATCH opcode qtype qname 147 MATCH opcode qtype qname [all …]
|
H A D | iter_dname_yx.rpl | 17 MATCH qname qtype opcode 29 MATCH qname qtype opcode 39 MATCH qname qtype opcode 49 MATCH qname qtype opcode 58 MATCH subdomain opcode 70 MATCH subdomain opcode 82 MATCH subdomain opcode 94 MATCH opcode subdomain 106 MATCH opcode subdomain 118 MATCH qname qtype opcode [all …]
|
H A D | rpz_ixfr.rpl | 45 MATCH opcode qname qtype 57 MATCH opcode qname qtype 67 MATCH opcode qname qtype 77 MATCH opcode qname qtype 87 MATCH opcode qname qtype 97 MATCH opcode qname qtype 107 MATCH opcode qname qtype 117 MATCH opcode subdomain 130 MATCH opcode subdomain 143 MATCH opcode qname qtype [all …]
|
H A D | ttl_msg.rpl | 19 MATCH opcode qtype qname 31 MATCH opcode subdomain 43 MATCH opcode qtype qname 53 MATCH opcode qtype qname 63 MATCH opcode qtype qname 73 MATCH opcode qtype qname 88 MATCH opcode qtype qname 100 MATCH opcode subdomain 112 MATCH opcode subdomain 130 MATCH opcode qtype qname [all …]
|
H A D | iter_pcnamech.rpl | 19 MATCH opcode qtype qname 31 MATCH opcode subdomain 43 MATCH opcode subdomain 60 MATCH opcode qtype qname 72 MATCH opcode subdomain 88 MATCH opcode qtype qname 100 MATCH opcode subdomain 117 MATCH opcode qtype qname 129 MATCH opcode qtype qname 141 MATCH opcode qtype qname [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 1 //===- PatternMatch.h - Match on the LLVM IR --------------------*- C++ -*-===// 18 // if (match(Exp, m_Or(m_And(m_Value(X), m_ConstantInt(C1)), 49 template <typename Val, typename Pattern> bool match(Val *V, const Pattern &P) { in match() function 50 return const_cast<Pattern &>(P).match(V); in match() 53 template <typename Pattern> bool match(ArrayRef<int> Mask, const Pattern &P) { in match() function 54 return const_cast<Pattern &>(P).match(Mask); in match() 62 template <typename OpTy> bool match(OpTy *V) { in match() function 63 return V->hasOneUse() && SubPattern.match(V); in match() 72 template <typename ITy> bool match(ITy *V) { return isa<Class>(V); } in match() function 75 /// Match an arbitrary value and ignore it. [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/vim/syntax/ |
H A D | llvm.vim | 12 syn case match 20 syn match llvmType /\<i\d\+\>/ 210 syn match llvmNoName /[%@!]\d\+\>/ 211 syn match llvmNumber /-\?\<\d\+\>/ 212 syn match llvmFloat /-\?\<\d\+\.\d*\(e[+-]\d\+\)\?\>/ 213 syn match llvmFloat /\<0x\x\+\>/ 216 syn match llvmComment /;.*$/ 218 syn match llvmLabel /[-a-zA-Z$._][-a-zA-Z$._0-9]*:/ 219 syn match llvmIdentifier /[%@][-a-zA-Z$._][-a-zA-Z$._0-9]*/ 222 syn match llvmIdentifier /![-a-zA-Z$._][-a-zA-Z$._0-9]*\ze\s*$/ [all …]
|
/netbsd-src/external/gpl2/lvm2/dist/daemons/cmirrord/ |
H A D | cluster.c | 214 struct clog_request *match, *n; in get_matching_rq() local 216 dm_list_iterate_items_safe(match, n, l) in get_matching_rq() 217 if (match->u_rq.seq == rq->u_rq.seq) { in get_matching_rq() 218 dm_list_del(&match->list); in get_matching_rq() 219 return match; in get_matching_rq() 292 /* Unable to find match for response */ in handle_cluster_response() 294 LOG_ERROR("[%s] No match for cluster response: %s:%u", in handle_cluster_response() 334 struct clog_cpg *match; in find_clog_cpg() local 336 dm_list_iterate_items(match, &clog_cpg_list) in find_clog_cpg() 337 if (match->handle == handle) in find_clog_cpg() [all …]
|
/netbsd-src/external/bsd/ipf/dist/man/ |
H A D | ipmon.5 | 18 .B match 25 attempts to match every line with every log record received. It does 29 match or only use the 31 match. 34 .B match 39 match { type = ipf; } do { save("file:///var/log/ipf-log"); }; 40 match { type = nat; } do { syslog; }; 41 match { type = state; } do { execute("/bin/mail root"); }; 46 match { \fImatch-it ,match-it, ...\fP } do { \fIaction, action, ...\fP}; 62 This option is used to match on log records generated for packets going [all …]
|
/netbsd-src/external/bsd/atf/dist/atf-sh/ |
H A D | atf-check_test.sh | 140 atf_fail "not-signal:kill did not match kill -1" 233 atf_set "descr" "Tests for the -o option using the 'match:' argument" 237 h_pass "printf no-newline" -o "match:^no-newline" 238 h_pass "echo line1; echo foo bar" -o "match:^foo" 239 h_pass "echo foo bar" -o "match:o b" 240 h_fail "echo foo bar" -o "match:baz" 241 h_fail "echo foo bar" -o "match:^bar" 253 cmp -s out exp || atf_fail "Saved output does not match expected results" 263 h_pass "echo foo bar" -o match:foo -o match:bar 264 h_pass "echo foo; echo bar" -o match:foo -o match:bar [all …]
|