Lines Matching refs:rCodeLine
701 OUString lclGetQuotedString( const OUString& rCodeLine ) in lclGetQuotedString() argument
704 sal_Int32 nLen = rCodeLine.getLength(); in lclGetQuotedString()
705 if( (nLen > 0) && (rCodeLine[ 0 ] == '"') ) in lclGetQuotedString()
710 sal_Unicode cChar = rCodeLine[ nIndex ]; in lclGetQuotedString()
712 … bExitLoop = (cChar == '"') && ((nIndex + 1 == nLen) || (rCodeLine[ nIndex + 1 ] != '"')); in lclGetQuotedString()
725 bool lclEatWhitespace( OUString& rCodeLine ) in lclEatWhitespace() argument
728 …while( (nIndex < rCodeLine.getLength()) && ((rCodeLine[ nIndex ] == ' ') || (rCodeLine[ nIndex ] =… in lclEatWhitespace()
732 rCodeLine = rCodeLine.copy( nIndex ); in lclEatWhitespace()
738 bool lclEatKeyword( OUString& rCodeLine, const OUString& rKeyword ) in lclEatKeyword() argument
740 if( rCodeLine.matchIgnoreAsciiCase( rKeyword ) ) in lclEatKeyword()
742 rCodeLine = rCodeLine.copy( rKeyword.getLength() ); in lclEatKeyword()
744 return (rCodeLine.getLength() == 0) || lclEatWhitespace( rCodeLine ); in lclEatKeyword()