Home
last modified time | relevance | path

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

/linux/tools/lib/python/kdoc/
H A Dxforms_lists.py8 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 Dc_lex.py478 class CMatch: class
/linux/tools/unittests/
H A Dtest_cmatch.py23 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 …]