OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // This file defines utility functions for working with strings. | 5 // This file defines utility functions for working with strings. |
6 | 6 |
7 #ifndef BASE_STRING_UTIL_H_ | 7 #ifndef BASE_STRING_UTIL_H_ |
8 #define BASE_STRING_UTIL_H_ | 8 #define BASE_STRING_UTIL_H_ |
9 | 9 |
10 #include <stdarg.h> // va_list | 10 #include <stdarg.h> // va_list |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 } // namespace base | 114 } // namespace base |
115 | 115 |
116 #if defined(OS_WIN) | 116 #if defined(OS_WIN) |
117 #include "base/string_util_win.h" | 117 #include "base/string_util_win.h" |
118 #elif defined(OS_POSIX) | 118 #elif defined(OS_POSIX) |
119 #include "base/string_util_posix.h" | 119 #include "base/string_util_posix.h" |
120 #else | 120 #else |
121 #error Define string operations appropriately for your platform | 121 #error Define string operations appropriately for your platform |
122 #endif | 122 #endif |
123 | 123 |
124 // Returns a reference to a globally unique empty string that functions can | 124 // These threadsafe functions return references to globally unique empty |
125 // return. Use this to avoid static construction of strings, not to replace | 125 // strings. |
126 // any and all uses of "std::string()" as nicer-looking sugar. | 126 // |
127 // These functions are threadsafe. | 127 // DO NOT USE THESE AS A GENERAL-PURPOSE SUBSTITUTE FOR DEFAULT CONSTRUCTORS. |
| 128 // There is only one case where you should use these: functions which need to |
| 129 // return a string by reference (e.g. as a class member accessor), and don't |
| 130 // have an empty string to use (e.g. in an error case). These should not be |
| 131 // used as initializers, function arguments, or return values for functions |
| 132 // which return by value or outparam. |
128 const std::string& EmptyString(); | 133 const std::string& EmptyString(); |
129 const std::wstring& EmptyWString(); | 134 const std::wstring& EmptyWString(); |
130 const string16& EmptyString16(); | 135 const string16& EmptyString16(); |
131 | 136 |
132 extern const wchar_t kWhitespaceWide[]; | 137 extern const wchar_t kWhitespaceWide[]; |
133 extern const char16 kWhitespaceUTF16[]; | 138 extern const char16 kWhitespaceUTF16[]; |
134 extern const char kWhitespaceASCII[]; | 139 extern const char kWhitespaceASCII[]; |
135 | 140 |
136 extern const char kUtf8ByteOrderMark[]; | 141 extern const char kUtf8ByteOrderMark[]; |
137 | 142 |
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 #elif defined(WCHAR_T_IS_UTF32) | 648 #elif defined(WCHAR_T_IS_UTF32) |
644 typedef uint32 Unsigned; | 649 typedef uint32 Unsigned; |
645 #endif | 650 #endif |
646 }; | 651 }; |
647 template<> | 652 template<> |
648 struct ToUnsigned<short> { | 653 struct ToUnsigned<short> { |
649 typedef unsigned short Unsigned; | 654 typedef unsigned short Unsigned; |
650 }; | 655 }; |
651 | 656 |
652 #endif // BASE_STRING_UTIL_H_ | 657 #endif // BASE_STRING_UTIL_H_ |
OLD | NEW |