Home
last modified time | relevance | path

Searched refs:repeat (Results 1 – 25 of 89) sorted by relevance

1234

/minix3/tests/lib/libc/regex/data/att/
H A Dcategorization.dat29 |B a\(b\)*\1 abab (0,2)(1,2) # BUG=repeat-any
38 |B a\(b\)*\1 abab (0,2)(1,2) BUG=repeat-any
39 ; BUG=repeat-any-UNKNOWN
42 |E (a*)* ax (0,1)(0,1) BUG=repeat-null-unknown
43 |E (a*)* a (0,1)(1,1) BUG=repeat-null
44 ; BUG=repeat-null-UNKNOWN
47 |E (aba|a*b)* ababa (0,5)(3,4) BUG=repeat-short
49 ; BUG=repeat-short-UNKNOWN
52 |E (a(b)?)+ aba (0,3)(2,3)(1,2) BUG=repeat-artifact
53 ; BUG=repeat-artifact-UNKNOWN
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/CodeGen/PowerPC/
H A Dppc-vaarg-agg.ll9 br i1 undef, label %repeat, label %maxlen_reached
11 repeat: ; preds = %entry
20 sw.bb72: ; preds = %repeat
23 sw.bb309: ; preds = %repeat
26 sw.bb313: ; preds = %repeat
29 sw.bb321: ; preds = %repeat
32 sw.bb323: ; preds = %repeat
36 sw.bb326: ; preds = %repeat
/minix3/external/bsd/bind/dist/unit/atf-src/atf-c++/detail/
H A Dui.cpp81 const bool repeat, in format_paragraph() argument
90 if (first || repeat) in format_paragraph()
106 if (repeat) in format_paragraph()
143 bool repeat, size_t col) in format_text_with_tag() argument
157 repeat, col); in format_text_with_tag()
159 if (repeat) in format_text_with_tag()
H A Dui_test.cpp45 bool repeat; member
372 << (t->repeat ? "repeat" : "no repeat") << "', col " in run_tests()
378 t->repeat, t->col); in run_tests()
/minix3/external/bsd/atf/dist/tools/
H A Dui.cpp80 const bool repeat, in format_paragraph() argument
89 if (first || repeat) in format_paragraph()
105 if (repeat) in format_paragraph()
142 bool repeat, size_t col) in format_text_with_tag() argument
156 repeat, col); in format_text_with_tag()
158 if (repeat) in format_text_with_tag()
H A Dui_test.cpp45 bool repeat; member
372 << (t->repeat ? "repeat" : "no repeat") << "', col " in run_tests()
378 t->repeat, t->col); in run_tests()
/minix3/games/snake/snake/
H A Dsnake.c262 int repeat = 1; in mainloop() local
272 repeat = c - '0'; in mainloop()
274 repeat = 10 * repeat + (c - '0'); in mainloop()
277 repeat = 1; in mainloop()
308 repeat = you.col; in mainloop()
313 repeat = you.col - money.col; in mainloop()
317 repeat = you.line; in mainloop()
322 repeat = you.line - money.line; in mainloop()
326 repeat = ccnt - 1 - you.col; in mainloop()
331 repeat = money.col - you.col; in mainloop()
[all …]
/minix3/external/bsd/llvm/dist/clang/docs/tools/
H A Dmanpage.css197 background-repeat: no-repeat;
223 background: #f0f5fa url(/i/corner-leftline.gif) repeat-y;
227 background: #f0f5fa url(/i/corner-rightline.gif) repeat-y;
231 background: #f0f5fa url(/i/corner-topline.gif) repeat-x;
235 background: #f0f5fa url(/i/corner-botline.gif) repeat-x;
239 background: #ffffff url(/i/corner-rightline.gif) repeat-y;
243 background: #ffffff url(/i/corner-topline.gif) repeat-x;
247 background: #ffffff url(/i/corner-botline.gif) repeat-x;
255 background: #ffffff url(/i/corner-leftline.gif) repeat-y;
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dblocks.cpp25 int repeat(int value, int (^block)(int), unsigned n) {
36 return repeat(1, ^(int v) { return v * base; }, n); in calculate()
/minix3/external/bsd/llvm/dist/llvm/utils/
H A Dshuffle_fuzz.py106 for _ in itertools.repeat(None, width)]
107 for _ in itertools.repeat(None, args.max_shuffle_height - i)]
178 s += ''.join(['\\00' for _ in itertools.repeat(None, 128 - len(s) + 2)])
/minix3/external/mit/lua/dist/doc/
H A Dlua.css101 background-repeat: no-repeat ;
/minix3/external/bsd/nvi/docs/
H A Dhelp4 h - cursor left w - move forward a "word" n - repeat the last search
55 & repeat substitution
62 . repeat the last command
66 ; repeat last F, f, T or t search
112 n repeat last search
132 &: repeat the last subsitution
/minix3/external/bsd/kyua-cli/dist/utils/cmdline/
H A Dui.cpp187 const bool repeat) in out_tag_wrap() argument
195 if (repeat || iter == lines.begin()) in out_tag_wrap()
/minix3/external/bsd/llvm/dist/llvm/test/MC/AsmParser/
H A Ddirective_fill.s63 # CHECK-WARNINGS: '.fill' directive with negative repeat count has no effect
/minix3/usr.bin/units/
H A Dunits.c417 int repeat = 1; in addunit() local
421 repeat = item[strlen(item) - 1] - '0'; in addunit()
424 for (; repeat; repeat--) in addunit()
/minix3/external/bsd/flex/dist/examples/manual/
H A Dpascal.lex80 repeat return(REPEAT);
/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A Dregcomp.c94 static void repeat(struct parse *, sopno, int, int);
460 repeat(p, pos, count, count2); in p_ere_exp()
631 repeat(p, pos, count, count2); in p_simp_re()
983 repeat(struct parse *p, in repeat() function
1009 repeat(p, start+1, 1, to); in repeat()
1029 repeat(p, copy, 1, to-1); in repeat()
1037 repeat(p, copy, from-1, to-1); in repeat()
1041 repeat(p, copy, from-1, to); in repeat()
/minix3/external/bsd/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc296 bool escaped, char c, char repeat, const char* regex, in MatchRepetitionAndRegexAtHead() argument
298 const size_t min_count = (repeat == '+') ? 1 : 0; in MatchRepetitionAndRegexAtHead()
299 const size_t max_count = (repeat == '?') ? 1 : in MatchRepetitionAndRegexAtHead()
H A Dgtest-internal-inl.h166 repeat_ = GTEST_FLAG(repeat); in GTestFlagSaver()
187 GTEST_FLAG(repeat) = repeat_; in ~GTestFlagSaver()
923 bool escaped, char ch, char repeat, const char* regex, const char* str);
/minix3/lib/libc/regex/
H A Dregcomp.c144 static void repeat(struct parse *p, sopno start, int from, int to, size_t reclimit);
522 repeat(p, pos, count, count2, 0); in p_ere_exp()
715 repeat(p, pos, count, count2, 0); in p_simp_re()
1131 repeat( in repeat() function
1165 repeat(p, start+1, 1, to, reclimit); in repeat()
1185 repeat(p, copy, 1, to-1, reclimit); in repeat()
1193 repeat(p, copy, from-1, to-1, reclimit); in repeat()
1197 repeat(p, copy, from-1, to, reclimit); in repeat()
/minix3/external/bsd/nvi/dist/regex/
H A Dregcomp.c105 static void repeat __P((struct parse *p, sopno start, int from, int to, size_t reclimit));
481 repeat(p, pos, count, count2, 0); in p_ere_exp()
672 repeat(p, pos, count, count2, reclimit); in p_simp_re()
1038 repeat(struct parse *p, sopno start, int from, int to, size_t reclimit) in repeat() function
1069 repeat(p, start+1, 1, to, reclimit); in repeat()
1089 repeat(p, copy, 1, to-1, reclimit); in repeat()
1097 repeat(p, copy, from-1, to-1, reclimit); in repeat()
1101 repeat(p, copy, from-1, to, reclimit); in repeat()
/minix3/external/bsd/bzip2/dist/
H A Dbzip.css28 background:#ffffff url("/images/hr_blue.png") repeat-x; }
/minix3/external/bsd/llvm/dist/clang/utils/
H A Dclang-completion-mode.el63 :type '(repeat (string :tag "Argument" ""))
H A DFuzzTest328 itertools.repeat(tg.num_tests, opts.max_tests))
330 it = itertools.imap(random.randrange, itertools.repeat(tg.num_tests))
/minix3/minix/drivers/usb/usb_storage/
H A Dusb_storage.c600 int repeat; in mass_storage_test() local
611 for (repeat = 0; repeat < MAX_TEST_RETRIES; repeat++) { in mass_storage_test()

1234