Lines Matching refs:sCmp
1922 ByteString sCmp; in IsHTMLFormat() local
1969 sCmp = ByteString( sTmp.makeStringAndClear() ); in IsHTMLFormat()
1973 sCmp = (sal_Char *)pHeader; in IsHTMLFormat()
1976 sCmp.ToUpperAscii(); in IsHTMLFormat()
1979 xub_StrLen nStart = sCmp.Search( '<' ); in IsHTMLFormat()
1988 for( nPos = nStart; nPos<sCmp.Len(); nPos++ ) in IsHTMLFormat()
1990 if( '>'==(c=sCmp.GetChar(nPos)) || HTML_ISSPACE(c) ) in IsHTMLFormat()
2002 String sTest( sCmp.Copy( nStart, nPos-nStart ), RTL_TEXTENCODING_ASCII_US ); in IsHTMLFormat()
2008 if( nStart == 1 && '!' == sCmp.GetChar( 1 ) ) in IsHTMLFormat()
2012 nStart = sCmp.Search( OOO_STRING_SVTOOLS_HTML_html ); in IsHTMLFormat()
2014 nStart>0 && '<'==sCmp.GetChar(nStart-1) && in IsHTMLFormat()
2015 nStart+4 < sCmp.Len() && '>'==sCmp.GetChar(nStart+4) ) in IsHTMLFormat()