aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/StringExtras.h
Commit message (Expand)AuthorAgeFilesLines
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Add an optional LowerCase argument to hexdigit().Daniel Dunbar2010-11-271-3/+4
* utostr isn't going away too soon, try to make it slightly smaller.Benjamin Kramer2010-04-111-13/+8
* Remove unused string functions.Benjamin Kramer2010-01-111-71/+0
* Add StrInStrNoCase, a StringRef version of CStrInCStrNoCase.Benjamin Kramer2010-01-111-0/+5
* Turns out llvm-gcc still uses SplitString with a vector. Add it back until IBenjamin Kramer2010-01-111-0/+6
* Reimplement getToken and SplitString as "StringRef helper functions"Benjamin Kramer2010-01-111-8/+8
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-1/+1
* Move UnescapeString to a static function for its sole client; its inefficient...Daniel Dunbar2009-10-171-5/+0
* Remove llvm::EscapeString, raw_ostream::write_escaped is much faster.Daniel Dunbar2009-10-171-4/+0
* Move StringMap's string has function into StringExtras.hDaniel Dunbar2009-10-171-0/+14
* Remove itohexstr, which only had one user.Daniel Dunbar2009-07-301-4/+0
* Add version of StringsEqualNoCase that takes two null-terminated C-strings an...Ted Kremenek2009-02-211-0/+19
* Removed trailing whitespace.Misha Brukman2009-01-091-11/+11
* Work around PR1000.Duncan Sands2008-11-101-1/+1
* split out the functionality of utohexstr into a new utohex_bufferChris Lattner2008-11-101-7/+22
* Fix incorrect testing for the end of the both strings in CStrInCStrNoCase. T...Ted Kremenek2008-10-221-1/+1
* Add llvm::hexdigit to StringExtras (number -> hexadecimal char)Daniel Dunbar2008-10-141-4/+7
* Make the interface of CStrInCStrNoCase be the same as strcasestr.Ted Kremenek2008-05-071-6/+5
* Fix some serious logical errors in CStrInCStrNoCase pointed out by Bill.Ted Kremenek2008-05-071-5/+8
* Guard for empty strings in CStrInCStrNoCase.Ted Kremenek2008-05-071-2/+2
* Added CStrInCStrNoCase, a portable implementation of strcasestr.Ted Kremenek2008-05-071-0/+24
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-051-2/+2
* Make tblgen a little smarter about constants smaller than i32. Currently,Scott Michel2008-02-151-0/+4
* don't form an std::string with a null pointer, it aborts.Chris Lattner2008-01-181-1/+1
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Add an uppercase conversion utility function.Christopher Lamb2007-10-181-0/+8
* fix reversal bug in preceding checkinDale Johannesen2007-09-041-2/+2
* Revise per review of previous patch.Dale Johannesen2007-08-311-1/+1
* Enhance APFloat to retain bits of NaNs (fixes oggenc).Dale Johannesen2007-08-311-0/+9
* Add a helper functionChris Lattner2006-11-281-0/+7
* Add two helper functionsChris Lattner2006-07-141-0/+9
* Favor C++ casts over C casts in C++ code.Reid Spencer2006-06-011-2/+2
* Fix utostr once and for all, by making there only be one function namedChris Lattner2006-05-311-17/+14
* Fix build breakage on alpha, without causing it on x86. as a bonus, all plat...Andrew Lenharth2006-05-311-13/+2
* revert for nowAndrew Lenharth2006-05-311-2/+13
* make 64-bit safe and fix the build on alphaAndrew Lenharth2006-05-311-13/+2
* For PR786:Reid Spencer2006-05-241-3/+3
* add some methods for case-insensitive string comparesChris Lattner2006-01-261-0/+21
* Remove trailing whitespaceMisha Brukman2005-04-211-7/+7
* Convert some old C-style casts to C++ style.Reid Spencer2005-01-281-2/+2
* Do not let 'ftostr' return a string that starts with spaces. This allowsChris Lattner2005-01-041-1/+3
* Changes For Bug 352Reid Spencer2004-09-011-4/+4
* Instead of int64_t, overload itostr with `long long' parameter.Misha Brukman2004-08-181-8/+7
* Add itostr(long) for our furry 64-bit friends.Misha Brukman2004-08-171-0/+7
* Use C++-style <cstdio> instead of C-style <stdio.h>Misha Brukman2004-07-201-1/+1
* Dump the old-fashioned C-style <ctype.h> in favor of new `C++'-style <cctype>Misha Brukman2004-07-201-1/+1
* isupper() and tolower() are declared in <ctype.h>Misha Brukman2004-07-201-3/+3
* Fix warning compiling with VC++Chris Lattner2004-07-121-2/+2
* Unbreak the build. tsk tskChris Lattner2004-06-251-1/+1