Home
last modified time | relevance | path

Searched refs:quoteMark (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLParserIdioms.cpp294 char quoteMark = 0; in extractCharset() local
296 quoteMark = static_cast<char>(value[pos++]); in extractCharset()
297 ASSERT(!(quoteMark & 0x80)); in extractCharset()
304 …while (end < length && ((quoteMark && value[end] != quoteMark) || (!quoteMark && value[end] > ' ' … in extractCharset()
307 if (quoteMark && (end == length)) in extractCharset()
DTextResourceDecoder.cpp175 char quoteMark = str[pos]; in findXMLEncoding() local
176 if (quoteMark != '"' && quoteMark != '\'') in findXMLEncoding()
182 while (end < len && str[end] != quoteMark) in findXMLEncoding()