Home
last modified time | relevance | path

Searched refs:_regexp_compile_cache (Results 1 – 1 of 1) sorted by relevance

/art/tools/
Dcpplint.py351 _regexp_compile_cache = {} variable
418 if not pattern in _regexp_compile_cache:
419 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
420 return _regexp_compile_cache[pattern].match(s)
425 if not pattern in _regexp_compile_cache:
426 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
427 return _regexp_compile_cache[pattern].search(s)