OLD | NEW |
1 /* | 1 /* |
2 *************************************************************************** | 2 *************************************************************************** |
3 * Copyright (C) 1999-2010 International Business Machines Corporation | 3 * Copyright (C) 1999-2010 International Business Machines Corporation |
4 * and others. All rights reserved. | 4 * and others. All rights reserved. |
5 *************************************************************************** | 5 *************************************************************************** |
6 */ | 6 */ |
7 // | 7 // |
8 // file: rbbi.c Contains the implementation of the rule based break iterato
r | 8 // file: rbbi.c Contains the implementation of the rule based break iterato
r |
9 // runtime engine and the API implementation for | 9 // runtime engine and the API implementation for |
10 // class RuleBasedBreakIterator | 10 // class RuleBasedBreakIterator |
11 // | 11 // |
12 | 12 |
13 #include <typeinfo> // for 'typeid' to work | 13 #include "unicode/utypeinfo.h" // for 'typeid' to work |
14 | 14 |
15 #include "unicode/utypes.h" | 15 #include "unicode/utypes.h" |
16 | 16 |
17 #if !UCONFIG_NO_BREAK_ITERATION | 17 #if !UCONFIG_NO_BREAK_ITERATION |
18 | 18 |
19 #include "unicode/rbbi.h" | 19 #include "unicode/rbbi.h" |
20 #include "unicode/schriter.h" | 20 #include "unicode/schriter.h" |
21 #include "unicode/uchriter.h" | 21 #include "unicode/uchriter.h" |
22 #include "unicode/udata.h" | 22 #include "unicode/udata.h" |
23 #include "unicode/uclean.h" | 23 #include "unicode/uclean.h" |
(...skipping 1848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1872 }*/ | 1872 }*/ |
1873 | 1873 |
1874 void RuleBasedBreakIterator::setBreakType(int32_t type) { | 1874 void RuleBasedBreakIterator::setBreakType(int32_t type) { |
1875 fBreakType = type; | 1875 fBreakType = type; |
1876 reset(); | 1876 reset(); |
1877 } | 1877 } |
1878 | 1878 |
1879 U_NAMESPACE_END | 1879 U_NAMESPACE_END |
1880 | 1880 |
1881 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */ | 1881 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */ |
OLD | NEW |