summaryrefslogtreecommitdiff
path: root/unittests/ADT
Commit message (Expand)AuthorAge
* Add a SmallBitVector class, which mimics BitVector but uses onlyDan Gohman2010-01-05
* Silence compiler warning.Benjamin Kramer2009-12-31
* Document the edit-distance algorithm used in StringRef, switch it overDouglas Gregor2009-12-31
* Implement support for converting to string at "natural precision", and fix someJohn McCall2009-12-24
* Move the two definitions of operator<< into namespace llvm, so theyDouglas Gregor2009-12-24
* Define the new operator<< for sets into namespace std, so thatDouglas Gregor2009-12-24
* Add accessors for the largest-magnitude, smallest-magnitude, andJohn McCall2009-12-24
* Change StringRef::startswith and StringRef::endswith to versions which are aEli Friedman2009-12-21
* Add an implementation of the delta debugging algorithm.Daniel Dunbar2009-12-03
* Only run this mutex test if threading is enabled. ThisDuncan Sands2009-11-19
* Reenable Split2 StringRef test with Apple gcc.Benjamin Kramer2009-11-19
* "XFAIL" the Split2 StringReft test with Apple gcc, which miscompiles it.Daniel Dunbar2009-11-17
* Distinguish "a," from "a". The first one splits into "a" + "" and the second ...Rafael Espindola2009-11-13
* Switch to smallvector. Also fix issue with using unsigend for MaxSplit.Rafael Espindola2009-11-13
* Add a new split method to StringRef that puts the substrings in a vector.Rafael Espindola2009-11-13
* Add From arguments to StringRef search functions, and tweak doxyments.Daniel Dunbar2009-11-11
* Fix DenseMap iterator constness.Jeffrey Yasskin2009-11-10
* Type.h doesn't need to #include LLVMContext.hChris Lattner2009-10-27
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-26
* Fix stylistic and documentation problems in ValueMap found by Nick Lewycky andJeffrey Yasskin2009-10-23
* Try r84890 again (adding ValueMap<>), now that I've tested the compile onJeffrey Yasskin2009-10-22
* Revert r84890, which broke the linux build.Jeffrey Yasskin2009-10-22
* Add a ValueMap<ValueOrSubclass*, T> type. ValueMap<Value*, T> is safe to useJeffrey Yasskin2009-10-22
* Pacify the compiler (signed with unsigned comparison) by makingDuncan Sands2009-10-13
* Add a ceilLogBase2 function to APInt.Dan Gohman2009-10-13
* Fix a few more conversion warnings on 4.0Daniel Dunbar2009-09-18
* Another try at fixing compile warnings on 4.0Daniel Dunbar2009-09-17
* Add StringRef::{rfind, rsplit}Daniel Dunbar2009-09-16
* Attempt to fix some 4.0.0 build warnings.Daniel Dunbar2009-09-14
* Simplify, now that gtest supports raw_ostream directly.Daniel Dunbar2009-09-06
* Add test for PR4873, which works for me.Daniel Dunbar2009-09-03
* split raw_os_ostream out to its own header and implementation file. ThisChris Lattner2009-08-24
* Unbreak unit tests.Daniel Dunbar2009-08-24
* Correct for recent assert change.Bill Wendling2009-08-21
* Fix bug with APInt::getBitsNeeded with for base 10 numbers 0-9.Erick Tryzelaar2009-08-21
* Allow '+' to appear in APInt strings, and add more unit tests.Erick Tryzelaar2009-08-21
* Add support for including '+' in APFloat strings, more asserts,Erick Tryzelaar2009-08-20
* Fix two APFloat bugs in converting hexadecimal constants.Daniel Dunbar2009-08-20
* Remove SmallString::append_*int* unit tests.Benjamin Kramer2009-08-19
* Add SmallVector::{capacity,set_size}.Daniel Dunbar2009-08-19
* Improve Triple to recognize the OS in i386-mingw32.Daniel Dunbar2009-08-18
* Fix pasto in StringRef::count(char)Daniel Dunbar2009-08-18
* Add StringRef::count({char,StringRef})Daniel Dunbar2009-08-18
* Wrap unit test death tests in GTEST_HAS_DEATH_TESTErick Tryzelaar2009-08-17
* Change APFloatTest from using ASSERTs to EXPECTsErick Tryzelaar2009-08-17
* Modify APFloat to take a StringRef instead of a c string.Erick Tryzelaar2009-08-16
* Add failure tests to APInt unit test.Erick Tryzelaar2009-08-16
* Convert APint::{fromString,APInt,getBitsNeeded} to use StringRef.Daniel Dunbar2009-08-13
* StringRef: Add find(char) and find(StringRef).Daniel Dunbar2009-08-11
* Twine: Use raw_ostream::write_hex, remove unused itohexstr method.Daniel Dunbar2009-07-30