• Home
  • Raw
  • Download

Lines Matching +full:- +full:x

2 # for DFA matching in UTF mode, so this test is not run with -dfa. The output
3 # of this test is different in 8-, 16-, and 32-bit modes. Some tests may match
16 # This should produce an error diagnostic (\C in UTF lookbehind) in 8-bit and
17 # 16-bit modes, but not in 32-bit mode.
19 /(?<=ab\Cde)X/utf
20 Failed: error 136 at offset 0: \C is not allowed in a lookbehind assertion in UTF-8 mode
25 /\C+\X \X+\C/Bx
26 ------------------------------------------------------------------
34 ------------------------------------------------------------------
36 /\C+\X \X+\C/Bx,utf
37 ------------------------------------------------------------------
45 ------------------------------------------------------------------
47 /\C\X*TӅ;
60 /X(\C{3})/utf
61 X\x{1234}
62 0: X\x{1234}
63 1: \x{1234}
64 X\x{11234}Y
65 0: X\x{f0}\x{91}\x{88}
66 1: \x{f0}\x{91}\x{88}
67 X\x{11234}YZ
68 0: X\x{f0}\x{91}\x{88}
69 1: \x{f0}\x{91}\x{88}
71 /X(\C{4})/utf
72 X\x{1234}YZ
73 0: X\x{1234}Y
74 1: \x{1234}Y
75 X\x{11234}YZ
76 0: X\x{11234}
77 1: \x{11234}
78 X\x{11234}YZW
79 0: X\x{11234}
80 1: \x{11234}
82 /X\C*/utf
86 /X\C*?/utf
88 0: X
90 /X\C{3,5}/utf
93 X\x{1234}
94 0: X\x{1234}
95 X\x{1234}YZ
96 0: X\x{1234}YZ
97 X\x{1234}\x{512}
98 0: X\x{1234}\x{512}
99 X\x{1234}\x{512}YZ
100 0: X\x{1234}\x{512}
101 X\x{11234}Y
102 0: X\x{11234}Y
103 X\x{11234}YZ
104 0: X\x{11234}Y
105 X\x{11234}\x{512}
106 0: X\x{11234}\x{d4}
107 X\x{11234}\x{512}YZ
108 0: X\x{11234}\x{d4}
109 X\x{11234}\x{512}\x{11234}Z
110 0: X\x{11234}\x{d4}
112 /X\C{3,5}?/utf
115 X\x{1234}
116 0: X\x{1234}
117 X\x{1234}YZ
118 0: X\x{1234}
119 X\x{1234}\x{512}
120 0: X\x{1234}
121 X\x{11234}Y
122 0: X\x{f0}\x{91}\x{88}
123 X\x{11234}YZ
124 0: X\x{f0}\x{91}\x{88}
125 X\x{11234}\x{512}YZ
126 0: X\x{f0}\x{91}\x{88}
127 X\x{11234}
128 0: X\x{f0}\x{91}\x{88}
134 0: a\x{0a}b
135 a\x{100}b
139 a\x{100}b
140 0: a\x{100}b
141 a\x{12257}b
143 a\x{12257}\x{11234}b
154 /X(\C)(.*)/utf
155 X\x{1234}
156 0: X\x{1234}
157 1: \x{e1}
158 2: \x{88}\x{b4}
159 X\nabc
160 0: X\x{0a}abc
161 1: \x{0a}
168 \= Expect no match in 8-bit mode
169 a\x{100}b
173 \= Expect no match - tests \C at end of subject