Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
Dcpplint.py434 _regexp_compile_cache = {} variable
509 if pattern not in _regexp_compile_cache:
510 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
511 return _regexp_compile_cache[pattern].match(s)
527 if pattern not in _regexp_compile_cache:
528 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
529 return _regexp_compile_cache[pattern].sub(rep, s)
534 if pattern not in _regexp_compile_cache:
535 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
536 return _regexp_compile_cache[pattern].search(s)