Searched refs:Nasty (Results 1 – 5 of 5) sorted by relevance
30 struct Nasty struct32 Nasty() : i_ ( counter_++ ) {} in Nasty() function33 Nasty * operator &() const { return NULL; } in operator &() argument38 int Nasty::counter_ = 0; argument65 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()
31 struct Nasty struct33 Nasty() : i_ ( counter_++ ) {} in Nasty() function34 Nasty * operator &() const { return NULL; } in operator &() argument39 int Nasty::counter_ = 0; argument64 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()
31 struct Nasty struct33 Nasty() : i_ ( counter_++ ) {} in Nasty() function34 Nasty * operator &() const { return NULL; } in operator &() argument39 int Nasty::counter_ = 0; argument65 char pool[sizeof(Nasty)*N] = {0}; in main()66 Nasty * p = (Nasty *) pool; in main()67 Nasty arr[N]; in main()
31 struct Nasty struct33 Nasty() : i_ ( counter_++ ) {} in Nasty() argument34 Nasty * operator &() const { return NULL; } in operator &() argument39 int Nasty::counter_ = 0; argument65 char pool[sizeof(Nasty)*N] = {0}; in main()66 Nasty * p = (Nasty *) pool; in main()67 Nasty arr[N]; in main()
212 function Nasty() { } class213 Nasty.prototype.foo = function () { throw new RangeError(); }; class214 var n = new Nasty();