Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(420)

Side by Side Diff: source/common/unicode/stringpiece.h

Issue 18836004: Move ICU headers from public/{common,i18n} to source/{common,i18n} (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu46.git@master
Patch Set: same as ps #3. retry uploading Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/common/unicode/strenum.h ('k') | source/common/unicode/symtable.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (C) 2010, International Business Machines 1 // Copyright (C) 2010, International Business Machines
2 // Corporation and others. All Rights Reserved. 2 // Corporation and others. All Rights Reserved.
3 // 3 //
4 // Copyright 2001 and onwards Google Inc. 4 // Copyright 2001 and onwards Google Inc.
5 // Author: Sanjay Ghemawat 5 // Author: Sanjay Ghemawat
6 6
7 // This code is a contribution of Google code, and the style used here is 7 // This code is a contribution of Google code, and the style used here is
8 // a compromise between the original Google code and the ICU coding guidelines. 8 // a compromise between the original Google code and the ICU coding guidelines.
9 // For example, data types are ICU-ified (size_t,int->int32_t), 9 // For example, data types are ICU-ified (size_t,int->int32_t),
10 // and API comments doxygen-ified, but function names and behavior are 10 // and API comments doxygen-ified, but function names and behavior are
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 * @return TRUE if the string data is not equal 215 * @return TRUE if the string data is not equal
216 * @internal 216 * @internal
217 */ 217 */
218 inline UBool operator!=(const StringPiece& x, const StringPiece& y) { 218 inline UBool operator!=(const StringPiece& x, const StringPiece& y) {
219 return !(x == y); 219 return !(x == y);
220 } 220 }
221 221
222 U_NAMESPACE_END 222 U_NAMESPACE_END
223 223
224 #endif // __STRINGPIECE_H__ 224 #endif // __STRINGPIECE_H__
OLDNEW
« no previous file with comments | « source/common/unicode/strenum.h ('k') | source/common/unicode/symtable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698