Lines Matching refs:_compile
191 return _compile(pattern, flags).match(string)
196 return _compile(pattern, flags).fullmatch(string)
201 return _compile(pattern, flags).search(string)
210 return _compile(pattern, flags).sub(repl, string, count)
221 return _compile(pattern, flags).subn(repl, string, count)
231 return _compile(pattern, flags).split(string, maxsplit)
241 return _compile(pattern, flags).findall(string)
248 return _compile(pattern, flags).finditer(string)
252 return _compile(pattern, flags)
261 return _compile(pattern, flags|T)
289 def _compile(pattern, flags): function
340 return _compile, (p.pattern, p.flags)
342 copyreg.pickle(Pattern, _pickle, _compile)