endsWith           55 Source/core/css/CSSFontFaceSrcValue.cpp         if (!m_resource.startsWith("data:", false) && m_resource.endsWith(".eot", false))
endsWith           47 Source/core/css/DOMWindowCSS.cpp     if (!value.endsWith("important", false))
endsWith          451 Source/core/css/SelectorChecker.cpp         if (!value.endsWith(selectorValue, caseSensitive) || selectorValue.isEmpty())
endsWith          262 Source/core/dom/DOMImplementation.cpp     if (mimeType[0] == '/' || mimeType[length - 5] == '/' || !mimeType.endsWith("+xml", false))
endsWith          834 Source/core/editing/markup.cpp         if (string.endsWith('\n')) {
endsWith           52 Source/core/frame/csp/CSPSource.cpp     return m_hostHasWildcard && host.endsWith("." + m_host, false);
endsWith           63 Source/core/frame/csp/CSPSource.cpp     if (m_path.endsWith("/"))
endsWith          109 Source/core/html/HTMLDimension.cpp     if (trimmedString.endsWith(comma))
endsWith          514 Source/core/html/HTMLTextFormControlElement.cpp         if (value.endsWith('\n') || value.endsWith('\r'))
endsWith         2657 Source/core/html/canvas/WebGLRenderingContextBase.cpp         if (info.size > 1 && name.endsWith("[0]"))
endsWith           72 Source/core/inspector/ContentSearchUtils.cpp         if (line.endsWith('\r'))
endsWith          997 Source/core/inspector/InspectorDOMAgent.cpp                     || (!startTagFound && endTagFound && node->nodeName().endsWith(tagNameQuery, false))) {
endsWith          286 Source/core/inspector/InspectorStyleSheet.cpp     if (propertyString.endsWith(';'))
endsWith          330 Source/core/inspector/InspectorStyleSheet.cpp     if (!commentText.endsWith("*/"))
endsWith          135 Source/core/svg/SVGNumber.cpp     if (string.endsWith('%')) {
endsWith          359 Source/core/svg/animation/SVGSMILElement.cpp     if (parse.endsWith('h'))
endsWith          361 Source/core/svg/animation/SVGSMILElement.cpp     else if (parse.endsWith("min"))
endsWith          363 Source/core/svg/animation/SVGSMILElement.cpp     else if (parse.endsWith("ms"))
endsWith          365 Source/core/svg/animation/SVGSMILElement.cpp     else if (parse.endsWith('s'))
endsWith          456 Source/core/svg/animation/SVGSMILElement.cpp     if (nameString.startsWith("repeat(") && nameString.endsWith(')')) {
endsWith          570 Source/core/xml/parser/XMLDocumentParser.cpp     if (urlString.startsWith("file:///", false) && urlString.endsWith("/etc/catalog", false))
endsWith           52 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/AstUtil.java         return typeName.endsWith(PROTOTYPE_SUFFIX);
endsWith          126 Source/platform/URLPatternMatcher.cpp     if (!host.endsWith(m_host, false))
endsWith          315 Source/platform/text/PlatformLocale.cpp         if (input.startsWith(m_positivePrefix) && input.endsWith(m_positiveSuffix)) {
endsWith          323 Source/platform/text/PlatformLocale.cpp         if (input.startsWith(m_negativePrefix) && input.endsWith(m_negativeSuffix)) {
endsWith          329 Source/platform/text/PlatformLocale.cpp             if (input.startsWith(m_positivePrefix) && input.endsWith(m_positiveSuffix)) {
endsWith           85 Source/platform/weborigin/OriginAccessEntry.cpp     if (origin.host().length() <= m_host.length() || origin.host()[origin.host().length() - m_host.length() - 1] != '.' || !origin.host().endsWith(m_host))
endsWith          121 Source/wtf/text/AtomicString.h     bool endsWith(const String& s, bool caseSensitive = true) const
endsWith          122 Source/wtf/text/AtomicString.h         { return m_string.endsWith(s, caseSensitive); }
endsWith          123 Source/wtf/text/AtomicString.h     bool endsWith(UChar character) const
endsWith          124 Source/wtf/text/AtomicString.h         { return m_string.endsWith(character); }
endsWith          126 Source/wtf/text/AtomicString.h     bool endsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const
endsWith          127 Source/wtf/text/AtomicString.h         { return m_string.endsWith<matchLength>(prefix, caseSensitive); }
endsWith          387 Source/wtf/text/StringImpl.h     bool endsWith(StringImpl*, bool caseSensitive = true);
endsWith          388 Source/wtf/text/StringImpl.h     bool endsWith(UChar) const;
endsWith          389 Source/wtf/text/StringImpl.h     bool endsWith(const char*, unsigned matchLength, bool caseSensitive) const;
endsWith          391 Source/wtf/text/StringImpl.h     bool endsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const { return endsWith(prefix, matchLength - 1, caseSensitive); }
endsWith          279 Source/wtf/text/WTFString.h     bool endsWith(const String& s, bool caseSensitive = true) const
endsWith          280 Source/wtf/text/WTFString.h         { return m_impl ? m_impl->endsWith(s.impl(), caseSensitive) : s.isEmpty(); }
endsWith          281 Source/wtf/text/WTFString.h     bool endsWith(UChar character) const
endsWith          282 Source/wtf/text/WTFString.h         { return m_impl ? m_impl->endsWith(character) : false; }
endsWith          284 Source/wtf/text/WTFString.h     bool endsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const
endsWith          285 Source/wtf/text/WTFString.h         { return m_impl ? m_impl->endsWith<matchLength>(prefix, caseSensitive) : !matchLength; }