OLD | NEW |
1 /******************************************************************** | 1 /******************************************************************** |
2 * COPYRIGHT: | 2 * COPYRIGHT: |
3 * Copyright (c) 1999-2013 International Business Machines Corporation and | 3 * Copyright (c) 1999-2014 International Business Machines Corporation and |
4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
5 ********************************************************************/ | 5 ********************************************************************/ |
6 /************************************************************************ | 6 /************************************************************************ |
7 * Date Name Description | 7 * Date Name Description |
8 * 12/14/99 Madhu Creation. | 8 * 12/14/99 Madhu Creation. |
9 ************************************************************************/ | 9 ************************************************************************/ |
10 | 10 |
11 | 11 |
12 | 12 |
13 #ifndef RBBIAPITEST_H | 13 #ifndef RBBIAPITEST_H |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 void TestHashCode(); | 46 void TestHashCode(); |
47 /** | 47 /** |
48 * Tests the methods getText() and setText() of RuleBasedBreakIterator | 48 * Tests the methods getText() and setText() of RuleBasedBreakIterator |
49 **/ | 49 **/ |
50 void TestGetSetAdoptText(); | 50 void TestGetSetAdoptText(); |
51 /** | 51 /** |
52 * Testing the iteration methods of RuleBasedBreakIterator | 52 * Testing the iteration methods of RuleBasedBreakIterator |
53 **/ | 53 **/ |
54 void TestIteration(void); | 54 void TestIteration(void); |
55 | 55 |
| 56 void TestFilteredBreakIteratorBuilder(void); |
56 | 57 |
57 /** | 58 /** |
58 * Tests creating RuleBasedBreakIterator from rules strings. | 59 * Tests creating RuleBasedBreakIterator from rules strings. |
59 **/ | 60 **/ |
60 void TestBuilder(void); | 61 void TestBuilder(void); |
61 | 62 |
62 void TestRoundtripRules(void); | 63 void TestRoundtripRules(void); |
63 | 64 |
64 void RoundtripRule(const char *dataFile); | 65 void RoundtripRule(const char *dataFile); |
65 | 66 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 enum EDontAdopt { | 109 enum EDontAdopt { |
109 kDontAdopt | 110 kDontAdopt |
110 }; | 111 }; |
111 RBBIWithProtectedFunctions(RBBIDataHeader* data, UErrorCode &status); | 112 RBBIWithProtectedFunctions(RBBIDataHeader* data, UErrorCode &status); |
112 RBBIWithProtectedFunctions(const RBBIDataHeader* data, enum EDontAdopt dontA
dopt, UErrorCode &status); | 113 RBBIWithProtectedFunctions(const RBBIDataHeader* data, enum EDontAdopt dontA
dopt, UErrorCode &status); |
113 }; | 114 }; |
114 | 115 |
115 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */ | 116 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */ |
116 | 117 |
117 #endif | 118 #endif |
OLD | NEW |