1. 7f5be51 Added regression test for base::JoinString given a null StringPiece. by mgiuca · 8 years ago
  2. af6a34e Added StringPiece overloads for base::JoinString. by mgiuca · 8 years ago
  3. 8daecf7 Change ReplaceStringPlaceholders() to allow only up to 9 placeholders. by sergeyu · 9 years ago
  4. ab91a98 Switch to standard integer types in base/strings/. by avi · 9 years ago
  5. b6894c1 base: get rid of deprecated TrimWhitespace() function by tfarina · 9 years ago
  6. 99e15a1 Make base::IsUnicodeWhitespace('\0') return false. by eroman · 9 years ago
  7. 54cd33b Replace StringToLowerASCII with base::ToLowerASCII by brettw · 9 years ago
  8. ad74306 Remove some legacy versions of StartsWith and EndsWith. by brettw · 9 years ago
  9. 71aab99 Revert of Remove some legacy versions of StartsWith and EndsWith. (patchset #6 id:100001 of https://codereview.chromium.org/1239493005/) by yosin · 9 years ago
  10. 802d8f1 Remove some legacy versions of StartsWith and EndsWith. by brettw · 9 years ago
  11. aadbc2d Move JoinString to the base namespace. by brettw · 9 years ago
  12. fa2dbaf Revert of Move JoinString to the base namespace (patchset #9 id:160001 of https://codereview.chromium.org/1223153003/) by hongchan · 9 years ago
  13. 76040f7 Move JoinString to the base namespace. by brettw · 9 years ago
  14. a09d607 Replace base::str[n]casecmp with helper functions. by brettw · 9 years ago
  15. 7872999 Replace remaining Tokenize calls to SplitString by brettw · 9 years ago
  16. 20e04ed Move MatchPattern to its own header and the base namespace. by brettw · 9 years ago
  17. bb5442f Move StringToUpperASCII to base namespace by brettw · 9 years ago
  18. 7bd59c2 Remove GG_VA_COPY in favor of va_copy by scottmg · 10 years ago
  19. d17052c Cleanup: Get rid of base::ASCIIToWide(). by thestig · 10 years ago
  20. dd7aaa0 Cleanup: Better constify some strings in base. by thestig · 10 years ago
  21. a3f9eff Convert ARRAYSIZE_UNSAFE -> arraysize in base/. by viettrungluu · 10 years ago
  22. ea6269b Implement fast path in {Wide|UTF16}ToUTF8 for pure ASCII strings by Mikhail Naganov · 10 years ago
  23. 558eee8 Implement fast path in UTF8ToUTF16 for pure ASCII strings by Mikhail Naganov · 10 years ago
  24. 2962b2b Fixes for re-enabling more MSVC level 4 warnings: base/ edition by pkasting@chromium.org · 10 years ago
  25. b01bca7 Remove the WCHAR_T_IS_UNSIGNED definition since it is not really useful. Replace its use with a static_cast. by rmcilroy@chromium.org · 10 years ago
  26. 18c0702 Move UTF16ToASCII, remove WideToASCII. by brettw@chromium.org · 11 years ago
  27. f49157e Remove ContainsOnlyWhitespace from string_util and CollapseWhitespace into to the base namespace by brettw@chromium.org · 11 years ago
  28. ce73256 Revert of https://codereview.chromium.org/82963003/ by nkostylev@chromium.org · 11 years ago
  29. 6aa3df1 Cleanup: Make more wstring functions Windows-only. by thestig@chromium.org · 11 years ago
  30. 2153a09 Cleanup: Remove many unused wstring string_utils. by thestig@chromium.org · 11 years ago
  31. d827e3d Move string files in base/ to the string subdirectory. by avi@chromium.org · 11 years ago[Renamed (99%) from base/string_util_unittest.cc]
  32. 17f6062 Use a direct include of utf_string_conversions.h in android_webview/, apps/, ash/, base/. by avi@chromium.org · 11 years ago
  33. 8164c2c Rewrite std::string("") to std::string(), Linux edition. by dcheng@chromium.org · 12 years ago
  34. 3070200 Revert "Rewrite std::string("") to std::string(), Linux edition." by dcheng@chromium.org · 12 years ago
  35. cb5b331 Rewrite std::string("") to std::string(), Linux edition. by dcheng@chromium.org · 12 years ago
  36. 2463424 Add support for joining strings on strings rather than just chars. by smckay@chromium.org · 12 years ago
  37. 44e5060 Linux: fix bookmarks with & in them not showing correctly in the wrench menu. by mdm@chromium.org · 13 years ago
  38. d347937 ake string_util::WriteInto() DCHECK() that the supplied |length_with_null| > 1, meaning that the without-'\0' string is non-empty. This replaces the conditional code added recently that makes this case return NULL. It's easier to understand if it's simply an error to call WriteInto() in this case at all. by pkasting@chromium.org · 13 years ago
  39. 6918031 Cleanup: Convert ASCIIToUTF16("") to string16(). by jhawkins@chromium.org · 13 years ago
  40. 905380e Fix AutocompleteMatch DCHECK() triggered by |RenderViewContextMenu::AppendSearchProvider()|. by asvitkine@chromium.org · 13 years ago
  41. 77db22f WriteInto handles length_with_null values of 1 better. by cbentzel@chromium.org · 13 years ago
  42. 7c314d7 base: Constantify the struct used in WprintfFormatPortabilityTest test case. by tfarina@chromium.org · 13 years ago
  43. 66dc141 base: Put lowercase_cases array inside TEST unit function. by tfarina@chromium.org · 13 years ago
  44. ac6d615 Localize strings, speeds. by avi@chromium.org · 13 years ago
  45. 92a63ee Support more than 9 arguments for ReplaceStringPlaceholders() by tony@chromium.org · 13 years ago
  46. 8eceb1b wstring: remove wstring version of TrimWhitespace by evan@chromium.org · 13 years ago
  47. 7024c3a Revert 82405 - Support more than 9 arguments for ReplaceStringPlaceholders()- support more than 9 arguments ($1, $2, $3, ..., $9 and $10, $11, $12, ...) for ReplaceStringPlaceholders()- add the unittest named ReplaceStringPlaceholdersMoreThan9Replacements for testing more than 9 arguments for ReplaceStringPlaceholders()BUG=16963TEST=string_util_unittest:StringUtilTest.ReplaceStringPlaceholdersMoreThan9ReplacementsPatch by haraken@google.com.Review URL: http://codereview.chromium.org/6877008 by nsylvain@chromium.org · 14 years ago
  48. ff7ebf1 Support more than 9 arguments for ReplaceStringPlaceholders() by tony@chromium.org · 14 years ago
  49. e4bec37 Move ElideString() from base/string_util.cc to app/text_elider.cc to by jschuh@google.com · 14 years ago
  50. c7770d6 base: Move StringSplitAlongWhitespace to string_split.h by tfarina@chromium.org · 14 years ago
  51. d455db2 fixes issue 52839 (MatchPattern timeout) by andybons@chromium.org · 14 years ago
  52. 5dab748 clang/mac: Fix almost all problems when building all.xcodeproj. by thakis@chromium.org · 14 years ago
  53. e995a8b base: Finish moving the SplitString functions from string_util.h to string_split.h by tfarina@chromium.org · 14 years ago
  54. 7dc7776 base: Move SplitStringDontTrim functions from string_util.h to string_split.h by tfarina@chromium.org · 14 years ago
  55. 884f481 Make the glob matcher support UTF8 strings. by mnissler@chromium.org · 14 years ago
  56. 4d5828a base: Move SplitStringUsingSubstr functions from string_util.h to string_split.h by tfarina@chromium.org · 14 years ago
  57. 8ee5f35 Add unit test for functionality added to ReplaceStringPlaceholders in r57966. by aa@chromium.org · 14 years ago
  58. 7a0f0ed Add test to check that IsStringUTF8 allows for embedded NULLs. by ajwong@chromium.org · 14 years ago
  59. 2be4aa6 Convert FormatBytes to string16. by evan@chromium.org · 14 years ago
  60. 9977f42 Revert "Convert FormatBytes to string16." by evan@chromium.org · 14 years ago
  61. 16c97a0 Convert FormatBytes to string16. by evan@chromium.org · 14 years ago
  62. 67cbde4 Move StringPrintf into its own file and use the base namespace. Currently this has using by brettw@chromium.org · 14 years ago
  63. 6cbac6b base: Add HexDigitToInt function to string_util.h by tfarina@chromium.org · 14 years ago
  64. cbde69a Move the number conversions from string_util to a new file. by brettw@chromium.org · 14 years ago
  65. 2436a5a Made changes to TruncateUtF8ToByteSize to cleanup the code. by jerrica@google.com · 14 years ago
  66. bd7cfb5 Add Tokenize() for StringPiece. by mbelshe@chromium.org · 14 years ago
  67. 0786e8e Add a method that truncates strings to the end point of a valid UTF8 character, leaving the string's size to be less than or equal to a specified byte size. by nick@chromium.org · 14 years ago
  68. dd39022 TTF: Re-enable SplitStringIntoKeyValuePairsTest.EmptyString. Fix the case by jhawkins@chromium.org · 14 years ago
  69. a473fcd Rejigger how we format the display of bytes. by evan@chromium.org · 15 years ago
  70. 9e9a7d0 Reland r42300: "HttpRequestHeaders refactor." by willchan@chromium.org · 15 years ago
  71. 867b289 Revert "Reland r42300: "HttpRequestHeaders refactor.""" by willchan@chromium.org · 15 years ago
  72. 7707edf Reland r42300: "HttpRequestHeaders refactor."" by willchan@chromium.org · 15 years ago
  73. ef484e0 Revert r42300: "HttpRequestHeaders refactor." by willchan@chromium.org · 15 years ago
  74. b653f09 HttpRequestHeaders refactor. by willchan@chromium.org · 15 years ago
  75. 63c75eb base: string_util.h -> utf_string_conversions.h fix. by jhawkins@chromium.org · 15 years ago
  76. 1b0a324 Make IsStringUTF8 reject (U+FDD0 .. U+FDEF) by jschuh@google.com · 15 years ago
  77. ad261e5 This CL addresses 2 issues: by jcampan@chromium.org · 15 years ago
  78. 1b53881 The RemoveChars utility function requires a NULL-terminated input string, so fix the test accordingly. by jhawkins@chromium.org · 15 years ago
  79. b8a0531 Implement RemoveChars, a function to remove a list of characters from a string, and use it in PhoneNumber to remove extra phone number characters. by jhawkins@chromium.org · 15 years ago
  80. 30506fc Revert 36459 - Breaks 7 WebKit tests by jschuh@chromium.org · 15 years ago
  81. 76d87e4 Changes are: by jschuh@chromium.org · 15 years ago
  82. 4f6143d This CL contains the back-end implementation of the translate feature. It adds a Translate method to the renderer. by jcampan@chromium.org · 15 years ago
  83. 366395c Mac: UI tweaks for task manager. by thakis@chromium.org · 15 years ago
  84. 26df685 Implement ContactInfo, the FormGroup that stores contact information. by jhawkins@chromium.org · 15 years ago
  85. 994fc01 Fixes to the string MatchPattern functions: by tony@chromium.org · 15 years ago
  86. 3f6b260 Add compiler-specific "examine printf format" attributes to printfs. by evan@chromium.org · 15 years ago
  87. 4736650 Fix various problems with inline autocomplete and URLs that change length during fixup: by pkasting@chromium.org · 15 years ago
  88. de29ea4 Remove the dependency on i18n/icu_string_conversions from base/string_util.h. by brettw@chromium.org · 15 years ago
  89. 86aca86 Separate out some more ICU from base and into base/i18n. by brettw@chromium.org · 15 years ago
  90. 8ec6de4 Add a version of ReplaceStringPlaceholders that operates on std::string by tony@chromium.org · 15 years ago
  91. 21f185c Strip .plugin off of Mac plugin names when showing the crash info bar. by stuartmorgan@google.com · 15 years ago
  92. ce523e7 Move base::va_copy from a function to a macro. by deanm@chromium.org · 15 years ago
  93. 7b90ad3 Fix the local directory listing, FTP directory listing and the local file handling (drag'n'drop and opening from the file list). by jshin@chromium.org · 15 years ago
  94. fdaedbf Pass through non-character codepoints in UTF-8,16,32 and Wide conversion functions. by jshin@chromium.org · 15 years ago
  95. 75189cd add CollapseWhitespaceASCII by rafaelw@chromium.org · 15 years ago
  96. 7a664f4 Re-land of earlier NTP theme patch; now with mac and linux compatibility. by glen@chromium.org · 15 years ago
  97. f08fcf3 Undo 16020 by glen@chromium.org · 15 years ago
  98. 67276d0 Allow the new tab page to be themed (you may want to review DOMUIThemeSource as a whole and not just these changes). by glen@chromium.org · 15 years ago
  99. 113ec0d Lands http://codereview.chromium.org/99349 for Ryan. by sky@chromium.org · 15 years ago
  100. 2756262 Convert the internal GetStringF to use string16. This saves a by tc@google.com · 16 years ago