OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:quoteMark
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLMetaCharsetParser.cpp
81
char
quoteMark
= 0;
83
quoteMark
= static_cast<char>(value[pos++]);
84
ASSERT(!(
quoteMark
& 0x80));
91
while (end < length && ((
quoteMark
&& value[end] !=
quoteMark
) || (!
quoteMark
&& value[end] > ' ' && value[end] != '"' && value[end] != '\'' && value[end] != ';')))
94
if (
quoteMark
&& (end == length))
/external/chromium_org/third_party/WebKit/Source/core/fetch/
TextResourceDecoder.cpp
175
char
quoteMark
= str[pos];
176
if (
quoteMark
!= '"' &&
quoteMark
!= '\'')
182
while (end < len && str[end] !=
quoteMark
)
Completed in 136 milliseconds