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

Side by Side Diff: third_party/icu/source/i18n/nfsubs.cpp

Issue 6520018: Get ICU 4.6 to be compiled without RTTI.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: do not include typeinfo at all Created 9 years, 10 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 | « third_party/icu/source/i18n/msgfmt.cpp ('k') | third_party/icu/source/i18n/numfmt.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 * Copyright (C) 1997-2010, International Business Machines 3 * Copyright (C) 1997-2010, International Business Machines
4 * Corporation and others. All Rights Reserved. 4 * Corporation and others. All Rights Reserved.
5 ****************************************************************************** 5 ******************************************************************************
6 * file name: nfsubs.cpp 6 * file name: nfsubs.cpp
7 * encoding: US-ASCII 7 * encoding: US-ASCII
8 * tab size: 8 (not used) 8 * tab size: 8 (not used)
9 * indentation:4 9 * indentation:4
10 * 10 *
11 * Modification history 11 * Modification history
12 * Date Name Comments 12 * Date Name Comments
13 * 10/11/2001 Doug Ported from ICU4J 13 * 10/11/2001 Doug Ported from ICU4J
14 */ 14 */
15 15
16 #include <stdio.h> 16 #include <stdio.h>
17 #include <typeinfo> // for 'typeid' to work
18 17
19 #include "nfsubs.h" 18 #include "nfsubs.h"
20 #include "digitlst.h" 19 #include "digitlst.h"
21 20
22 #if U_HAVE_RBNF 21 #if U_HAVE_RBNF
23 22
24 static const UChar gLessThan = 0x003c; 23 static const UChar gLessThan = 0x003c;
25 static const UChar gEquals = 0x003d; 24 static const UChar gEquals = 0x003d;
26 static const UChar gGreaterThan = 0x003e; 25 static const UChar gGreaterThan = 0x003e;
27 static const UChar gPercent = 0x0025; 26 static const UChar gPercent = 0x0025;
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 * Compares two substitutions for equality 518 * Compares two substitutions for equality
520 * @param The substitution to compare this one to 519 * @param The substitution to compare this one to
521 * @return true if the two substitutions are functionally equivalent 520 * @return true if the two substitutions are functionally equivalent
522 */ 521 */
523 UBool 522 UBool
524 NFSubstitution::operator==(const NFSubstitution& rhs) const 523 NFSubstitution::operator==(const NFSubstitution& rhs) const
525 { 524 {
526 // compare class and all of the fields all substitutions have 525 // compare class and all of the fields all substitutions have
527 // in common 526 // in common
528 // this should be called by subclasses before their own equality tests 527 // this should be called by subclasses before their own equality tests
529 return typeid(*this) == typeid(rhs) 528 return CR_TYPEID(*this) == CR_TYPEID(rhs)
530 && pos == rhs.pos 529 && pos == rhs.pos
531 && (ruleSet == NULL) == (rhs.ruleSet == NULL) 530 && (ruleSet == NULL) == (rhs.ruleSet == NULL)
532 // && ruleSet == rhs.ruleSet causes circularity, other checks to make instead? 531 // && ruleSet == rhs.ruleSet causes circularity, other checks to make instead?
533 && (numberFormat == NULL 532 && (numberFormat == NULL
534 ? (rhs.numberFormat == NULL) 533 ? (rhs.numberFormat == NULL)
535 : (*numberFormat == *rhs.numberFormat)); 534 : (*numberFormat == *rhs.numberFormat));
536 } 535 }
537 536
538 /** 537 /**
539 * Returns a textual description of the substitution 538 * Returns a textual description of the substitution
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
1308 // NullSubstitution 1307 // NullSubstitution
1309 //=================================================================== 1308 //===================================================================
1310 1309
1311 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(NullSubstitution) 1310 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(NullSubstitution)
1312 1311
1313 U_NAMESPACE_END 1312 U_NAMESPACE_END
1314 1313
1315 /* U_HAVE_RBNF */ 1314 /* U_HAVE_RBNF */
1316 #endif 1315 #endif
1317 1316
OLDNEW
« no previous file with comments | « third_party/icu/source/i18n/msgfmt.cpp ('k') | third_party/icu/source/i18n/numfmt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698