Pattern, Filter Manager Dialog Box
Type a pattern string to use to hide all functions in all modules, source files, or functions that match the pattern.
For module and source file filters, you must type the fully-qualified path for the module or source file, or use a leading asterisk (*) to denote any module or source file in any directory. For function patterns, PureCoverage uses the full name to match patterns, regardless of settings in the Function Name, Procedure Name, or Method Name dialog box.
Use an asterisk (*) to denote any character string; use a backslash with the asterisk (\*) if the module name, source file name, or function name itself contains an asterisk and use two backslashes (\\) if the module name, source file name, or function name contains a backslash. For example:
This pattern |
Matches any module whose name |
*.ocx |
Contains an .ocx extension, in any directory |
*SQL*.dll |
Contains SQL and contains a .dll extension, in any directory |
*foo.dll |
Contains foo.dll, in any directory |
This pattern |
Matches any source file whose name |
*\\Shared\\* |
Contains Shared in the path, in any directory |
*Drivers\\* |
Contains Drivers\ in the path, in any directory |
*Util*.cpp |
Contains Util and contains a .cpp extension, in any directory |
This pattern |
Matches any function whose name |
CWnd::* |
Begins with CWnd:: and is followed by any string |
*chr |
Ends in chr |
*str* |
Contains str |
(C) Copyright IBM Corporation 1993, 2010.