Fix include guards so they exactly match file names.
[oota-llvm.git] / include / llvm / ADT / StringMap.h
2012-12-18 Eli BenderskyCleanup comment and formatting
2012-04-14 Benjamin KramerMake StringMap's copy ctor non-explicit.
2012-01-23 Chris LattnerVarious public StringMap methods take or return "MapEnt...
2012-01-04 Benjamin KramerStringMap.find never points to an empty bucket or tombs...
2011-12-27 Benjamin KramerSwitch StringMap from an array of structures to a struc...
2011-07-14 Chris LattnerThe key of a StringMap can contain nul's in it, so...
2011-06-21 Jay FoadRemove deprecated forms of StringMap::GetOrCreateValue().
2011-06-21 Chris Lattneruse the MapEntryTy typedef instead of writing it out...
2011-04-23 Jay FoadRemove unused STL header includes.
2011-03-30 Jakob Stoklund OlesenReset StringMap's NumTombstones on clears and rehashes.
2011-03-30 Jakob Stoklund OlesenPrevent infinite growth of SmallMap instances.
2011-01-03 Chris LattnerEnhance ScopedHashTable to allow it to take an allocato...
2010-11-20 Frits van BommelTest commit: Fix two -Asserts mode warnings in StringMap.h.
2010-10-30 Chris LattnerRename alignof -> alignOf to avoid irritating C++'0x...
2010-09-21 Mikhail GlushenkovTrailing whitespace.
2010-09-04 Chris Lattnerfix this to work with allocators that have reference...
2010-07-23 Chris Lattnergive StringMap a new ctor which allows you to initialize it
2010-03-24 Chris LattnerAdd a method to get a StringMapEntry from a pointer...
2009-11-06 Daniel DunbarPass StringRef by value.
2009-07-23 Daniel DunbarConvert StringMap to using StringRef for its APIs.
2009-05-21 Jay FoadUse v.data() instead of &v[0] when SmallVector v might...
2009-03-12 Daniel DunbarAdd StringMap::lookup.
2009-02-04 Chris Lattnerfix a pretty serious bug in StringMap where GetOrCreate...
2009-01-08 Bill Wendling* Don't explicitly cast "0" to "void*". This doesn...
2009-01-08 Misha Brukman* Added unittests for StringMap
2008-11-27 Ted KremenekAdd typedef to StringMapEntry.
2008-07-02 Chris Lattneroptimize StringMap::clear
2008-07-02 Chris LattnerAdd a new (simple) StringMap::clear method, patch by...
2008-06-26 Bill WendlingRemove warnings about shadowed and unused variables.
2008-06-24 Dan GohmanPass std::string by reference. Thanks Chris!
2008-06-23 Dan GohmanAdd methods to StringMap to erase entries by key.
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-02-05 Anton KorobeynikovDon't dereference an invalid pointer if string is empty.
2008-01-31 Anton KorobeynikovAdd convenient std::string helpers to StringMap. Patch...
2008-01-31 Anton KorobeynikovReapply the patch with fix.
2008-01-31 Chris Lattnerrevert anton's recent stringmap patch, which breaks...
2008-01-31 Anton KorobeynikovMake StringMap to be more STL'ish. Patch by Mikhail...
2008-01-31 Anton KorobeynikovWhitespace cleanup
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-14 Dan GohmanAdd explicit keywords, and fix a minor typo that they...
2007-11-29 Chris LattnerPass the whole StringMapEntry into StringMapEntryInitia...
2007-11-29 Chris Lattnerprovide an optional API to allow datatypes in a stringm...
2007-11-19 Dan GohmanAdd explicit keywords.
2007-10-17 Ted KremenekMinor cosmetic cleanups in the calculation of alignment...
2007-10-17 Ted KremenekUpdated StringMap to use llvm::AlignOf to compute the...
2007-10-12 Chris Lattnerdon't use intptr_t without including it.
2007-10-12 Chris LattnerMake this compute the correct offset, handling alignmen...
2007-09-30 Chris LattnerAdd a helper useful when mapping from a map element...
2007-07-22 Chris LattnerDisable the string map copy ctor and assignment operators,
2007-04-04 Chris Lattneruse calloc instead of new/memset, it is more efficient
2007-04-04 Chris LattnerExtend StringMap to support being initialized as comple...
2007-02-11 Chris Lattneradd new ShouldRehash method to factor out common code...
2007-02-11 Chris Lattnerdo not allow hash table to be filled with tombstones.
2007-02-11 Chris LattnerAdd support for removing elements out of StringMap.
2007-02-11 Chris LattnerReplace the ugly FindValue method with STL-like find...
2007-02-11 Chris Lattnerremove support for stringmap visitors now that iterator...
2007-02-11 Chris Lattneradd iterator support, plus support for size() and empty().
2007-02-11 Chris LattnerSplit StringMapEntry construction out of StringMap...
2007-02-08 Chris LattnerRename CStringMap -> StringMap, since it now supports...
2007-02-08 Chris LattnerAllow cstringmap to contain strings with nul characters...
2006-10-30 Chris Lattneradd a method
2006-10-29 Chris Lattneradd newline at end of file
2006-10-29 Chris Lattneradd a highly efficient hash table that is specialized...