HomeSort by relevance Sort by last modified time
    Searched refs:VTimeZone (Results 1 - 19 of 19) sorted by null

  /external/icu/icu4c/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.
954 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(VTimeZone)
956 VTimeZone::VTimeZone()
    [all...]
tzgnames.cpp 657 || dynamic_cast<VTimeZone *>(tmptz) != NULL) {
    [all...]
calendar.cpp     [all...]
smpdtfmt.cpp     [all...]
  /external/icu/icu4c/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/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneRuleTest.java 33 import android.icu.util.VTimeZone;
434 * Write out time zone rules of OlsonTimeZone into VTIMEZONE format, create a new
435 * VTimeZone from the VTIMEZONE data, then compare transitions
444 VTimeZone vtz_org = VTimeZone.create(tzids[i]);
447 VTimeZone vtz_new = null;
449 // Write out VTIMEZONE
455 // Read VTIMEZONE
458 vtz_new = VTimeZone.create(reader)
    [all...]
TimeZoneTest.java 40 import android.icu.util.VTimeZone;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneRuleTest.java 32 import com.ibm.icu.util.VTimeZone;
430 * Write out time zone rules of OlsonTimeZone into VTIMEZONE format, create a new
431 * VTimeZone from the VTIMEZONE data, then compare transitions
440 VTimeZone vtz_org = VTimeZone.create(tzids[i]);
443 VTimeZone vtz_new = null;
445 // Write out VTIMEZONE
451 // Read VTIMEZONE
454 vtz_new = VTimeZone.create(reader)
    [all...]
TimeZoneTest.java 39 import com.ibm.icu.util.VTimeZone;
    [all...]
  /external/icu/icu4c/source/test/intltest/
tzrulets.cpp 774 * Write out time zone rules of OlsonTimeZone into VTIMEZONE format, create a new
775 * VTimeZone from the VTIMEZONE data, then compare transitions
794 VTimeZone *vtz_org = VTimeZone::createVTimeZoneByID(*tzid);
797 VTimeZone *vtz_new = NULL;
799 // Write out VTIMEZONE data
803 *tzid + " into VTIMEZONE format.");
805 // Read VTIMEZONE data
806 vtz_new = VTimeZone::createVTimeZone(vtzdata, status)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
VTimeZone.java 24 * <code>VTimeZone</code> is a class implementing RFC2445 VTIMEZONE. You can create a
25 * <code>VTimeZone</code> instance from a time zone ID supported by <code>TimeZone</code>.
26 * With the <code>VTimeZone</code> instance created from the ID, you can write out the rule
27 * in RFC2445 VTIMEZONE format. Also, you can create a <code>VTimeZone</code> instance
28 * from RFC2445 VTIMEZONE data stream, which allows you to calculate time
31 * Note: The consumer of this class reading or writing VTIMEZONE data is responsible to
32 * decode or encode Non-ASCII text. Methods reading/writing VTIMEZONE data in this class
37 public class VTimeZone extends BasicTimeZone
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
VTimeZone.java 23 * <code>VTimeZone</code> is a class implementing RFC2445 VTIMEZONE. You can create a
24 * <code>VTimeZone</code> instance from a time zone ID supported by <code>TimeZone</code>.
25 * With the <code>VTimeZone</code> instance created from the ID, you can write out the rule
26 * in RFC2445 VTIMEZONE format. Also, you can create a <code>VTimeZone</code> instance
27 * from RFC2445 VTIMEZONE data stream, which allows you to calculate time
30 * Note: The consumer of this class reading or writing VTIMEZONE data is responsible to
31 * decode or encode Non-ASCII text. Methods reading/writing VTIMEZONE data in this class
36 public class VTimeZone extends BasicTimeZone
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
SerializableTest.java 41 import android.icu.util.VTimeZone;
190 VTimeZone[] vtzs = new VTimeZone[1];
191 vtzs[0] = VTimeZone.create("America/New_York");
705 map.put("android.icu.util.VTimeZone", new VTimeZoneHandler());
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
SerializableTest.java 40 import com.ibm.icu.util.VTimeZone;
186 VTimeZone[] vtzs = new VTimeZone[1];
187 vtzs[0] = VTimeZone.create("America/New_York");
701 map.put("com.ibm.icu.util.VTimeZone", new VTimeZoneHandler());
    [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 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 839 milliseconds