Lines Matching refs:cQuote
807 bool ScGlobal::IsQuoted( const String& rString, sal_Unicode cQuote ) in IsQuoted() argument
809 …String.Len() >= 2) && (rString.GetChar( 0 ) == cQuote) && (rString.GetChar( rString.Len() - 1 ) ==… in IsQuoted()
812 void ScGlobal::AddQuotes( String& rString, sal_Unicode cQuote, bool bEscapeEmbedded ) in AddQuotes() argument
817 pQ[0] = pQ[1] = cQuote; in AddQuotes()
820 rString.SearchAndReplaceAll( cQuote, aQuotes); in AddQuotes()
822 rString.Insert( cQuote, 0 ).Append( cQuote ); in AddQuotes()
825 void ScGlobal::EraseQuotes( String& rString, sal_Unicode cQuote, bool bUnescapeEmbedded ) in EraseQuotes() argument
827 if ( IsQuoted( rString, cQuote ) ) in EraseQuotes()
833 pQ[0] = pQ[1] = cQuote; in EraseQuotes()
836 rString.SearchAndReplaceAll( aQuotes, cQuote); in EraseQuotes()
841 …al::FindUnquoted( const String& rString, sal_Unicode cChar, xub_StrLen nStart, sal_Unicode cQuote ) in FindUnquoted() argument
851 else if (*p == cQuote) in FindUnquoted()
855 else if (p < pStop-1 && *(p+1) == cQuote) in FindUnquoted()
865 …nicode* ScGlobal::FindUnquoted( const sal_Unicode* pString, sal_Unicode cChar, sal_Unicode cQuote ) in FindUnquoted() argument
873 else if (*p == cQuote) in FindUnquoted()
877 else if (*(p+1) == cQuote) in FindUnquoted()