Lines Matching +full:t +full:- +full:v
2 // https://gitlab.com/MISRA/MISRA-C/MISRA-C-2012/Example-Suite/-/blob/master/R_21_02.c
7 // SPDX-License-Identifier: Apache-2.0
16 identifier t, v;
18 type T;
21 struct t *v@p;
23 struct t v@p;
25 union t v@p;
27 T v@p;
29 T *v@p;
31 struct t *v@p = E;
33 struct t v@p = E;
35 union t v@p = E;
37 T v@p = E;
39 T *v@p = E;
43 v << common_case.v;
47 msg = "WARNING: Violation to rule 21.2 (Should not used a reserved identifier) - {}".format(v)
50 if v in symbols:
54 type T;
58 T f@p(...) {
63 v << function_match.f;
66 msg = "WARNING: Violation to rule 21.2 (Should not used a reserved identifier) - {}".format(v)
69 if v in symbols:
74 identifier function, v;
79 T1 function(P1, T2 *v@p, P2) {
84 v << function_parameter.v;
88 msg = "WARNING: Violation to rule 21.2 (Should not used a reserved identifier) - {}".format(v)
91 if v in symbols: