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

Side by Side Diff: source/i18n/digitlst.h

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 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/i18n/decimfmt.cpp ('k') | source/i18n/digitlst.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-2012, 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 DIGITLST.H 9 * File DIGITLST.H
10 * 10 *
11 * Modification History: 11 * Modification History:
12 * 12 *
13 * Date Name Description 13 * Date Name Description
14 * 02/25/97 aliu Converted from java. 14 * 02/25/97 aliu Converted from java.
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 kDouble, 406 kDouble,
407 kInt64 407 kInt64
408 } fHave; 408 } fHave;
409 409
410 410
411 411
412 UBool shouldRoundUp(int32_t maximumDigits) const; 412 UBool shouldRoundUp(int32_t maximumDigits) const;
413 413
414 public: 414 public:
415 415
416 #if U_OVERRIDE_CXX_ALLOCATION
416 using UMemory::operator new; 417 using UMemory::operator new;
417 using UMemory::operator delete; 418 using UMemory::operator delete;
419 #else
420 static inline void * U_EXPORT2 operator new(size_t size) U_NO_THROW { return ::operator new(size); };
421 static inline void U_EXPORT2 operator delete(void *ptr ) U_NO_THROW { ::ope rator delete(ptr); };
422 #endif
418 423
419 /** 424 /**
420 * Placement new for stack usage 425 * Placement new for stack usage
421 * @internal 426 * @internal
422 */ 427 */
423 static inline void * U_EXPORT2 operator new(size_t /*size*/, void * onStack, EStackMode /*mode*/) U_NO_THROW { return onStack; } 428 static inline void * U_EXPORT2 operator new(size_t /*size*/, void * onStack, EStackMode /*mode*/) U_NO_THROW { return onStack; }
424 429
425 /** 430 /**
426 * Placement delete for stack usage 431 * Placement delete for stack usage
427 * @internal 432 * @internal
(...skipping 14 matching lines...) Expand all
442 } 447 }
443 }; 448 };
444 449
445 450
446 U_NAMESPACE_END 451 U_NAMESPACE_END
447 452
448 #endif // #if !UCONFIG_NO_FORMATTING 453 #endif // #if !UCONFIG_NO_FORMATTING
449 #endif // _DIGITLST 454 #endif // _DIGITLST
450 455
451 //eof 456 //eof
OLDNEW
« no previous file with comments | « source/i18n/decimfmt.cpp ('k') | source/i18n/digitlst.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698