| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 * | 18 * |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef WTF_Vector_h | 21 #ifndef WTF_Vector_h |
| 22 #define WTF_Vector_h | 22 #define WTF_Vector_h |
| 23 | 23 |
| 24 #include <string.h> |
| 25 #include <algorithm> |
| 26 #include <initializer_list> |
| 27 #include <iterator> |
| 28 #include <utility> |
| 24 #include "platform/wtf/Alignment.h" | 29 #include "platform/wtf/Alignment.h" |
| 25 #include "platform/wtf/ConditionalDestructor.h" | 30 #include "platform/wtf/ConditionalDestructor.h" |
| 26 #include "platform/wtf/ContainerAnnotations.h" | 31 #include "platform/wtf/ContainerAnnotations.h" |
| 27 #include "platform/wtf/Noncopyable.h" | 32 #include "platform/wtf/Noncopyable.h" |
| 28 #include "platform/wtf/NotFound.h" | 33 #include "platform/wtf/NotFound.h" |
| 29 #include "platform/wtf/StdLibExtras.h" | 34 #include "platform/wtf/StdLibExtras.h" |
| 30 #include "platform/wtf/VectorTraits.h" | 35 #include "platform/wtf/VectorTraits.h" |
| 31 #include "platform/wtf/allocator/PartitionAllocator.h" | 36 #include "platform/wtf/allocator/PartitionAllocator.h" |
| 32 #include <algorithm> | |
| 33 #include <initializer_list> | |
| 34 #include <iterator> | |
| 35 #include <string.h> | |
| 36 #include <utility> | |
| 37 | 37 |
| 38 // For ASAN builds, disable inline buffers completely as they cause various | 38 // For ASAN builds, disable inline buffers completely as they cause various |
| 39 // issues. | 39 // issues. |
| 40 #ifdef ANNOTATE_CONTIGUOUS_CONTAINER | 40 #ifdef ANNOTATE_CONTIGUOUS_CONTAINER |
| 41 #define INLINE_CAPACITY 0 | 41 #define INLINE_CAPACITY 0 |
| 42 #else | 42 #else |
| 43 #define INLINE_CAPACITY inlineCapacity | 43 #define INLINE_CAPACITY inlineCapacity |
| 44 #endif | 44 #endif |
| 45 | 45 |
| 46 namespace WTF { | 46 namespace WTF { |
| (...skipping 1864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1911 visitor, *const_cast<T*>(buffer_entry)); | 1911 visitor, *const_cast<T*>(buffer_entry)); |
| 1912 CheckUnusedSlots(Buffer() + size(), Buffer() + capacity()); | 1912 CheckUnusedSlots(Buffer() + size(), Buffer() + capacity()); |
| 1913 } | 1913 } |
| 1914 } | 1914 } |
| 1915 | 1915 |
| 1916 } // namespace WTF | 1916 } // namespace WTF |
| 1917 | 1917 |
| 1918 using WTF::Vector; | 1918 using WTF::Vector; |
| 1919 | 1919 |
| 1920 #endif // WTF_Vector_h | 1920 #endif // WTF_Vector_h |
| OLD | NEW |