• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/netbsd-tests/lib/libc/regex/

Lines Matching refs:repetition

117 		{ "((..)|(.)){2}", "aaa" },		// repetition.dat
118 { "((..)|(.)){3}", "aaa" }, // repetition.dat
119 { "((..)|(.)){3}", "aaaa" }, // repetition.dat
120 { "((..)|(.)){3}", "aaaaa" }, // repetition.dat
121 { "X(.?){0,}Y", "X1234567Y" }, // repetition.dat
122 { "X(.?){1,}Y", "X1234567Y" }, // repetition.dat
123 { "X(.?){2,}Y", "X1234567Y" }, // repetition.dat
124 { "X(.?){3,}Y", "X1234567Y" }, // repetition.dat
125 { "X(.?){4,}Y", "X1234567Y" }, // repetition.dat
126 { "X(.?){5,}Y", "X1234567Y" }, // repetition.dat
127 { "X(.?){6,}Y", "X1234567Y" }, // repetition.dat
128 { "X(.?){7,}Y", "X1234567Y" }, // repetition.dat
129 { "X(.?){0,8}Y", "X1234567Y" }, // repetition.dat
130 { "X(.?){1,8}Y", "X1234567Y" }, // repetition.dat
131 { "X(.?){2,8}Y", "X1234567Y" }, // repetition.dat
132 { "X(.?){3,8}Y", "X1234567Y" }, // repetition.dat
133 { "X(.?){4,8}Y", "X1234567Y" }, // repetition.dat
134 { "X(.?){5,8}Y", "X1234567Y" }, // repetition.dat
135 { "X(.?){6,8}Y", "X1234567Y" }, // repetition.dat
136 { "X(.?){7,8}Y", "X1234567Y" }, // repetition.dat
137 { "(a|ab|c|bcd){0,}(d*)", "ababcd" }, // repetition.dat
138 { "(a|ab|c|bcd){1,}(d*)", "ababcd" }, // repetition.dat
139 { "(a|ab|c|bcd){2,}(d*)", "ababcd" }, // repetition.dat
140 { "(a|ab|c|bcd){3,}(d*)", "ababcd" }, // repetition.dat
141 { "(a|ab|c|bcd){1,10}(d*)", "ababcd" }, // repetition.dat
142 { "(a|ab|c|bcd){2,10}(d*)", "ababcd" }, // repetition.dat
143 { "(a|ab|c|bcd){3,10}(d*)", "ababcd" }, // repetition.dat
144 { "(a|ab|c|bcd)*(d*)", "ababcd" }, // repetition.dat
145 { "(a|ab|c|bcd)+(d*)", "ababcd" }, // repetition.dat
146 { "(ab|a|c|bcd){0,}(d*)", "ababcd" }, // repetition.dat
147 { "(ab|a|c|bcd){1,}(d*)", "ababcd" }, // repetition.dat
148 { "(ab|a|c|bcd){2,}(d*)", "ababcd" }, // repetition.dat
149 { "(ab|a|c|bcd){3,}(d*)", "ababcd" }, // repetition.dat
150 { "(ab|a|c|bcd){1,10}(d*)", "ababcd" }, // repetition.dat
151 { "(ab|a|c|bcd){2,10}(d*)", "ababcd" }, // repetition.dat
152 { "(ab|a|c|bcd){3,10}(d*)", "ababcd" }, // repetition.dat
153 { "(ab|a|c|bcd)*(d*)", "ababcd" }, // repetition.dat
154 { "(ab|a|c|bcd)+(d*)", "ababcd" }, // repetition.dat
162 { "((..)|(.))*", "aa" }, // repetition.dat
163 { "((..)|(.))*", "aaa" }, // repetition.dat
164 { "((..)|(.))*", "aaaaa" }, // repetition.dat
165 { "X(.?){7,}Y", "X1234567Y" }, // repetition.dat
608 ATF_TC(repetition);
609 ATF_TC_HEAD(repetition, tc)
612 "repetition");
614 ATF_TC_BODY(repetition, tc)
616 att_test(tc, "repetition");
628 ATF_TP_ADD_TC(tp, repetition);