Lines Matching refs:pHeader
1908 FASTBOOL HTMLParser::IsHTMLFormat( const sal_Char* pHeader, in IsHTMLFormat() argument
1926 if( 0xfeU == (sal_uChar)pHeader[0] && in IsHTMLFormat()
1927 0xffU == (sal_uChar)pHeader[1] ) in IsHTMLFormat()
1932 else if( 0xffU == (sal_uChar)pHeader[0] && in IsHTMLFormat()
1933 0xfeU == (sal_uChar)pHeader[1] ) in IsHTMLFormat()
1942 (0xfe == (sal_uChar)pHeader[0] && 0xff == (sal_uChar)pHeader[1]) || in IsHTMLFormat()
1943 (0xff == (sal_uChar)pHeader[0] && 0xfe == (sal_uChar)pHeader[1]) in IsHTMLFormat()
1947 if( 0xfe == (sal_uChar)pHeader[0] ) in IsHTMLFormat()
1952 pHeader[nLen] != 0 || pHeader[nLen+1] != 0; in IsHTMLFormat()
1961 cUC = (sal_Unicode(pHeader[nPos]) << 8) | pHeader[nPos+1]; in IsHTMLFormat()
1963 cUC = (sal_Unicode(pHeader[nPos+1]) << 8) | pHeader[nPos]; in IsHTMLFormat()
1973 sCmp = (sal_Char *)pHeader; in IsHTMLFormat()