Home
last modified time | relevance | path

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

/third_party/python/Lib/logging/
Dhandlers.py235 self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}(\.\w+)?$"
239 self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}(\.\w+)?$"
243 self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}(\.\w+)?$"
247 self.extMatch = r"^\d{4}-\d{2}-\d{2}(\.\w+)?$"
256 self.extMatch = r"^\d{4}-\d{2}-\d{2}(\.\w+)?$"
260 self.extMatch = re.compile(self.extMatch, re.ASCII)
391 if self.extMatch.match(part):
/third_party/lz4/lib/
Dlz4.c1860 const BYTE* extMatch = dictEnd - (offset - (size_t)(op-prefixStart)); in LZ4_decompress_unsafe_generic() local
1861 size_t const extml = (size_t)(dictEnd - extMatch); in LZ4_decompress_unsafe_generic()
1864 LZ4_memmove(op, extMatch, ml); in LZ4_decompress_unsafe_generic()
1869 LZ4_memmove(op, extMatch, extml); in LZ4_decompress_unsafe_generic()