Home
last modified time | relevance | path

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

/scripts/lib/kdoc/
A Dkdoc_parser.py19 from kdoc_re import NestedMatch, KernRe
32 doc_start = KernRe(r'^/\*\*\s*$', cache=False)
34 doc_end = KernRe(r'\*/', cache=False)
35 doc_com = KernRe(r'\s*\*\s*', cache=False)
36 doc_com_body = KernRe(r'\s*\* ?', cache=False)
80 multi_space = KernRe(r'\s\s+')
999 r = KernRe(p)
1196 r = KernRe("[-:](.*)")
1335 r = KernRe(r'^(\s+)')
1483 r = KernRe(r'([^\{]*)')
[all …]
A Dkdoc_output.py23 from kdoc_re import KernRe
29 type_constant = KernRe(r"\b``([^\`]+)``\b", cache=False)
30 type_constant2 = KernRe(r"\%([-_*\w]+)", cache=False)
31 type_func = KernRe(r"(\w+)\(\)", cache=False)
35 type_fp_param = KernRe(r"\@(\w+)\(\)", cache=False)
38 type_fp_param2 = KernRe(r"\@(\w+->\S+)\(\)", cache=False)
40 type_env = KernRe(r"(\$\w+)", cache=False)
41 type_enum = KernRe(r"\&(enum\s*([_\w]+))", cache=False)
46 type_fallback = KernRe(r"\&([_\w]+)", cache=False)
300 r = KernRe(r'^(\s*)')
[all …]
A Dkdoc_re.py17 class KernRe: class
59 return KernRe(str(self) + str(other), cache=self.cache or other.cache,

Completed in 8 milliseconds