aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ADT/StringMapTest.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-11-19Remove StringMap::GetOrCreateValue in favor of StringMap::insertDavid Blaikie1-6/+4
2014-11-14StringMap: Test and finish off supporting perfectly forwarded values in Strin...David Blaikie1-1/+15
2014-06-23Recommit 211309 (StringMap::insert), reverted in 211328 due to issues with pr...David Blaikie1-2/+40
2014-06-20Revert "Add StringMap::insert(pair) consistent with the standard associative ...Rafael Espindola1-38/+0
2014-06-19Add StringMap::insert(pair) consistent with the standard associative containe...David Blaikie1-0/+38
2014-06-11Convert StringMapEntry::Create to use StringRef instead of start/end pointers...Craig Topper1-3/+3
2014-05-09Remove use of = default/= delete as they're unsupported on MSVC2012David Blaikie1-4/+9
2014-05-08Missed formattingDavid Blaikie1-11/+11
2014-05-08StringMap: Move assignment and move construction.David Blaikie1-0/+67
2014-05-08StringMap support for move-only values.David Blaikie1-0/+16
2014-01-03Fix break introduced in r198377 due to using a local type as a template param...David Blaikie1-6/+6
2014-01-02Test coverage for non-default-constructible elements in a StringMapDavid Blaikie1-0/+15
2014-01-02Remove StringMapEntryInitializer support.David Blaikie1-17/+0
2012-06-19Fix PR13148, an inf-loop in StringMap.Chandler Carruth1-0/+22
2012-06-19Remove some superfluous SCOPED_TRACEs from this unit test.Chandler Carruth1-6/+0
2011-07-14The key of a StringMap can contain nul's in it, so having first() returnChris Lattner1-3/+3
2010-11-29Merge System into Support.Michael J. Spencer1-1/+1
2010-02-11Fix (harmless) memory leak found by memcheck.Jeffrey Yasskin1-0/+1
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth1-1/+1
2009-07-23Convert StringMap to using StringRef for its APIs.Daniel Dunbar1-10/+13
2009-07-21unbreak unit-tests on gcc-4.4.Torok Edwin1-0/+1
2009-01-08Some generic clean-ups. Also make the StringMapEntryInitializer specializatio...Bill Wendling1-45/+44
2009-01-08* Don't explicitly cast "0" to "void*". This doesn't work well with specializedBill Wendling1-3/+17
2009-01-0880-column violation fix.Bill Wendling1-1/+1
2009-01-08* Added unittests for StringMapMisha Brukman1-0/+189