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

Side by Side Diff: icu52/source/common/putilimp.h

Issue 224943002: icu local change part1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: function indentation changed Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « icu52/source/common/locmap.c ('k') | icu52/source/common/stringpiece.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ****************************************************************************** 2 ******************************************************************************
3 * 3 *
4 * Copyright (C) 1997-2013, International Business Machines 4 * Copyright (C) 1997-2013, International Business Machines
5 * Corporation and others. All Rights Reserved. 5 * Corporation and others. All Rights Reserved.
6 * 6 *
7 ****************************************************************************** 7 ******************************************************************************
8 * 8 *
9 * FILE NAME : putilimp.h 9 * FILE NAME : putilimp.h
10 * 10 *
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 #if !defined(U_HAVE_MSVC_2003_OR_EARLIER) && defined(_MSC_VER) && (_MSC_VER < 14 00) 78 #if !defined(U_HAVE_MSVC_2003_OR_EARLIER) && defined(_MSC_VER) && (_MSC_VER < 14 00)
79 #define U_HAVE_MSVC_2003_OR_EARLIER 79 #define U_HAVE_MSVC_2003_OR_EARLIER
80 #endif 80 #endif
81 81
82 /*===========================================================================*/ 82 /*===========================================================================*/
83 /** @{ Information about POSIX support */ 83 /** @{ Information about POSIX support */
84 /*===========================================================================*/ 84 /*===========================================================================*/
85 85
86 #ifdef U_HAVE_NL_LANGINFO_CODESET 86 #ifdef U_HAVE_NL_LANGINFO_CODESET
87 /* Use the predefined value. */ 87 /* Use the predefined value. */
88 #elif U_PLATFORM_HAS_WIN32_API 88 #elif U_PLATFORM_HAS_WIN32_API || U_PLATFORM == U_PF_ANDROID || U_PLATFORM == U_ PF_QNX
89 # define U_HAVE_NL_LANGINFO_CODESET 0 89 # define U_HAVE_NL_LANGINFO_CODESET 0
90 #else 90 #else
91 # define U_HAVE_NL_LANGINFO_CODESET 1 91 # define U_HAVE_NL_LANGINFO_CODESET 1
92 #endif 92 #endif
93 93
94 #ifdef U_NL_LANGINFO_CODESET 94 #ifdef U_NL_LANGINFO_CODESET
95 /* Use the predefined value. */ 95 /* Use the predefined value. */
96 #elif !U_HAVE_NL_LANGINFO_CODESET 96 #elif !U_HAVE_NL_LANGINFO_CODESET
97 # define U_NL_LANGINFO_CODESET -1 97 # define U_NL_LANGINFO_CODESET -1
98 #elif U_PLATFORM == U_PF_OS400 98 #elif U_PLATFORM == U_PF_OS400
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 /* also _C_TS_calloc(x) */ 598 /* also _C_TS_calloc(x) */
599 #else 599 #else
600 /* C defaults */ 600 /* C defaults */
601 # define uprv_default_malloc(x) malloc(x) 601 # define uprv_default_malloc(x) malloc(x)
602 # define uprv_default_realloc(x,y) realloc(x,y) 602 # define uprv_default_realloc(x,y) realloc(x,y)
603 # define uprv_default_free(x) free(x) 603 # define uprv_default_free(x) free(x)
604 #endif 604 #endif
605 605
606 606
607 #endif 607 #endif
OLDNEW
« no previous file with comments | « icu52/source/common/locmap.c ('k') | icu52/source/common/stringpiece.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698