Home | History | Annotate | Download | only in valgrind

Lines Matching refs:ignore_case

76 def GlobToRegex(glob_pattern, ignore_case=False):
84 elif ignore_case and char.isalpha():
415 regex += '(%s\!.*\n)+' % GlobToRegex(mod, ignore_case=True)
418 regex += '%s\!%s\n' % (GlobToRegex(mod, ignore_case=True),
419 GlobToRegex(func, ignore_case=False))