Lines Matching +full:t +full:- +full:v
2 // https://gitlab.com/MISRA/MISRA-C/MISRA-C-2012/Example-Suite/-/blob/master/R_05_07.c
7 // SPDX-License-Identifier: Apache-2.0
16 identifier t, v;
19 struct t *v@p;
21 struct t v@p;
23 union t v@p;
27 t << common_case.t;
28 v << common_case.v;
32 msg = "WARNING: Violation to rule 5.7 (Tag name should be unique) tag: {}".format(v)
33 if t == v:
37 type T;
38 identifier v;
42 T v@p;
44 T *v@p;
48 t << per_type.T;
49 v << per_type.v;
53 msg = "WARNING: Violation to rule 5.7 (Tag name should be unique) tag: {}".format(v)
54 if t == v:
59 identifier function, v;
64 T1 function(P1, T2 *v@p, P2) {
69 v << function_match.v;
70 t << function_match.T2;
74 msg = "WARNING: Violation to rule 5.7 (Tag name should be unique) tag: {}".format(v)
75 if v == t.split(" ")[-1]: