| OLD | NEW |
| 1 /* | 1 /* |
| 2 ****************************************************************************** | 2 ****************************************************************************** |
| 3 * Copyright (C) 1996-2010, International Business Machines * | 3 * Copyright (C) 1996-2010, International Business Machines * |
| 4 * Corporation and others. All Rights Reserved. * | 4 * Corporation and others. All Rights Reserved. * |
| 5 ****************************************************************************** | 5 ****************************************************************************** |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 /** | 8 /** |
| 9 * \file | 9 * \file |
| 10 * \brief C++ API: Boyer-Moore StringSearch technology preview | 10 * \brief C++ API: Boyer-Moore StringSearch technology preview |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 BadCharacterTable *badCharacterTable; | 217 BadCharacterTable *badCharacterTable; |
| 218 GoodSuffixTable *goodSuffixTable; | 218 GoodSuffixTable *goodSuffixTable; |
| 219 UnicodeString pattern; | 219 UnicodeString pattern; |
| 220 Target *target; | 220 Target *target; |
| 221 }; | 221 }; |
| 222 | 222 |
| 223 U_NAMESPACE_END | 223 U_NAMESPACE_END |
| 224 | 224 |
| 225 #endif // #if !UCONFIG_NO_COLLATION | 225 #endif // #if !UCONFIG_NO_COLLATION |
| 226 #endif // #ifndef B_M_SEARCH_H | 226 #endif // #ifndef B_M_SEARCH_H |
| OLD | NEW |