Searched refs:globalInt (Results 1 – 10 of 10) sorted by relevance
23 extern int globalInt;31 clang_analyzer_eval(globalInt == 42); // expected-warning{{UNKNOWN}}34 if (globalInt != 42)38 clang_analyzer_eval(globalInt == 42); // expected-warning{{TRUE}}42 clang_analyzer_eval(globalInt == 42); // expected-warning{{UNKNOWN}}46 if (globalInt != 42)50 clang_analyzer_eval(globalInt == 42); // expected-warning{{TRUE}}54 clang_analyzer_eval(globalInt == 42); // expected-warning{{UNKNOWN}}59 clang_analyzer_eval(globalInt == 42); // expected-warning{{UNKNOWN}}62 globalInt = 42;[all …]
282 extern int globalInt;285 if (globalInt != 42) in strcpy_effects()291 clang_analyzer_eval(globalInt == 42); // expected-warning{{TRUE}} in strcpy_effects()
340 extern int globalInt;343 if (globalInt != 42) in strcpy_effects()349 clang_analyzer_eval(globalInt == 42); // expected-warning{{TRUE}} in strcpy_effects()
19 int globalInt; variable20 void (^global)(void) = ^{ ++globalInt; };
3 const int globalInt = 1; variable
269 int globalInt; variable270 Foo<int> f = foo(&globalInt);275 Foo<int> s(&globalInt, false); // expected-error {{calling a private constructor}} in foo()