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

Side by Side Diff: third_party/icu/source/common/schriter.cpp

Issue 6484008: Enable RTTI for ICU.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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/common/rbbi.cpp ('k') | third_party/icu/source/common/uchriter.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) 1998-2010, International Business Machines Corporation and 3 * Copyright (C) 1998-2010, International Business Machines Corporation and
4 * others. All Rights Reserved. 4 * others. All Rights Reserved.
5 ****************************************************************************** 5 ******************************************************************************
6 * 6 *
7 * File schriter.cpp 7 * File schriter.cpp
8 * 8 *
9 * Modification History: 9 * Modification History:
10 * 10 *
11 * Date Name Description 11 * Date Name Description
12 * 05/05/99 stephen Cleaned up. 12 * 05/05/99 stephen Cleaned up.
13 ****************************************************************************** 13 ******************************************************************************
14 */ 14 */
15 15
16 #include <typeinfo> // for 'typeid' to work 16 #include "unicode/utypeinfo.h" // for 'typeid' to work
17 17
18 #include "unicode/chariter.h" 18 #include "unicode/chariter.h"
19 #include "unicode/schriter.h" 19 #include "unicode/schriter.h"
20 20
21 U_NAMESPACE_BEGIN 21 U_NAMESPACE_BEGIN
22 22
23 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringCharacterIterator) 23 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringCharacterIterator)
24 24
25 StringCharacterIterator::StringCharacterIterator() 25 StringCharacterIterator::StringCharacterIterator()
26 : UCharCharacterIterator(), 26 : UCharCharacterIterator(),
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 StringCharacterIterator::setText(const UnicodeString& newText) { 108 StringCharacterIterator::setText(const UnicodeString& newText) {
109 text = newText; 109 text = newText;
110 UCharCharacterIterator::setText(text.getBuffer(), text.length()); 110 UCharCharacterIterator::setText(text.getBuffer(), text.length());
111 } 111 }
112 112
113 void 113 void
114 StringCharacterIterator::getText(UnicodeString& result) { 114 StringCharacterIterator::getText(UnicodeString& result) {
115 result = text; 115 result = text;
116 } 116 }
117 U_NAMESPACE_END 117 U_NAMESPACE_END
OLDNEW
« no previous file with comments | « third_party/icu/source/common/rbbi.cpp ('k') | third_party/icu/source/common/uchriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698