本文整理汇总了C++中TLex8::Remainder方法的典型用法代码示例。如果您正苦于以下问题:C++ TLex8::Remainder方法的具体用法?C++ TLex8::Remainder怎么用?C++ TLex8::Remainder使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TLex8
的用法示例。
在下文中一共展示了TLex8::Remainder方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: HasImproperChars
// -----------------------------------------------------------------------------
// CUpnpRangeHeaderParser::HasImproperChars
// Checks number format
// -----------------------------------------------------------------------------
//
TBool CUpnpRangeHeaderParser::HasImproperChars( const TLex8& aNumber )
{
TPtrC8 rem_ptr = aNumber.Remainder();
for( TInt index = 0; index < rem_ptr.Length(); index++ )
{
if( rem_ptr[ index ] != UpnpString::KSpace()[0] &&
rem_ptr[ index ] != UpnpString::KTab()[0] )
return ETrue;
}
return EFalse;
}
示例2: IsNewItem
TBool CTestConfig::IsNewItem(const TDesC8& aSource, const TLex8& aLex, TPtrC8& aItem, TInt& aStartOfVal) const
{
TBool ret(EFalse);
if (IsAtStartOfNewLine(aSource, aLex, ETrue))
{
const TPtrC8 itemEnd(KScriptItemEnd);
const TInt itemEndLen(itemEnd.Length());
TPtrC8 token(aLex.MarkedToken());
//First check to see if this token contains '='
const TInt find = token.Find(itemEnd);
if (find > 0)
{
aStartOfVal = find + itemEndLen;
aItem.Set(token.Left(find));
ret = ETrue;
}
else
{
aItem.Set(token);
aStartOfVal = token.Length();
const TPtrC8 remain(aLex.Remainder());
TLex8 lex(remain);
//Check that the next token starts with and '='
lex.SkipSpaceAndMark();
lex.SkipCharacters();
token.Set(lex.MarkedToken());
if (token.Find(itemEnd) == 0)
{
aStartOfVal += lex.MarkedOffset() + itemEndLen;
ret = ETrue;
}
}
}
return ret;
}