• Home
  • Raw
  • Download

Lines Matching refs:L

26           , L("foobar")  in get_test_cases()
27 , regex_type(as_xpr(L("foo")) >> /*This is a comment[*/ L("bar")) in get_test_cases()
28 , backrefs(L("foobar"), nilbr) in get_test_cases()
33 , L("foobar") in get_test_cases()
34 , regex_type(bos >> L("foobar") >> eos) in get_test_cases()
35 , backrefs(L("foobar"), nilbr) in get_test_cases()
40 , L("foobar") in get_test_cases()
41 , regex_type(bos >> L('f') >> *as_xpr(L('o'))) in get_test_cases()
42 , backrefs(L("foo"), nilbr) in get_test_cases()
47 , L("foobar") in get_test_cases()
48 , regex_type(bos >> L('f') >> *as_xpr(L('\157'))) in get_test_cases()
49 , backrefs(L("foo"), nilbr) in get_test_cases()
54 , L("foo bar") in get_test_cases()
55 , regex_type(bos >> L("foo bar") >> eos) in get_test_cases()
56 , backrefs(L("foo bar"), nilbr) in get_test_cases()
61 , L("foo bar") in get_test_cases()
62 , regex_type(bos >> L("foo") >> set[L(' ')] >> L("bar") >> eos) in get_test_cases()
63 , backrefs(L("foo bar"), nilbr) in get_test_cases()
68 , L("foo bar") in get_test_cases()
69 , regex_type(bos >> (L("foo") >> set[L(' ')] >> L("bar")) >> eos /*This is a comment*/) in get_test_cases()
70 , backrefs(L("foo bar"), nilbr) in get_test_cases()
75 , L("foo bar") in get_test_cases()
76 , regex_type(bos >> L("foo") >> set[L(' ')] >> L("bar") /*This is a comment*/) in get_test_cases()
77 , backrefs(L("foo bar"), nilbr) in get_test_cases()
82 , L("foo bar#Thisisnotacomment") in get_test_cases()
83 , regex_type(bos >> L("foo") >> set[L(' ')] >> L("bar#Thisisnotacomment")) in get_test_cases()
84 , backrefs(L("foo bar#Thisisnotacomment"), nilbr) in get_test_cases()
89 , L("f oo b ar") in get_test_cases()
90 , regex_type(bos >> L("f oo b ar")) in get_test_cases()
91 , backrefs(L("f oo b ar"), nilbr) in get_test_cases()
96 , L("a--") in get_test_cases()
97 , regex_type(bos >> *(s1= optional(L('a'))) >> eos) in get_test_cases()
103 , L("a--") in get_test_cases()
104 , regex_type(bos >> -*(s1= optional(L('a'))) >> eos) in get_test_cases()
110 , L("bc") in get_test_cases()
111 , regex_type(bos >> repeat<2>(s1= optional(L('b'))) >> L("bc") >> eos) in get_test_cases()
112 , backrefs(L("bc"), L(""), nilbr) in get_test_cases()
117 , L("bbc") in get_test_cases()
118 , regex_type(bos >> repeat<2>(s1= optional(L('b'))) >> L("bc") >> eos) in get_test_cases()
119 , backrefs(L("bbc"), L(""), nilbr) in get_test_cases()