• 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-16 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}
63 X\x{11234}Y
64 0: X\x{11234}Y
65 1: \x{11234}Y
66 X\x{11234}YZ
67 0: X\x{11234}Y
68 1: \x{11234}Y
70 /X(\C{4})/utf
71 X\x{1234}YZ
73 X\x{11234}YZ
74 0: X\x{11234}YZ
75 1: \x{11234}YZ
76 X\x{11234}YZW
77 0: X\x{11234}YZ
78 1: \x{11234}YZ
80 /X\C*/utf
84 /X\C*?/utf
86 0: X
88 /X\C{3,5}/utf
91 X\x{1234}
93 X\x{1234}YZ
94 0: X\x{1234}YZ
95 X\x{1234}\x{512}
97 X\x{1234}\x{512}YZ
98 0: X\x{1234}\x{512}YZ
99 X\x{11234}Y
100 0: X\x{11234}Y
101 X\x{11234}YZ
102 0: X\x{11234}YZ
103 X\x{11234}\x{512}
104 0: X\x{11234}\x{512}
105 X\x{11234}\x{512}YZ
106 0: X\x{11234}\x{512}YZ
107 X\x{11234}\x{512}\x{11234}Z
108 0: X\x{11234}\x{512}\x{11234}
110 /X\C{3,5}?/utf
113 X\x{1234}
115 X\x{1234}YZ
116 0: X\x{1234}YZ
117 X\x{1234}\x{512}
119 X\x{11234}Y
120 0: X\x{11234}Y
121 X\x{11234}YZ
122 0: X\x{11234}Y
123 X\x{11234}\x{512}YZ
124 0: X\x{11234}\x{512}
125 X\x{11234}
132 0: a\x{0a}b
133 a\x{100}b
134 0: a\x{100}b
137 a\x{100}b
139 a\x{12257}b
140 0: a\x{12257}b
141 a\x{12257}\x{11234}b
152 /X(\C)(.*)/utf
153 X\x{1234}
154 0: X\x{1234}
155 1: \x{1234}
157 X\nabc
158 0: X\x{0a}abc
159 1: \x{0a}
166 \= Expect no match in 8-bit mode
167 a\x{100}b
168 0: a\x{100}b
171 \= Expect no match - tests \C at end of subject