OLD | NEW |
---|---|
(Empty) | |
1 #ifndef ToolUtils_DEFINED | |
2 #define ToolUtils_DEFINED | |
3 | |
4 #include "SkTDArray.h" | |
5 | |
6 /* Takes a list of the form [~][^]match[$] | |
7 ~ causes a matching test to always be skipped | |
8 ^ requires the start of the test to match | |
9 $ requires the end of the test to match | |
10 ^ and $ requires an exact match | |
11 If a test does not match any list entry, it is skipped unless some list entry starts with ~ | |
12 */ | |
13 bool shouldSkip(const SkTDArray<const char*>& strings, const char* name); | |
reed1
2013/07/23 14:01:40
1. This file name is slightly odd, in that it has
| |
14 | |
15 #endif | |
OLD | NEW |