Lines Matching +full:- +full:m
11 -p path/to/zephyr-based-project
14 SPDX-License-Identifier: Apache-2.0
32 m = re.match(r"^SYS_INIT\(([A-Za-z0-9_]+),.*", line)
33 if m:
34 sys_inits.append(m.group(1))
37 m = re.match(r"^SYS_INIT_NAMED\([A-Za-z0-9_]+,\s?([A-Za-z0-9_]+).*", line)
38 if m:
39 sys_inits.append(m.group(1))
50 m = re.match(
56 if m:
57 b, sys_init, arg, e = m.groups()
61 m = re.match(r"^\s?ARG_UNUSED\(" + arg + r"\);.*$", line)
62 if m:
68 m = re.match(r"^\s?\n$", line)
69 if not m:
85 "-p", "--project", type=Path, required=True, help="Zephyr-based project path"
87 parser.add_argument("--dry-run", action="store_true", help="Dry run")