OLD | NEW |
1 /******************************************************************** | 1 /******************************************************************** |
2 * COPYRIGHT: | 2 * COPYRIGHT: |
3 * Copyright (c) 1997-2013, International Business Machines Corporation and | 3 * Copyright (c) 1997-2014, International Business Machines Corporation and |
4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
5 ********************************************************************/ | 5 ********************************************************************/ |
6 /*******************************************************************************
* | 6 /*******************************************************************************
* |
7 * | 7 * |
8 * File CDATTST.H | 8 * File CDATTST.H |
9 * | 9 * |
10 * Modification History: | 10 * Modification History: |
11 * Name Description | 11 * Name Description |
12 * Madhu Katragadda Creation | 12 * Madhu Katragadda Creation |
13 ********************************************************************************
* | 13 ********************************************************************************
* |
(...skipping 30 matching lines...) Expand all Loading... |
44 static void VerifygetSymbols(UDateFormat*, UDateFormatSymbolType, int32_t, c
onst char*); | 44 static void VerifygetSymbols(UDateFormat*, UDateFormatSymbolType, int32_t, c
onst char*); |
45 static void VerifysetSymbols(UDateFormat*, UDateFormatSymbolType, int32_t, c
onst char*); | 45 static void VerifysetSymbols(UDateFormat*, UDateFormatSymbolType, int32_t, c
onst char*); |
46 static void VerifygetsetSymbols(UDateFormat*, UDateFormat*, UDateFormatSymbo
lType, int32_t); | 46 static void VerifygetsetSymbols(UDateFormat*, UDateFormat*, UDateFormatSymbo
lType, int32_t); |
47 | 47 |
48 /** | 48 /** |
49 * test subroutine used by the testing functions | 49 * test subroutine used by the testing functions |
50 **/ | 50 **/ |
51 static UChar* myNumformat(const UNumberFormat* numfor, double d); | 51 static UChar* myNumformat(const UNumberFormat* numfor, double d); |
52 static int getCurrentYear(void); | 52 static int getCurrentYear(void); |
53 | 53 |
| 54 /** |
| 55 * Test DateFormat override number format API |
| 56 */ |
| 57 static void TestOverrideNumberFormat(void); |
| 58 |
| 59 |
54 #endif /* #if !UCONFIG_NO_FORMATTING */ | 60 #endif /* #if !UCONFIG_NO_FORMATTING */ |
55 | 61 |
56 #endif | 62 #endif |
OLD | NEW |