Home
last modified time | relevance | path

Searched refs:globalInt (Results 1 – 5 of 5) sorted by relevance

/external/clang/test/Analysis/
Dglobal_region_invalidation.mm14 const int &globalInt = 42;
18 clang_analyzer_eval(globalInt == 42); // expected-warning{{UNKNOWN}}
Didempotent-operations.c167 int globalInt = 1; variable
171 localInt /= globalInt; in false6()
/external/clang/test/CodeGen/
Dblocksignature.c19 int globalInt; variable
20 void (^global)(void) = ^{ ++globalInt; };
Dglobal-with-initialiser.c3 const int globalInt = 1; variable
/external/clang/test/CXX/temp/temp.decls/temp.friend/
Dp1.cpp269 int globalInt; variable
270 Foo<int> f = foo(&globalInt);
275 Foo<int> s(&globalInt, false); // expected-error {{calling a private constructor}} in foo()