summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/StringMap.h
Commit message (Expand)AuthorAge
* Recommit 211309 (StringMap::insert), reverted in 211328 due to issues with pr...David Blaikie2014-06-23
* Revert "Add StringMap::insert(pair) consistent with the standard associative ...Rafael Espindola2014-06-20
* Add StringMap::insert(pair) consistent with the standard associative containe...David Blaikie2014-06-19
* Convert StringMapEntry::Create to use StringRef instead of start/end pointers...Craig Topper2014-06-11
* Missed formattingDavid Blaikie2014-05-08
* StringMap: Move assignment and move construction.David Blaikie2014-05-08
* StringMap: Replace faux-copyability with faux-movability, which is sufficient.David Blaikie2014-05-08
* StringMap support for move-only values.David Blaikie2014-05-08
* Allocator: Remove ReferenceAdder hack.Benjamin Kramer2014-04-18
* [Allocator] Pass the size to the deallocation function. This, on someChandler Carruth2014-04-15
* [C++11] Make use of 'nullptr' in the Support library.Craig Topper2014-04-07
* When destroying a StringMap, just iterate over the map and destroy the contai...Pete Cooper2014-03-19
* Remove outdated & incorrect part of comment.Eli Bendersky2014-02-03
* Remove StringMapEntryInitializer support.David Blaikie2014-01-02
* The count() function for STL datatypes returns unsigned, evenYaron Keren2013-12-22
* Disable the StringMapEntry copy constructor, to make sure weChris Lattner2013-05-25
* Remove unneeded call to a base default ctorReid Kleckner2013-05-22
* Fix StringMapIterator compile errors for non-MSVC compilers.Reid Kleckner2013-05-22
* [Support] Add StringMap::swap() and a default ctor for iteratorsReid Kleckner2013-05-22
* Clear the whole table including the tombstones, since the tombstone count willPedro Artigas2013-02-21
* [ADT/StringMap] Follow-up to r172455, use the correct constructor for setting...Argyrios Kyrtzidis2013-01-15
* [ADT/StringMap] Add a constructor in StringMap that accepts both anArgyrios Kyrtzidis2013-01-14
* Cleanup comment and formattingEli Bendersky2012-12-18
* Make StringMap's copy ctor non-explicit.Benjamin Kramer2012-04-14
* Various public StringMap methods take or return "MapEntryTy", make it public.Chris Lattner2012-01-23
* StringMap.find never points to an empty bucket or tombstone, skip the check.Benjamin Kramer2012-01-04
* Switch StringMap from an array of structures to a structure of arrays.Benjamin Kramer2011-12-27
* The key of a StringMap can contain nul's in it, so having first() returnChris Lattner2011-07-14
* Remove deprecated forms of StringMap::GetOrCreateValue().Jay Foad2011-06-21
* use the MapEntryTy typedef instead of writing it out long form,Chris Lattner2011-06-21
* Remove unused STL header includes.Jay Foad2011-04-23
* Reset StringMap's NumTombstones on clears and rehashes.Jakob Stoklund Olesen2011-03-30
* Prevent infinite growth of SmallMap instances.Jakob Stoklund Olesen2011-03-30
* Enhance ScopedHashTable to allow it to take an allocator argument.Chris Lattner2011-01-03
* Test commit: Fix two -Asserts mode warnings in StringMap.h.Frits van Bommel2010-11-20
* Rename alignof -> alignOf to avoid irritating C++'0x compilers,Chris Lattner2010-10-30
* Trailing whitespace.Mikhail Glushenkov2010-09-21
* fix this to work with allocators that have reference type with compilersChris Lattner2010-09-04
* give StringMap a new ctor which allows you to initialize itChris Lattner2010-07-23
* Add a method to get a StringMapEntry from a pointer to the stringChris Lattner2010-03-24
* Pass StringRef by value.Daniel Dunbar2009-11-06
* Convert StringMap to using StringRef for its APIs.Daniel Dunbar2009-07-23
* Use v.data() instead of &v[0] when SmallVector v might be empty.Jay Foad2009-05-21
* Add StringMap::lookup.Daniel Dunbar2009-03-12
* fix a pretty serious bug in StringMap where GetOrCreate(strstart,strend, z) Chris Lattner2009-02-04
* * Don't explicitly cast "0" to "void*". This doesn't work well with specializedBill Wendling2009-01-08
* * Added unittests for StringMapMisha Brukman2009-01-08
* Add typedef to StringMapEntry.Ted Kremenek2008-11-27
* optimize StringMap::clearChris Lattner2008-07-02
* Add a new (simple) StringMap::clear method, patch by PratikChris Lattner2008-07-02