Home
last modified time | relevance | path

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

/external/skia/experimental/tools/
Dget_examples.py106 line_match = re.search(r'/c/@([A-Za-z0-9_-]*)', line.decode('utf-8'))
107 if not line_match:
109 name = line_match.group(1)
/external/llvm-project/openmp/runtime/src/
Dkmp_debugger.cpp245 int line_match = 0; in kmp_location_match() local
254 line_match = in kmp_location_match()
259 return (file_match && func_match && line_match); in kmp_location_match()
/external/python/cpython3/Lib/idlelib/
Dsqueezer.py133 len(line_match.group(0)) >= dangerous_line_len
134 for line_match in re.finditer(r'[^\n]+', self.s)