Home
last modified time | relevance | path

Searched refs:isHTMLSpace (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DCSSPreloadScanner.cpp85 if (isHTMLSpace<UChar>(c)) in tokenize()
122 if (isHTMLSpace<UChar>(c)) in tokenize()
130 if (isHTMLSpace<UChar>(c)) in tokenize()
142 if (isHTMLSpace<UChar>(c)) in tokenize()
150 if (isHTMLSpace<UChar>(c)) in tokenize()
172 while (reducedLength && isHTMLSpace<UChar>(string[offset])) { in parseCSSStringOrURL()
176 while (reducedLength && isHTMLSpace<UChar>(string[offset + reducedLength - 1])) in parseCSSStringOrURL()
189 while (reducedLength && isHTMLSpace<UChar>(string[offset])) { in parseCSSStringOrURL()
193 while (reducedLength && isHTMLSpace<UChar>(string[offset + reducedLength - 1])) in parseCSSStringOrURL()
201 while (reducedLength && isHTMLSpace<UChar>(string[offset])) { in parseCSSStringOrURL()
[all …]
DHTMLParserIdioms.h36 bool isHTMLSpace(UChar);
67 inline bool isHTMLSpace(CharType character) in isHTMLSpace() function
85 return isHTMLSpace<CharType>(character) || character == ','; in isHTMLSpaceOrComma()
96 return !isHTMLSpace<CharType>(character); in isNotHTMLSpace()
DHTMLSrcsetParser.cpp58 skipWhile<CharType, isHTMLSpace<CharType> >(position, descriptorsEnd); in parseDescriptors()
90 skipWhile<CharType, isHTMLSpace<CharType> >(position, attributeEnd); in parseImageCandidatesFromSrcsetAttribute()
102 skipUntil<CharType, isHTMLSpace<CharType> >(position, attributeEnd); in parseImageCandidatesFromSrcsetAttribute()
109 skipWhile<CharType, isHTMLSpace<CharType> >(position, attributeEnd); in parseImageCandidatesFromSrcsetAttribute()
DHTMLParserIdioms.cpp151 if (!isHTMLSpace<CharacterType>(*position)) in parseHTMLIntegerInternal()
212 if (!isHTMLSpace<CharacterType>(*position)) in parseHTMLNonNegativeIntegerInternal()
DXSSAuditor.cpp645 while (startPosition < endPosition && isHTMLSpace<UChar>(string[startPosition])) in decodedSnippetForJavaScript()
688 …,' || (foundPosition > startPosition + kMaximumFragmentLengthTarget && isHTMLSpace<UChar>(string[f… in decodedSnippetForJavaScript()
DHTMLTreeBuilder.cpp62 return isHTMLSpace<UChar>(character) || character == replacementCharacter; in isHTMLSpaceOrReplacementCharacter()
74 return string.isAllSpecialCharacters<isHTMLSpace<UChar> >(); in isAllWhitespace()
188 skipLeading<isHTMLSpace<UChar> >(); in skipLeadingWhitespace()
193 return takeLeading<isHTMLSpace<UChar> >(); in takeLeadingWhitespace()
227 if (isHTMLSpace<UChar>((*m_characters)[i])) in takeRemainingWhitespace()
242 if (isHTMLSpace<UChar>(c)) in takeRemainingWhitespace()
DHTMLConstructionSite.cpp93 return string.isAllSpecialCharacters<isHTMLSpace<UChar> >(); in isAllWhitespace()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDOMTokenList.cpp44 if (isHTMLSpace<UChar>(token[i])) { in validateToken()
178 needsSpace = !isHTMLSpace<UChar>(input[input.length() - 1]); in addTokens()
210 if (isHTMLSpace<UChar>(input[position])) { // 6 in removeTokens()
224 while (position < inputLength && isHTMLSpace<UChar>(input[position])) in removeTokens()
229 while (j > 0 && isHTMLSpace<UChar>(output[j - 1])) in removeTokens()
DSandboxFlags.cpp45 while (start < length && isHTMLSpace<UChar>(policy[start])) in parseSandboxPolicy()
50 while (end < length && !isHTMLSpace<UChar>(policy[end])) in parseSandboxPolicy()
DSpaceSplitString.cpp60 while (start < length && isHTMLSpace<CharacterType>(characters[start])) in createVector()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLOptionElement.cpp120 return text.stripWhiteSpace(isHTMLSpace<UChar>).simplifyWhiteSpace(isHTMLSpace<UChar>); in text()
202 …return collectOptionInnerText().stripWhiteSpace(isHTMLSpace<UChar>).simplifyWhiteSpace(isHTMLSpace in value()
285 …return collectOptionInnerText().stripWhiteSpace(isHTMLSpace<UChar>).simplifyWhiteSpace(isHTMLSpace in label()
DHTMLFontElement.cpp64 if (!isHTMLSpace<CharacterType>(*position)) in parseFontSize()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DDOMWindowBase64.cpp68 if (!base64Decode(encodedString, out, isHTMLSpace<UChar>, Base64ValidatePadding)) { in atob()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSParserValues.cpp44 while (m_length > 0 && isHTMLSpace<LChar>(m_data.characters8[m_length - 1])) in trimTrailingWhitespace()
47 while (m_length > 0 && isHTMLSpace<UChar>(m_data.characters16[m_length - 1])) in trimTrailingWhitespace()
DCSSTokenizer-in.cpp278 if (isHTMLSpace<CharacterType>(*currentCharacter)) in checkAndSkipEscape()
288 while (isHTMLSpace<CharacterType>(*currentCharacter)) in skipWhiteSpace()
409 if (isHTMLSpace<CharacterType>(*src)) in parseEscape()
DSelectorChecker.cpp363 if (isHTMLSpace<UChar>(string[i])) in containsHTMLSpace()
390 if (!foundPos || isHTMLSpace<UChar>(value[foundPos - 1])) { in attributeValueMatches()
392 if (endStr == value.length() || isHTMLSpace<UChar>(value[endStr])) in attributeValueMatches()
DCSSParser-in.cpp5877 while (current != end && isHTMLSpace<CharacterType>(*current)) in parseColorIntOrPercentage()
5929 while (current != end && isHTMLSpace<CharacterType>(*current)) in parseColorIntOrPercentage()
5956 while (string != end && isHTMLSpace<CharacterType>(*string)) in parseAlphaValue()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleTextEditor.cpp72 while (curPos && isHTMLSpace<UChar>(m_styleText[curPos])) in insertProperty()
DInspectorStyleSheet.cpp206 if (isHTMLSpace<CharacterType>(*(dataStart + listEndOffset - 1))) in setRuleHeaderEnd()
303 while (isHTMLSpace<CharacterType>(characters[propertyEndInStyleSheet])) in fixUnparsedProperties()
315 …while (valueStartInStyleSheet < propertyEndInStyleSheet && isHTMLSpace<CharacterType>(characters[v… in fixUnparsedProperties()
907 } else if (isHTMLSpace<UChar>(ch)) in newLineAndWhitespaceDelimiters()
/external/chromium_org/third_party/WebKit/Source/core/loader/
DFrameLoader.cpp390 headerContentLanguage = headerContentLanguage.stripWhiteSpace(isHTMLSpace<UChar>); in didBeginDocument()