Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/
Duninitialized_fill_n.pass.cpp30 struct Nasty struct
32 Nasty() : i_ ( counter_++ ) {} in Nasty() function
33 Nasty * operator &() const { return NULL; } in operator &() argument
38 int Nasty::counter_ = 0; argument
65 char pool[N*sizeof(Nasty)] = {0}; in main()
66 Nasty* bp = (Nasty*)pool; in main()
68 Nasty::counter_ = 23; in main()
69 std::uninitialized_fill_n(bp, N, Nasty()); in main()
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/
Duninitialized_fill.pass.cpp31 struct Nasty struct
33 Nasty() : i_ ( counter_++ ) {} in Nasty() function
34 Nasty * operator &() const { return NULL; } in operator &() argument
39 int Nasty::counter_ = 0; argument
64 char pool[N*sizeof(Nasty)] = {0}; in main()
65 Nasty* bp = (Nasty*)pool; in main()
67 Nasty::counter_ = 23; in main()
68 std::uninitialized_fill(bp, bp+N, Nasty()); in main()
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/
Duninitialized_copy_n.pass.cpp31 struct Nasty struct
33 Nasty() : i_ ( counter_++ ) {} in Nasty() function
34 Nasty * operator &() const { return NULL; } in operator &() argument
39 int Nasty::counter_ = 0; argument
65 char pool[sizeof(Nasty)*N] = {0}; in main()
66 Nasty * p = (Nasty *) pool; in main()
67 Nasty arr[N]; in main()
Duninitialized_copy.pass.cpp31 struct Nasty struct
33 Nasty() : i_ ( counter_++ ) {} in Nasty() argument
34 Nasty * operator &() const { return NULL; } in operator &() argument
39 int Nasty::counter_ = 0; argument
65 char pool[sizeof(Nasty)*N] = {0}; in main()
66 Nasty * p = (Nasty *) pool; in main()
67 Nasty arr[N]; in main()
/external/v8/test/mjsunit/
Dstack-traces.js212 function Nasty() { } class
213 Nasty.prototype.foo = function () { throw new RangeError(); }; class
214 var n = new Nasty();