Lines Matching refs:aRes

444 	ParseResult	aRes;  in NextToken()  local
468 aRes = aCC.parseAnyToken( m_aBufferString, m_nBufferIndex, in NextToken()
475 if ((aRes.TokenType & KParseType::IDENTNAME) && IsDigit( cFirstChar )) in NextToken()
490 aRes.TokenType = aTmpRes.TokenType; in NextToken()
493 nRealStart = m_nBufferIndex + sal::static_int_cast< xub_StrLen >(aRes.LeadingWhiteSpace); in NextToken()
497 if ( aRes.TokenType == 0 && in NextToken()
506 else if (aRes.TokenType & KParseType::ONE_SINGLE_CHAR) in NextToken()
537 else if ((aRes.TokenType & (KParseType::ASC_NUMBER | KParseType::UNI_NUMBER)) in NextToken()
538 || (bNumStart && (aRes.TokenType & KParseType::IDENTNAME))) in NextToken()
540 sal_Int32 n = aRes.EndPos - nRealStart; in NextToken()
549 if (!IsDelimiter( m_aBufferString, static_cast< xub_StrLen >(aRes.EndPos) )) in NextToken()
555 else if (aRes.TokenType & KParseType::DOUBLE_QUOTE_STRING) in NextToken()
561 m_aCurToken.aText = aRes.DequotedNameOrString; in NextToken()
565 else if (aRes.TokenType & KParseType::IDENTNAME) in NextToken()
567 sal_Int32 n = aRes.EndPos - nRealStart; in NextToken()
589 if (!IsDelimiter( m_aBufferString, static_cast< xub_StrLen >(aRes.EndPos) )) in NextToken()
596 else if (aRes.TokenType == 0 && '_' == m_aBufferString.GetChar( nRealStart )) in NextToken()
604 aRes.EndPos = nRealStart + 1; in NextToken()
606 else if (aRes.TokenType & KParseType::BOOLEAN) in NextToken()
608 sal_Int32 &rnEndPos = aRes.EndPos; in NextToken()
711 else if (aRes.TokenType & KParseType::ONE_SINGLE_CHAR) in NextToken()
713 sal_Int32 &rnEndPos = aRes.EndPos; in NextToken()
978 aRes.EndPos = m_nBufferIndex; in NextToken()
1015 aRes.EndPos = nRealStart + 1; in NextToken()
1019 m_nBufferIndex = sal::static_int_cast< xub_StrLen >(aRes.EndPos); in NextToken()