summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ADT/SmallVectorTest.cpp
Commit message (Expand)AuthorAgeFilesLines
* [ADT] Update SmallVectorTest.EmplaceBack tests after rL356312Fangrui Song2019-03-261-36/+42
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* [ADT] Don't use __used__ attribute on struct members in unit testFrancis Ricci2017-06-121-10/+10
* [ADT] Use LLVM_ATTRIBUTE_USED instead of __attribute__ for unit testFrancis Ricci2017-06-111-5/+5
* [ADT] Suppress unused attribute warning in unit testFrancis Ricci2017-06-111-5/+5
* [SmallVector] Reinstate the typedefs.Davide Italiano2017-06-101-0/+3
* [SmallVector] Remove unused typedefs, spotted by GCC 7. NFCI.Davide Italiano2017-06-101-3/+0
* [ADT] Make iterable SmallVector template overrides more specificFrancis Ricci2017-06-091-0/+61
* Re-sort #include lines for unittests. This uses a slightly modifiedChandler Carruth2017-06-061-1/+1
* Tidy up a bit of r304516, use SmallVector::assign rather than for loopDavid Blaikie2017-06-021-0/+10
* Revert "Fix Clang-tidy modernize-deprecated-headers warnings in remaining fil...Duncan P. N. Exon Smith2016-04-051-11/+7
* Fix Clang-tidy modernize-deprecated-headers warnings in remaining files; othe...Eugene Zelenko2016-04-051-7/+11
* [ADT] C++11ify SmallVector::erase's arguments from iterator to const_iteratorDavid Blaikie2016-03-241-2/+4
* Use 'override/final' instead of 'virtual' for overridden methodsAlexander Kornienko2015-04-111-4/+1
* SmallVector: Allow initialization and assignment from initializer_list.Benjamin Kramer2015-03-021-0/+19
* Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requirin...Aaron Ballman2015-02-151-6/+6
* SmallVector: Move emplace_back to SmallVectorImpl.Benjamin Kramer2015-02-071-0/+8
* [ADT] Add move operations to SmallVector<T,N> from SmallVectorImpl<T>.Lang Hames2015-01-231-6/+75
* Silencing several "multiple copy constructors" warnings from MSVC; NFC.Aaron Ballman2014-12-031-1/+0
* ADT: Add SmallVector<>::emplace_back()Duncan P. N. Exon Smith2014-12-031-0/+131
* SmallVectorTest: Make the deleted member functions private to help MSVC users.David Blaikie2014-06-111-0/+1
* SmallVectorTest.cpp: Use LLVM_DELETED_FUNCTION.NAKAMURA Takumi2014-06-101-2/+2
* SmallVector: support resize(N) with move-only typesDavid Blaikie2014-06-091-4/+30
* SmallVector: Improve test coverage for insert with repetitionDavid Blaikie2014-06-081-22/+18
* SmallVector: More movable improvements - don't copy elements to make space wh...David Blaikie2014-06-081-13/+86
* SmallVector: Move, don't copy, elements to make space for an insertion.David Blaikie2014-06-081-0/+38
* SmallVectorTest: Remove some more robust checks added in r210429 since they c...David Blaikie2014-06-081-6/+0
* Fix some more moving-from-moved-from objects issues in SmallVectorDavid Blaikie2014-06-081-0/+18
* Ensure SmallVector::insert doesn't overwrite the last element in the range wi...David Blaikie2014-06-081-0/+22
* Fix a use of uninitialized memory in SmallVector's move-assignment operator.Douglas Gregor2014-04-301-9/+54
* Revert "Clean up SmallString a bit"David Blaikie2014-03-091-11/+0
* Clean up SmallString a bitDavid Blaikie2014-03-091-0/+11
* Sort the #include lines for unittest/...Chandler Carruth2012-12-041-2/+2
* Move the SmallVector unit tests to be type-parameterized so that we canChandler Carruth2012-07-301-149/+176
* Bring the return value of SmallVector::insert in line with std::vector::insert.Benjamin Kramer2012-06-171-4/+30
* SmallVector: return a valid iterator for the rare case of inserting an empty ...Benjamin Kramer2012-06-171-0/+7
* SmallVector: Don't rely on having an assignment operator around in push_back ...Benjamin Kramer2012-04-291-0/+13
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-1/+1
* Fix a subtle issue in SmallVector. The following code did not work as expected:Owen Anderson2011-07-061-21/+27
* Switch attribute macros to use 'LLVM_' as a prefix. We retain the old namesChandler Carruth2010-10-231-1/+1
* Silence 'unused' warning.Bill Wendling2010-08-191-1/+3
* Fix SmallVector's insert to handle non-random-access iterators.Dan Gohman2010-03-261-0/+6
* Make this test more lenient; with SmallVector now using actuallyDan Gohman2010-03-181-1/+1
* Add SmallVector::{capacity,set_size}.Daniel Dunbar2009-08-191-0/+18
* Clarify a FIXME.Daniel Dunbar2009-07-121-4/+5
* Use the testcase from PR2791.Owen Anderson2009-04-231-3/+3
* Fix naming of file.Bill Wendling2009-01-111-1/+1
* Adding unittests for SmallVector. Test by Talin.Bill Wendling2009-01-101-0/+383
OpenPOWER on IntegriCloud