HomeSort by relevance Sort by last modified time
    Searched refs:someGlobal (Results 1 - 4 of 4) sorted by null

  /external/clang/test/Analysis/
global-region-invalidation.c 97 extern int someGlobal;
98 if (someGlobal == 0) {
99 clang_analyzer_eval(someGlobal == 0); // expected-warning{{TRUE}}
100 clang_analyzer_eval(someGlobal == 0); // expected-warning{{TRUE}}
free.c 71 static int someGlobal[2];
73 free(someGlobal); // expected-warning {{Argument to free() is the address of the global variable 'someGlobal', which is not memory allocated by malloc()}}
new.cpp 10 int someGlobal;
18 if (someGlobal != 0)
26 // Check that the new/delete did not invalidate someGlobal;
27 clang_analyzer_eval(someGlobal == 0); // expected-warning{{TRUE}}
  /external/v8/test/webkit/fast/js/
basic-strict-mode.js 141 shouldBeTrue("'use strict'; if (0) { someGlobal = 'Shouldn\\'t be able to assign this.'; }; true;");
142 shouldThrow("'use strict'; someGlobal = 'Shouldn\\'t be able to assign this.'; ");

Completed in 179 milliseconds