Lines Matching refs:idx
583 sal_Int32 idx = 0,length = m_aExpr.getLength(); in module() local
585 while( idx < length && isLetterOrDigit( (m_aExpr.getStr())[idx] ) ) in module()
586 ++idx; in module()
588 if( idx != 0 ) in module()
590 m_aModule = m_aExpr.copy( 0,idx ); in module()
591 m_aExpr = m_aExpr.copy( idx ); in module()
608 sal_Int32 idx = 1; in name() local
609 while( idx < length && (m_aExpr.getStr())[idx] != '?' ) in name()
613 ++idx; in name()
615 if( idx != 1 && ! modulePresent ) in name()
619 m_aId = m_aExpr.copy( 1,idx-1 ); in name()
620 m_aExpr = m_aExpr.copy( idx ); in name()