matches 30 Source/core/css/MediaQueryList.cpp PassRefPtrWillBeRawPtr<MediaQueryList> MediaQueryList::create(PassRefPtrWillBeRawPtr<MediaQueryMatcher> vector, PassRefPtrWillBeRawPtr<MediaQuerySet> media, bool matches) matches 32 Source/core/css/MediaQueryList.cpp return adoptRefWillBeNoop(new MediaQueryList(vector, media, matches)); matches 35 Source/core/css/MediaQueryList.cpp MediaQueryList::MediaQueryList(PassRefPtrWillBeRawPtr<MediaQueryMatcher> vector, PassRefPtrWillBeRawPtr<MediaQuerySet> media, bool matches) matches 40 Source/core/css/MediaQueryList.cpp , m_matches(matches) matches 45 Source/core/css/MediaQueryList.h bool matches(); matches 55 Source/core/css/MediaQueryList.h MediaQueryList(PassRefPtrWillBeRawPtr<MediaQueryMatcher>, PassRefPtrWillBeRawPtr<MediaQuerySet>, bool matches); matches 490 Source/core/css/SelectorChecker.cpp if (!attributeItem.matches(selectorAttr)) matches 172 Source/core/css/SelectorChecker.h if (attribute.matches(selectorAttributeName) && (!value || attribute.value().impl() == value)) matches 54 Source/core/dom/Attribute.h bool matches(const QualifiedName&) const; matches 75 Source/core/dom/Attribute.h inline bool Attribute::matches(const QualifiedName& qualifiedName) const matches 2624 Source/core/dom/Element.cpp return selectorQuery->matches(*this); matches 236 Source/core/dom/Element.h bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); } matches 426 Source/core/dom/Element.h bool matches(const String& selectors, ExceptionState&); matches 222 Source/core/dom/ElementData.cpp if (m_attributeVector.at(i).name().matches(name)) matches 249 Source/core/dom/ElementData.h if (attribute.name().matches(name)) matches 85 Source/core/dom/QualifiedName.h bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); } matches 469 Source/core/dom/SelectorQuery.cpp return m_selectors.matches(element); matches 50 Source/core/dom/SelectorQuery.h bool matches(Element&) const; matches 91 Source/core/dom/SelectorQuery.h bool matches(Element&) const; matches 199 Source/core/editing/EditingStyle.cpp return matches(element) && value && value->isPrimitiveValue() && toCSSPrimitiveValue(value.get())->getValueID() == m_primitiveValue->getValueID(); matches 237 Source/core/editing/EditingStyle.cpp return matches(element) && styleValue && styleValue->isValueList() && toCSSValueList(styleValue.get())->hasValue(m_primitiveValue.get()); matches 251 Source/core/editing/EditingStyle.cpp virtual bool matches(const Element* elem) const OVERRIDE { return HTMLElementEquivalent::matches(elem) && elem->hasAttribute(m_attrName); } matches 802 Source/core/editing/EditingStyle.cpp if (equivalent->matches(element) && equivalent->propertyExistsInStyle(m_mutableStyle.get()) matches 838 Source/core/editing/EditingStyle.cpp if (HTMLAttributeEquivalents[i]->matches(element) && HTMLAttributeEquivalents[i]->propertyExistsInStyle(m_mutableStyle.get()) matches 864 Source/core/editing/EditingStyle.cpp if (!equivalent->matches(element) || !equivalent->propertyExistsInStyle(m_mutableStyle.get()) matches 892 Source/core/editing/EditingStyle.cpp if (HTMLElementEquivalents[i]->matches(element)) { matches 905 Source/core/editing/EditingStyle.cpp if (HTMLAttributeEquivalents[i]->matches(element) && HTMLAttributeEquivalents[i]->attributeName() != HTMLNames::dirAttr) matches 1001 Source/core/editing/EditingStyle.cpp return equivalent->matches(element) && (!element->inlineStyle() || !equivalent->propertyExistsInStyle(element->inlineStyle())) matches 18 Source/core/frame/csp/CSPSource.h bool matches(const KURL&) const; matches 82 Source/core/frame/csp/CSPSourceList.cpp if (m_list[i].matches(effectiveURL)) matches 25 Source/core/frame/csp/CSPSourceList.h bool matches(const KURL&) const; matches 28 Source/core/frame/csp/SourceListDirective.cpp return m_sourceList.matches(url.isEmpty() ? policy()->url() : url); matches 146 Source/core/html/HTMLElement.cpp if (name == alignAttr || name == contenteditableAttr || name == hiddenAttr || name == langAttr || name.matches(XMLNames::langAttr) || name == draggableAttr || name == dirAttr) matches 193 Source/core/html/HTMLElement.cpp } else if (name.matches(XMLNames::langAttr)) matches 61 Source/core/html/parser/HTMLDocumentParser.cpp if (contextTag.matches(titleTag) || contextTag.matches(textareaTag)) matches 63 Source/core/html/parser/HTMLDocumentParser.cpp if (contextTag.matches(styleTag) matches 64 Source/core/html/parser/HTMLDocumentParser.cpp || contextTag.matches(xmpTag) matches 65 Source/core/html/parser/HTMLDocumentParser.cpp || contextTag.matches(iframeTag) matches 66 Source/core/html/parser/HTMLDocumentParser.cpp || (contextTag.matches(noembedTag) && options.pluginsEnabled) matches 67 Source/core/html/parser/HTMLDocumentParser.cpp || (contextTag.matches(noscriptTag) && options.scriptEnabled) matches 68 Source/core/html/parser/HTMLDocumentParser.cpp || contextTag.matches(noframesTag)) matches 70 Source/core/html/parser/HTMLDocumentParser.cpp if (contextTag.matches(scriptTag)) matches 72 Source/core/html/parser/HTMLDocumentParser.cpp if (contextTag.matches(plaintextTag)) matches 57 Source/core/html/parser/HTMLToken.h if (attributes.at(i).name().matches(name)) matches 122 Source/core/inspector/ContentSearchUtils.cpp Vector<pair<int, String> > matches = getScriptRegexpMatchesByLines(regex.get(), text); matches 124 Source/core/inspector/ContentSearchUtils.cpp for (Vector<pair<int, String> >::const_iterator it = matches.begin(); it != matches.end(); ++it) matches 697 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::CSS::PseudoIdMatches> matches = TypeBuilder::CSS::PseudoIdMatches::create() matches 700 Source/core/inspector/InspectorCSSAgent.cpp pseudoElements->addItem(matches.release()); matches 1313 Source/core/inspector/InspectorCSSAgent.cpp matched |= element->matches(firstTagHistorySelector->selectorText(), IGNORE_EXCEPTION); matches 344 Source/core/inspector/InspectorDebuggerAgent.cpp if (!matches(it->value.url, url, isRegex)) matches 514 Source/core/inspector/InspectorDebuggerAgent.cpp if (!matches(topFrameScriptUrl, url, isRegex)) matches 1162 Source/core/inspector/InspectorDebuggerAgent.cpp if (!matches(scriptURL, url, isRegex)) matches 621 Source/core/svg/SVGElement.cpp } else if (name.matches(XMLNames::langAttr) || name.matches(XMLNames::spaceAttr)) { matches 226 Source/core/svg/SVGElement.h static bool equal(const QualifiedName& a, const QualifiedName& b) { return a.matches(b); } matches 64 Source/core/svg/SVGFontFaceUriElement.cpp if (name.matches(XLinkNames::hrefAttr)) matches 213 Source/core/svg/SVGTextContentElement.cpp if (name.matches(XMLNames::spaceAttr)) matches 222 Source/core/svg/SVGTextContentElement.cpp else if (name.matches(XMLNames::spaceAttr)) { matches 242 Source/core/svg/SVGTextContentElement.cpp } else if (name.matches(XMLNames::spaceAttr)) { matches 39 Source/core/svg/SVGURIReference.cpp return attrName.matches(XLinkNames::hrefAttr); matches 105 Source/core/svg/SVGURIReference.cpp if (name.matches(XLinkNames::hrefAttr)) { matches 564 Source/core/svg/animation/SVGSMILElement.cpp else if (attrName.matches(XLinkNames::hrefAttr)) { matches 1468 Source/core/testing/Internals.cpp Vector<RefPtr<Node> > matches; matches 1476 Source/core/testing/Internals.cpp matches.append(result.innerNode()->deprecatedShadowAncestorNode()); matches 1480 Source/core/testing/Internals.cpp copyToVector(result.rectBasedTestResult(), matches); matches 1483 Source/core/testing/Internals.cpp return StaticNodeList::adopt(matches); matches 139 Source/core/xml/XPathPath.cpp NodeSet matches; matches 140 Source/core/xml/XPathPath.cpp step->evaluate(nodes[j], matches); matches 142 Source/core/xml/XPathPath.cpp if (!matches.isSorted()) matches 145 Source/core/xml/XPathPath.cpp for (size_t nodeIndex = 0; nodeIndex < matches.size(); ++nodeIndex) { matches 146 Source/core/xml/XPathPath.cpp Node* node = matches[nodeIndex]; matches 62 Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/Runner.java if (matcher.matches()) { matches 67 Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/Runner.java if (quotesMatcher.matches()) { matches 33 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ContextTrackingChecker.java Pattern.matches("(?s).*@" + tagName + "\\b.*", getContext().getNodeText(comment)); matches 42 Source/platform/URLPatternMatcher.cpp if (contentPattern.matches(url)) matches 50 Source/platform/URLPatternMatcher.h bool matches(const KURL&) const; matches 343 Source/platform/text/PlatformLocale.cpp if (m_decimalSymbols[symbolIndex].length() && matches(input, position, m_decimalSymbols[symbolIndex])) { matches 64 Source/platform/text/TextEncodingDetector.cpp const UCharsetMatch** matches = ucsdet_detectAll(detector, &matchesCount, &status); matches 83 Source/platform/text/TextEncodingDetector.cpp int32_t confidence = ucsdet_getConfidence(matches[i], &status); matches 90 Source/platform/text/TextEncodingDetector.cpp const char* matchEncoding = ucsdet_getName(matches[i], &status); matches 106 Source/platform/text/TextEncodingDetector.cpp encoding = ucsdet_getName(matches[0], &status);