| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 EXPECT_EQ(1u, otherDeque.size()); | 281 EXPECT_EQ(1u, otherDeque.size()); |
| 282 EXPECT_EQ(0u, deque.size()); | 282 EXPECT_EQ(0u, deque.size()); |
| 283 } | 283 } |
| 284 | 284 |
| 285 // WrappedInt class will fail if it was memmoved or memcpyed. | 285 // WrappedInt class will fail if it was memmoved or memcpyed. |
| 286 HashSet<void*> constructedWrappedInts; | 286 HashSet<void*> constructedWrappedInts; |
| 287 | 287 |
| 288 class WrappedInt { | 288 class WrappedInt { |
| 289 public: | 289 public: |
| 290 WrappedInt(int i = 0) : m_originalThisPtr(this), m_i(i) { | 290 WrappedInt(int i = 0) : m_originalThisPtr(this), m_i(i) { |
| 291 constructedWrappedInts.add(this); | 291 constructedWrappedInts.insert(this); |
| 292 } | 292 } |
| 293 | 293 |
| 294 WrappedInt(const WrappedInt& other) | 294 WrappedInt(const WrappedInt& other) |
| 295 : m_originalThisPtr(this), m_i(other.m_i) { | 295 : m_originalThisPtr(this), m_i(other.m_i) { |
| 296 constructedWrappedInts.add(this); | 296 constructedWrappedInts.insert(this); |
| 297 } | 297 } |
| 298 | 298 |
| 299 WrappedInt& operator=(const WrappedInt& other) { | 299 WrappedInt& operator=(const WrappedInt& other) { |
| 300 m_i = other.m_i; | 300 m_i = other.m_i; |
| 301 return *this; | 301 return *this; |
| 302 } | 302 } |
| 303 | 303 |
| 304 ~WrappedInt() { | 304 ~WrappedInt() { |
| 305 EXPECT_EQ(m_originalThisPtr, this); | 305 EXPECT_EQ(m_originalThisPtr, this); |
| 306 EXPECT_TRUE(constructedWrappedInts.contains(this)); | 306 EXPECT_TRUE(constructedWrappedInts.contains(this)); |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 EXPECT_EQ(2u, deque.size()); | 629 EXPECT_EQ(2u, deque.size()); |
| 630 EXPECT_EQ(3, deque[0].value1); | 630 EXPECT_EQ(3, deque[0].value1); |
| 631 EXPECT_EQ(4, deque[0].value2); | 631 EXPECT_EQ(4, deque[0].value2); |
| 632 EXPECT_EQ(1, deque[1].value1); | 632 EXPECT_EQ(1, deque[1].value1); |
| 633 EXPECT_EQ(2, deque[1].value2); | 633 EXPECT_EQ(2, deque[1].value2); |
| 634 } | 634 } |
| 635 | 635 |
| 636 } // anonymous namespace | 636 } // anonymous namespace |
| 637 | 637 |
| 638 } // namespace WTF | 638 } // namespace WTF |
| OLD | NEW |