aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/StringMap.h
Commit message (Expand)AuthorAgeFilesLines
* Disable the string map copy ctor and assignment operators,Chris Lattner2007-07-221-1/+16
* use calloc instead of new/memset, it is more efficientChris Lattner2007-04-041-1/+1
* Extend StringMap to support being initialized as completely empty. WhenChris Lattner2007-04-041-11/+24
* add new ShouldRehash method to factor out common code. Fix the dtor to notChris Lattner2007-02-111-12/+14
* do not allow hash table to be filled with tombstones.Chris Lattner2007-02-111-4/+10
* Add support for removing elements out of StringMap.Chris Lattner2007-02-111-1/+42
* Replace the ugly FindValue method with STL-like find methods.Chris Lattner2007-02-111-5/+16
* remove support for stringmap visitors now that iterators exist.Chris Lattner2007-02-111-10/+0
* add iterator support, plus support for size() and empty().Chris Lattner2007-02-111-1/+75
* Split StringMapEntry construction out of StringMap, into StringMapEntry.Chris Lattner2007-02-111-28/+55
* Rename CStringMap -> StringMap, since it now supports nul characters in theChris Lattner2007-02-081-17/+17
* Allow cstringmap to contain strings with nul characters in them.Chris Lattner2007-02-081-28/+57
* add a methodChris Lattner2006-10-301-0/+8
* add newline at end of fileChris Lattner2006-10-291-1/+2
* add a highly efficient hash table that is specialized for mapping C stringsChris Lattner2006-10-291-0/+144