/external/chromium_org/third_party/icu/source/i18n/ |
vzone.cpp | 10 * \brief C API: VTimeZone classes 29 return (VZone*) (VTimeZone::createVTimeZoneByID(s)); 35 return (VZone*) (VTimeZone::createVTimeZone(s,status)); 40 delete (VTimeZone*)zone; 45 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone()); 50 return *(const VTimeZone*)zone1 == *(const VTimeZone*)zone2; 56 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s) [all...] |
vtzone.cpp | 33 // Smybol characters used by RFC2445 VTIMEZONE 41 // RFC2445 VTIMEZONE tokens 42 static const UChar ICAL_BEGIN_VTIMEZONE[] = {0x42, 0x45, 0x47, 0x49, 0x4E, 0x3A, 0x56, 0x54, 0x49, 0x4D, 0x45, 0x5A, 0x4F, 0x4E, 0x45, 0}; /* "BEGIN:VTIMEZONE" */ 43 static const UChar ICAL_END_VTIMEZONE[] = {0x45, 0x4E, 0x44, 0x3A, 0x56, 0x54, 0x49, 0x4D, 0x45, 0x5A, 0x4F, 0x4E, 0x45, 0}; /* "END:VTIMEZONE" */ 46 static const UChar ICAL_VTIMEZONE[] = {0x56, 0x54, 0x49, 0x4D, 0x45, 0x5A, 0x4F, 0x4E, 0x45, 0}; /* "VTIMEZONE" */ 432 // VTIMEZONE property. 442 // VTIMEZONE property. We do not support the case. 948 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(VTimeZone) 950 VTimeZone::VTimeZone() [all...] |
smpdtfmt.cpp | [all...] |
zstrfmt.cpp | [all...] |
/external/icu4c/i18n/ |
vzone.cpp | 10 * \brief C API: VTimeZone classes 29 return (VZone*) (VTimeZone::createVTimeZoneByID(s)); 35 return (VZone*) (VTimeZone::createVTimeZone(s,status)); 40 delete (VTimeZone*)zone; 45 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone()); 50 return *(const VTimeZone*)zone1 == *(const VTimeZone*)zone2; 56 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s) [all...] |
vtzone.cpp | 32 // Smybol characters used by RFC2445 VTIMEZONE 40 // RFC2445 VTIMEZONE tokens 41 static const UChar ICAL_BEGIN_VTIMEZONE[] = {0x42, 0x45, 0x47, 0x49, 0x4E, 0x3A, 0x56, 0x54, 0x49, 0x4D, 0x45, 0x5A, 0x4F, 0x4E, 0x45, 0}; /* "BEGIN:VTIMEZONE" */ 42 static const UChar ICAL_END_VTIMEZONE[] = {0x45, 0x4E, 0x44, 0x3A, 0x56, 0x54, 0x49, 0x4D, 0x45, 0x5A, 0x4F, 0x4E, 0x45, 0}; /* "END:VTIMEZONE" */ 45 static const UChar ICAL_VTIMEZONE[] = {0x56, 0x54, 0x49, 0x4D, 0x45, 0x5A, 0x4F, 0x4E, 0x45, 0}; /* "VTIMEZONE" */ 431 // VTIMEZONE property. 441 // VTIMEZONE property. We do not support the case. 953 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(VTimeZone) 955 VTimeZone::VTimeZone() [all...] |
tzgnames.cpp | 662 || dynamic_cast<VTimeZone *>(tmptz) != NULL) { [all...] |
calendar.cpp | [all...] |
smpdtfmt.cpp | [all...] |
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
vtzone.h | 14 * \brief C++ API: RFC2445 VTIMEZONE support 28 * <code>VTimeZone</code> is a class implementing RFC2445 VTIMEZONE. You can create a 29 * <code>VTimeZone</code> instance from a time zone ID supported by <code>TimeZone</code>. 30 * With the <code>VTimeZone</code> instance created from the ID, you can write out the rule 31 * in RFC2445 VTIMEZONE format. Also, you can create a <code>VTimeZone</code> instance 32 * from RFC2445 VTIMEZONE data stream, which allows you to calculate time 34 * <code>VTimeZone</code> from any other ICU <code>BasicTimeZone</code>. 36 * Note: The consumer of this class reading or writing VTIMEZONE data is responsible t [all...] |
/external/icu4c/i18n/unicode/ |
vtzone.h | 14 * \brief C++ API: RFC2445 VTIMEZONE support 28 * <code>VTimeZone</code> is a class implementing RFC2445 VTIMEZONE. You can create a 29 * <code>VTimeZone</code> instance from a time zone ID supported by <code>TimeZone</code>. 30 * With the <code>VTimeZone</code> instance created from the ID, you can write out the rule 31 * in RFC2445 VTIMEZONE format. Also, you can create a <code>VTimeZone</code> instance 32 * from RFC2445 VTIMEZONE data stream, which allows you to calculate time 34 * <code>VTimeZone</code> from any other ICU <code>BasicTimeZone</code>. 36 * Note: The consumer of this class reading or writing VTIMEZONE data is responsible t [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
tzrulets.cpp | 775 * Write out time zone rules of OlsonTimeZone into VTIMEZONE format, create a new 776 * VTimeZone from the VTIMEZONE data, then compare transitions 795 VTimeZone *vtz_org = VTimeZone::createVTimeZoneByID(*tzid); 798 VTimeZone *vtz_new = NULL; 800 // Write out VTIMEZONE data 804 *tzid + " into VTIMEZONE format."); 806 // Read VTIMEZONE data 807 vtz_new = VTimeZone::createVTimeZone(vtzdata, status) [all...] |
/external/icu4c/test/intltest/ |
tzrulets.cpp | 776 * Write out time zone rules of OlsonTimeZone into VTIMEZONE format, create a new 777 * VTimeZone from the VTIMEZONE data, then compare transitions 796 VTimeZone *vtz_org = VTimeZone::createVTimeZoneByID(*tzid); 799 VTimeZone *vtz_new = NULL; 801 // Write out VTIMEZONE data 805 *tzid + " into VTIMEZONE format."); 807 // Read VTIMEZONE data 808 vtz_new = VTimeZone::createVTimeZone(vtzdata, status) [all...] |
/external/chromium_org/third_party/icu/source/common/unicode/ |
urename.h | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
com.ibm.icu_4.2.1.v20100412.jar | |
/prebuilts/misc/common/icu4j/ |
icu4j.jar | |