Lines Matching refs:lookahead
79 # NAME \K not permitted in lookahead
82 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?=a\K <-- HERE a)a/ at …
84 # NAME \K not permitted in lookahead (alpha)
88 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(*positive_lookahead:a\K…
90 # NAME \K not permitted in negative lookahead
93 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?!a\K <-- HERE a)a/ at …
95 # NAME \K not permitted in negative lookahead (alpha)
99 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(*negative_lookahead:a\K…
104 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?<=a\K <-- HERE a)a/ at…
110 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(*positive_lookbehind:a\…
115 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?<!a\K <-- HERE a)a/ at…
121 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(*negative_lookbehind:a\…
123 # NAME \K nesting in lookahead after lookahead
126 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?=(?=x)x\K <-- HERE )x/…
128 # NAME \K nesting in lookahead after negative lookahead
131 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?=(?!y)x\K <-- HERE )x/…
133 # NAME \K nesting in lookahead in negative lookahead
136 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?=(?!y\K <-- HERE )x)x/…
138 # NAME \K nesting in lookahead in lookahead
141 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?=(?=x\K <-- HERE )x)x/…
146 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?<=(?<=x)x\K <-- HERE )…
148 # NAME \K nesting in lookahead after lookbehind
151 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?=(?<=x)x\K <-- HERE )x…
153 # NAME \K nesting in lookbehind after lookahead
156 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?<=(?=x)x\K <-- HERE )x…
158 # NAME \K nesting in negative lookbehind after lookahead
161 \K not permitted in lookahead/lookbehind in regex; marked by <-- HERE in m/(?<!(?=x)x\K <-- HERE )x…
163 # NAME \K is permitted after the lookahead GH#18123