Lines Matching +full:- +full:vv
1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,debug.ExprInspection %s -verify
29 x = pn->pn_u.lexdef->pn_u.lexdef; in CloneParseTree()
50 pn->pn_u = opn->pn_u; in CloneParseTree()
51 x = pn->pn_u.name.lexdef->pn_u.name.lexdef; in CloneParseTree()
72 } // expected-warning{{leak}} in testPositive()
77 clang_analyzer_eval(uu.i == 4); // expected-warning{{TRUE}} in testCopy()
79 IntOrString vv; in testCopy() local
80 vv.i = 5; in testCopy()
81 uu = vv; in testCopy()
83 clang_analyzer_eval(uu.i == 5); // expected-warning{{UNKNOWN}} in testCopy()
90 IntOrString vv; in testInvalidation() local
92 vv.s = str; in testInvalidation()
95 uu = vv; in testInvalidation()
103 clang_analyzer_eval(uu.s[0] == 'a'); // expected-warning{{TRUE}} in testIndirectInvalidation()
106 clang_analyzer_eval(uu.s[0] == 'a'); // expected-warning{{UNKNOWN}} in testIndirectInvalidation()