/external/chromium_org/third_party/icu/source/i18n/unicode/ |
tztrans.h | 24 class TimeZoneRule; 42 TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to); 115 const TimeZoneRule* getFrom(void) const; 119 * responsible for deleting the <code>TimeZoneRule</code> object. 123 void setFrom(const TimeZoneRule& from); 127 * not delete the <code>TimeZoneRule</code> object passed in. 131 void adoptFrom(TimeZoneRule* from); 135 * responsible for deleting the <code>TimeZoneRule</code> object. 139 void setTo(const TimeZoneRule& to) [all...] |
tzrule.h | 26 * <code>TimeZoneRule</code> is a class representing a rule for time zone. 27 * <code>TimeZoneRule</code> has a set of time zone attributes, such as zone name, 32 class U_I18N_API TimeZoneRule : public UObject { 38 virtual ~TimeZoneRule(); 41 * Clone this TimeZoneRule object polymorphically. The caller owns the result and 46 virtual TimeZoneRule* clone(void) const = 0; 49 * Return true if the given <code>TimeZoneRule</code> objects are semantically equal. Objects 52 * @return true if the given <code>TimeZoneRule</code> objects are semantically equal. 55 virtual UBool operator==(const TimeZoneRule& that) const; 58 * Return true if the given <code>TimeZoneRule</code> objects are semantically unequal. Object [all...] |
rbtz.h | 29 * a BasicTimeZone subclass implemented in terms of InitialTimeZoneRule and TimeZoneRule instances 32 * @see TimeZoneRule 88 * Adds the <code>TimeZoneRule</code> which represents time transitions. 89 * The <code>TimeZoneRule</code> must have start times, that is, the result 92 * The input <code>TimeZoneRule</code> is adopted by this 98 * @param rule The <code>TimeZoneRule</code>. 102 void addTransitionRule(TimeZoneRule* rule, UErrorCode& status); 105 * Makes the <code>TimeZoneRule</code> ready to handle actual timezone 271 * Returns the number of <code>TimeZoneRule</code>s which represents time transitions, 272 * for this time zone, that is, all <code>TimeZoneRule</code>s for this time zone excep [all...] |
basictz.h | 86 * Returns the number of <code>TimeZoneRule</code>s which represents time transitions, 87 * for this time zone, that is, all <code>TimeZoneRule</code>s for this time zone except 90 * @return The number of <code>TimeZoneRule</code>s representing time transitions. 96 * Gets the <code>InitialTimeZoneRule</code> and the set of <code>TimeZoneRule</code> 99 * the array trsrules is filled with 0 or multiple <code>TimeZoneRule</code> 112 const TimeZoneRule* trsrules[], int32_t& trscount, UErrorCode& status) /*const*/ = 0; 194 * Gets the set of TimeZoneRule instances applicable to the specified time and after.
|
/external/icu4c/i18n/unicode/ |
tztrans.h | 24 class TimeZoneRule; 42 TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to); 115 const TimeZoneRule* getFrom(void) const; 119 * responsible for deleting the <code>TimeZoneRule</code> object. 123 void setFrom(const TimeZoneRule& from); 127 * not delete the <code>TimeZoneRule</code> object passed in. 131 void adoptFrom(TimeZoneRule* from); 135 * responsible for deleting the <code>TimeZoneRule</code> object. 139 void setTo(const TimeZoneRule& to) [all...] |
tzrule.h | 26 * <code>TimeZoneRule</code> is a class representing a rule for time zone. 27 * <code>TimeZoneRule</code> has a set of time zone attributes, such as zone name, 32 class U_I18N_API TimeZoneRule : public UObject { 38 virtual ~TimeZoneRule(); 41 * Clone this TimeZoneRule object polymorphically. The caller owns the result and 46 virtual TimeZoneRule* clone(void) const = 0; 49 * Return true if the given <code>TimeZoneRule</code> objects are semantically equal. Objects 52 * @return true if the given <code>TimeZoneRule</code> objects are semantically equal. 55 virtual UBool operator==(const TimeZoneRule& that) const; 58 * Return true if the given <code>TimeZoneRule</code> objects are semantically unequal. Object [all...] |
rbtz.h | 29 * a BasicTimeZone subclass implemented in terms of InitialTimeZoneRule and TimeZoneRule instances 32 * @see TimeZoneRule 88 * Adds the <code>TimeZoneRule</code> which represents time transitions. 89 * The <code>TimeZoneRule</code> must have start times, that is, the result 92 * The input <code>TimeZoneRule</code> is adopted by this 98 * @param rule The <code>TimeZoneRule</code>. 102 void addTransitionRule(TimeZoneRule* rule, UErrorCode& status); 105 * Makes the <code>TimeZoneRule</code> ready to handle actual timezone 271 * Returns the number of <code>TimeZoneRule</code>s which represents time transitions, 272 * for this time zone, that is, all <code>TimeZoneRule</code>s for this time zone excep [all...] |
basictz.h | 86 * Returns the number of <code>TimeZoneRule</code>s which represents time transitions, 87 * for this time zone, that is, all <code>TimeZoneRule</code>s for this time zone except 90 * @return The number of <code>TimeZoneRule</code>s representing time transitions. 96 * Gets the <code>InitialTimeZoneRule</code> and the set of <code>TimeZoneRule</code> 99 * the array trsrules is filled with 0 or multiple <code>TimeZoneRule</code> 112 const TimeZoneRule* trsrules[], int32_t& trscount, UErrorCode& status) const = 0; 198 * Gets the set of TimeZoneRule instances applicable to the specified time and after.
|
/external/chromium_org/third_party/icu/source/i18n/ |
zrule.cpp | 32 delete (TimeZoneRule*)rule; 37 return *(const TimeZoneRule*)rule1 == *(const TimeZoneRule*)rule2; 43 s = ((TimeZoneRule*)rule)->TimeZoneRule::getName(s); 51 return ((TimeZoneRule*)rule)->TimeZoneRule::getRawOffset(); 56 return ((TimeZoneRule*)rule)->TimeZoneRule::getDSTSavings(); 61 return ((TimeZoneRule*)rule1)->TimeZoneRule::isEquivalentTo(*(TimeZoneRule*)rule2) [all...] |
ztrans.cpp | 28 return (ZTrans*) new TimeZoneTransition(time,*(TimeZoneRule*)from,*(TimeZoneRule*)to); 68 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setFrom(*(TimeZoneRule*)from); 73 return ((TimeZoneTransition*)trans)->TimeZoneTransition::adoptFrom((TimeZoneRule*)from); 83 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setTo(*(TimeZoneRule*)to); 88 return ((TimeZoneTransition*)trans)->TimeZoneTransition::adoptTo((TimeZoneRule*)to);
|
tztrans.cpp | 21 TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to) 96 TimeZoneTransition::setFrom(const TimeZoneRule& from) { 104 TimeZoneTransition::adoptFrom(TimeZoneRule* from) { 112 TimeZoneTransition::setTo(const TimeZoneRule& to) { 120 TimeZoneTransition::adoptTo(TimeZoneRule* to) { 132 const TimeZoneRule* 137 const TimeZoneRule*
|
tzrule.cpp | 33 TimeZoneRule::TimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings) 37 TimeZoneRule::TimeZoneRule(const TimeZoneRule& source) 41 TimeZoneRule::~TimeZoneRule() { 44 TimeZoneRule& 45 TimeZoneRule::operator=(const TimeZoneRule& right) [all...] |
rbtz.cpp | 27 TimeZoneRule* from; 28 TimeZoneRule* to; 42 TimeZoneRule *r1 = (TimeZoneRule*)rules1->elementAt(i); 43 TimeZoneRule *r2 = (TimeZoneRule*)rules2->elementAt(i); 114 RuleBasedTimeZone::addTransitionRule(TimeZoneRule* rule, UErrorCode& status) { 164 TimeZoneRule *curRule = fInitialRule; 184 TimeZoneRule *nextRule = NULL; 185 TimeZoneRule *r = NULL [all...] |
basictz.cpp | 294 const TimeZoneRule **orgtrs = NULL; 299 TimeZoneRule *r = NULL; 319 orgtrs = (const TimeZoneRule**)uprv_malloc(sizeof(TimeZoneRule*)*ruleCount); 362 r = (TimeZoneRule*)orgRules->elementAt(i); 383 const TimeZoneRule *toRule = tzt.getTo(); 385 r = (TimeZoneRule*)orgRules->elementAt(i); 507 r = (TimeZoneRule*)orgRules->orphanElementAt(0); 526 r = (TimeZoneRule*)orgRules->orphanElementAt(0); 534 r = (TimeZoneRule*)filteredRules->orphanElementAt(0) [all...] |
simpletz.cpp | [all...] |
vtzone.cpp | 25 // This is the deleter that will be use to remove TimeZoneRule 29 delete (TimeZoneRule*) obj; 524 static TimeZoneRule* createRuleByRRULE(const UnicodeString& zonename, int rawOffset, int dstSavings, UDate start, 725 * Create a TimeZoneRule by the RDATE definition 727 static TimeZoneRule* createRuleByRDATE(const UnicodeString& zonename, int32_t rawOffset, int32_t dstSavings, [all...] |
/external/icu4c/i18n/ |
zrule.cpp | 32 delete (TimeZoneRule*)rule; 37 return *(const TimeZoneRule*)rule1 == *(const TimeZoneRule*)rule2; 43 s = ((TimeZoneRule*)rule)->TimeZoneRule::getName(s); 51 return ((TimeZoneRule*)rule)->TimeZoneRule::getRawOffset(); 56 return ((TimeZoneRule*)rule)->TimeZoneRule::getDSTSavings(); 61 return ((TimeZoneRule*)rule1)->TimeZoneRule::isEquivalentTo(*(TimeZoneRule*)rule2) [all...] |
ztrans.cpp | 28 return (ZTrans*) new TimeZoneTransition(time,*(TimeZoneRule*)from,*(TimeZoneRule*)to); 68 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setFrom(*(TimeZoneRule*)from); 73 return ((TimeZoneTransition*)trans)->TimeZoneTransition::adoptFrom((TimeZoneRule*)from); 83 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setTo(*(TimeZoneRule*)to); 88 return ((TimeZoneTransition*)trans)->TimeZoneTransition::adoptTo((TimeZoneRule*)to);
|
tztrans.cpp | 21 TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to) 96 TimeZoneTransition::setFrom(const TimeZoneRule& from) { 104 TimeZoneTransition::adoptFrom(TimeZoneRule* from) { 112 TimeZoneTransition::setTo(const TimeZoneRule& to) { 120 TimeZoneTransition::adoptTo(TimeZoneRule* to) { 132 const TimeZoneRule* 137 const TimeZoneRule*
|
tzrule.cpp | 33 TimeZoneRule::TimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings) 37 TimeZoneRule::TimeZoneRule(const TimeZoneRule& source) 41 TimeZoneRule::~TimeZoneRule() { 44 TimeZoneRule& 45 TimeZoneRule::operator=(const TimeZoneRule& right) [all...] |
rbtz.cpp | 28 TimeZoneRule* from; 29 TimeZoneRule* to; 43 TimeZoneRule *r1 = (TimeZoneRule*)rules1->elementAt(i); 44 TimeZoneRule *r2 = (TimeZoneRule*)rules2->elementAt(i); 115 RuleBasedTimeZone::addTransitionRule(TimeZoneRule* rule, UErrorCode& status) { 184 TimeZoneRule *curRule = fInitialRule; 204 TimeZoneRule *nextRule = NULL; 205 TimeZoneRule *r = NULL [all...] |
dangical.cpp | 115 TimeZoneRule* rule1897 = new TimeArrayTimeZoneRule(UNICODE_STRING_SIMPLE("Korean 1897"), 7*kOneHour, 0, millis1897, 1, DateTimeRule::STANDARD_TIME); 116 TimeZoneRule* rule1898to1911 = new TimeArrayTimeZoneRule(UNICODE_STRING_SIMPLE("Korean 1898-1911"), 8*kOneHour, 0, millis1898, 1, DateTimeRule::STANDARD_TIME); 117 TimeZoneRule* ruleFrom1912 = new TimeArrayTimeZoneRule(UNICODE_STRING_SIMPLE("Korean 1912-"), 9*kOneHour, 0, millis1912, 1, DateTimeRule::STANDARD_TIME);
|
basictz.cpp | 294 const TimeZoneRule **orgtrs = NULL; 299 TimeZoneRule *r = NULL; 319 orgtrs = (const TimeZoneRule**)uprv_malloc(sizeof(TimeZoneRule*)*ruleCount); 362 r = (TimeZoneRule*)orgRules->elementAt(i); 383 const TimeZoneRule *toRule = tzt.getTo(); 385 r = (TimeZoneRule*)orgRules->elementAt(i); 507 r = (TimeZoneRule*)orgRules->orphanElementAt(0); 526 r = (TimeZoneRule*)orgRules->orphanElementAt(0); 534 r = (TimeZoneRule*)filteredRules->orphanElementAt(0) [all...] |
simpletz.cpp | [all...] |
vtzone.cpp | 24 // This is the deleter that will be use to remove TimeZoneRule 28 delete (TimeZoneRule*) obj; 523 static TimeZoneRule* createRuleByRRULE(const UnicodeString& zonename, int rawOffset, int dstSavings, UDate start, 724 * Create a TimeZoneRule by the RDATE definition 726 static TimeZoneRule* createRuleByRDATE(const UnicodeString& zonename, int32_t rawOffset, int32_t dstSavings, [all...] |