OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BOMHighByte
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/xml/
XSLStyleSheetLibxslt.cpp
140
const unsigned char
BOMHighByte
= *reinterpret_cast<const unsigned char*>(&BOM);
172
BOMHighByte
== 0xFF ? "UTF-16LE" : "UTF-16BE",
/external/webkit/Source/WebCore/dom/
XMLDocumentParserLibxml2.cpp
377
const unsigned char
BOMHighByte
= *reinterpret_cast<const unsigned char*>(&BOM);
378
xmlSwitchEncoding(ctxt,
BOMHighByte
== 0xFF ? XML_CHAR_ENCODING_UTF16LE : XML_CHAR_ENCODING_UTF16BE);
[
all
...]
xml_expat_tokenizer.cpp
731
static const unsigned char
BOMHighByte
= *reinterpret_cast<const unsigned char*>(&BOM);
732
m_parser = XML_ParserCreateNS(
BOMHighByte
== 0xFF ? "UTF-16LE" : "UTF-16BE", tripletSep);
Completed in 181 milliseconds