HomeSort by relevance Sort by last modified time
    Searched refs:quoteMark (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLMetaCharsetParser.cpp 82 char quoteMark = 0;
84 quoteMark = static_cast<char>(value[pos++]);
85 ASSERT(!(quoteMark & 0x80));
92 while (end < length && ((quoteMark && value[end] != quoteMark) || (!quoteMark && value[end] > ' ' && value[end] != '"' && value[end] != '\'' && value[end] != ';')))
95 if (quoteMark && (end == length))
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextResourceDecoder.cpp 391 char quoteMark = str[pos];
392 if (quoteMark != '"' && quoteMark != '\'')
398 while (end < len && str[end] != quoteMark)

Completed in 68 milliseconds