Searched refs:CMatch (Results 1 – 3 of 3) sorted by relevance
| /linux/tools/lib/python/kdoc/ |
| H A D | xforms_lists.py | 8 from kdoc.c_lex import CMatch, CTokenizer 28 (CMatch("__attribute__"), ""), 29 (CMatch("__aligned"), ""), 30 (CMatch("__counted_by"), ""), 31 (CMatch("__counted_by_(le|be)"), ""), 32 (CMatch("__guarded_by"), ""), 33 (CMatch("__pt_guarded_by"), ""), 34 (CMatch("__packed"), ""), 35 (CMatch("CRYPTO_MINALIGN_ATTR"), ""), 36 (CMatch("__private"), ""), [all …]
|
| H A D | c_lex.py | 478 class CMatch: class
|
| /linux/tools/unittests/ |
| H A D | test_cmatch.py | 23 from kdoc.c_lex import CMatch 53 result = ", ".join(CMatch("__acquires").search(line)) 58 result = ", ".join(CMatch("__acquires").search(line)) 63 result = ", ".join(CMatch("__acquires").search(line)) 68 result = ", ".join(CMatch("__must_hold").search(line)) 73 result = ", ".join(CMatch("__must_hold_shared").search(line)) 78 result = ", ".join(CMatch(r"__acquires").search(line)) 83 result = ", ".join(CMatch("__acquires").search(line)) 88 result = ", ".join(CMatch(line).search(line)) 140 result = CMatch(r"__acquires").sub("REPLACED", line) [all …]
|