Home
last modified time | relevance | path

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

/external/libvpx/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)
/external/libaom/libaom/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)
/external/compiler-rt/lib/sanitizer_common/scripts/
Dcpplint.py347 _regexp_compile_cache = {} variable
414 if not pattern in _regexp_compile_cache:
415 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
416 return _regexp_compile_cache[pattern].match(s)
421 if not pattern in _regexp_compile_cache:
422 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
423 return _regexp_compile_cache[pattern].search(s)
/external/google-styleguide/cpplint/
Dcpplint.py538 _regexp_compile_cache = {} variable
656 if pattern not in _regexp_compile_cache:
657 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
658 return _regexp_compile_cache[pattern].match(s)
674 if pattern not in _regexp_compile_cache:
675 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
676 return _regexp_compile_cache[pattern].sub(rep, s)
681 if pattern not in _regexp_compile_cache:
682 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
683 return _regexp_compile_cache[pattern].search(s)