本文整理汇总了C++中TLocale::TimeSeparator方法的典型用法代码示例。如果您正苦于以下问题:C++ TLocale::TimeSeparator方法的具体用法?C++ TLocale::TimeSeparator怎么用?C++ TLocale::TimeSeparator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TLocale
的用法示例。
在下文中一共展示了TLocale::TimeSeparator方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testUK
void testUK(const TLocale& aLocale)
{
//#ifdef __WINS__
test(aLocale.CountryCode()==44);
test(aLocale.DateFormat()==EDateEuropean);
test(aLocale.TimeFormat()==ETime12);
test(aLocale.CurrencySymbolPosition()==ELocaleBefore);
test(aLocale.CurrencySpaceBetween()==FALSE);
test(aLocale.CurrencyDecimalPlaces()==2);
test(aLocale.CurrencyNegativeInBrackets()==EFalse);
test(aLocale.CurrencyTriadsAllowed()==TRUE);
test(aLocale.ThousandsSeparator()==',');
test(aLocale.DecimalSeparator()=='.');
test(aLocale.DateSeparator(0)==0);
test(aLocale.DateSeparator(1)=='/');
test(aLocale.DateSeparator(2)=='/');
test(aLocale.DateSeparator(3)==0);
test(aLocale.TimeSeparator(0)==0);
test(aLocale.TimeSeparator(1)==':');
test(aLocale.TimeSeparator(2)==':');
test(aLocale.TimeSeparator(3)==0);
test(aLocale.AmPmSymbolPosition()==TRUE);
test(aLocale.AmPmSpaceBetween()==TRUE);
test(aLocale.HomeDaylightSavingZone()==EDstEuropean);
test(aLocale.WorkDays()==0x1f);
test(aLocale.StartOfWeek()==EMonday);
test(aLocale.ClockFormat()==EClockAnalog);
test(aLocale.UnitsGeneral()==EUnitsImperial);
test(aLocale.UnitsDistanceShort()==EUnitsImperial);
test(aLocale.UnitsDistanceLong()==EUnitsImperial);
//#endif
}
示例2: testUS
void testUS(const TLocale& aLocale)
{
test.Printf(_L("Test US\n"));
test(aLocale.CountryCode()==1);
test(aLocale.DateFormat()==EDateAmerican);
test(aLocale.TimeFormat()==ETime12);
test(aLocale.CurrencySymbolPosition()==ELocaleBefore);
test(aLocale.CurrencySpaceBetween()==FALSE);
test(aLocale.CurrencyDecimalPlaces()==2);
test(aLocale.CurrencyNegativeInBrackets()==EFalse);
test(aLocale.CurrencyTriadsAllowed()==TRUE);
test(aLocale.ThousandsSeparator()==',');
test(aLocale.DecimalSeparator()=='.');
test(aLocale.DateSeparator(0)==0);
test(aLocale.DateSeparator(1)=='/');
test(aLocale.DateSeparator(2)=='/');
test(aLocale.DateSeparator(3)==0);
test(aLocale.TimeSeparator(0)==0);
test(aLocale.TimeSeparator(1)==':');
test(aLocale.TimeSeparator(2)==':');
test(aLocale.TimeSeparator(3)==0);
test(aLocale.AmPmSymbolPosition()==TRUE);
test(aLocale.AmPmSpaceBetween()==TRUE);
test(aLocale.HomeDaylightSavingZone()==EDstNorthern);
test(aLocale.WorkDays()==0x1f);
test(aLocale.StartOfWeek()==ESunday);
test(aLocale.ClockFormat()==EClockAnalog);
test(aLocale.UnitsGeneral()==EUnitsImperial);
test(aLocale.UnitsDistanceShort()==EUnitsImperial);
test(aLocale.UnitsDistanceLong()==EUnitsImperial);
}
示例3: initialiseTimeFormat
static void initialiseTimeFormat()
{
if(timeFormat.Length())
return;
TLocale locale;
//Separator 1 is used between 1st and 2nd components of the time
//Separator 2 is used between 2nd and 3rd components of the time
//Usually they are the same, but they are allowed to be different
TChar s1 = locale.TimeSeparator(1);
TChar s2 = locale.TimeSeparator(2);
switch(locale.TimeFormat()) {
case ETime12:
timeFormat.Append(_L("%I"));
break;
case ETime24:
default:
timeFormat.Append(_L("%H"));
break;
}
timeFormat.Append(s1);
timeFormat.Append(_L("%T"));
timeFormat.Append(s2);
timeFormat.Append(_L("%S"));
#ifdef _DEBUG
RDebug::Print(_L("Time Format \"%S\""), &timeFormat);
#endif
}
示例4: timeSeparator
/*!
*/
int SettingsUtility::timeSeparator(QStringList &list)
{
OstTraceFunctionEntry0( SETTINGSUTILITY_TIMESEPARATOR_ENTRY );
TLocale locale;
TChar separatorChar = locale.TimeSeparator(1);
int value = -1;
if (separatorChar == (mTimeSeparatorList.at(0).unicode())->unicode()) {
value = 0;
} else if (separatorChar == (mTimeSeparatorList.at(1).unicode())->unicode()) {
value = 1;
} else {
// Nothing to do.
}
list = mTimeSeparatorList;
OstTraceFunctionExit0( SETTINGSUTILITY_TIMESEPARATOR_EXIT );
return value;
}
示例5: first
//.........这里部分代码省略.........
case 'Y':
{
if (!locale_indep_ordering)
break;
if (!abbrev_next)
result += QLatin1String("yyyy");
else
result += QLatin1String("yy");
break;
}
case 'E':
{
if (!abbrev_next)
result += QLatin1String("dddd");
else
result += QLatin1String("ddd");
break;
}
case ':':
{
// timesep 0-3
++i;
if (i >= sys_fmt.size())
break;
c = sys_fmt.at(i);
if (c.isDigit() && c.digitValue() <= 3) {
TChar s = locale->TimeSeparator(c.digitValue());
TUint val = s;
// some indexes return zero for empty
if (val > 0)
result += QChar(val);
}
break;
}
case 'J':
{
if (tf == ETime24 && !abbrev_next)
result += QLatin1String("hh");
else
result += QLatin1Char('h');
break;
}
case 'H':
{
if (!abbrev_next)
result += QLatin1String("hh");
else
result += QLatin1Char('h');
break;
}
case 'I':
{
result += QLatin1Char('h');