HomeSort by relevance Sort by last modified time
    Searched refs:MatchResult (Results 1 - 25 of 63) sorted by null

1 2 3

  /libcore/luni/src/main/java/java/util/regex/
MatchResult.java 26 public interface MatchResult {
MatchResultImpl.java 24 * @see java.util.regex.MatchResult
26 class MatchResultImpl implements MatchResult {
Matcher.java 23 public final class Matcher implements MatchResult {
408 * Converts the current match into a separate {@link MatchResult} instance
415 public MatchResult toMatchResult() {
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchedPropertiesCache.h 26 #include "core/css/resolver/MatchResult.h"
44 void set(const RenderStyle*, const RenderStyle* parentStyle, const MatchResult&);
53 const CachedMatchedProperties* find(unsigned hash, const StyleResolverState&, const MatchResult&);
54 void add(const RenderStyle*, const RenderStyle* parentStyle, unsigned hash, const MatchResult&);
MatchResult.cpp 30 #include "core/css/resolver/MatchResult.h"
46 void MatchResult::addMatchedProperties(const StylePropertySet* properties, StyleRule* rule, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType)
MatchResult.h 70 class MatchResult {
73 MatchResult() : isCacheable(true) { }
MatchedPropertiesCache.cpp 38 void CachedMatchedProperties::set(const RenderStyle* style, const RenderStyle* parentStyle, const MatchResult& matchResult)
40 matchedProperties.appendVector(matchResult.matchedProperties);
41 ranges = matchResult.ranges;
62 const CachedMatchedProperties* MatchedPropertiesCache::find(unsigned hash, const StyleResolverState& styleResolverState, const MatchResult& matchResult)
72 size_t size = matchResult.matchedProperties.size();
78 if (matchResult.matchedProperties[i] != cacheItem->matchedProperties[i])
81 if (cacheItem->ranges != matchResult.ranges)
86 void MatchedPropertiesCache::add(const RenderStyle* style, const RenderStyle* parentStyle, unsigned hash, const MatchResult& matchResult
    [all...]
StyleResolver.h 74 class MatchResult;
258 void applyMatchedProperties(StyleResolverState&, const MatchResult&);
273 void applyMatchedProperties(StyleResolverState&, const MatchResult&, bool important, int startIndex, int endIndex, bool inheritedOnly);
281 void matchPageRules(MatchResult&, RuleSet*, bool isLeftPage, bool isFirstPage, const String& pageName);
  /external/clang/include/clang/Tooling/
RefactoringCallbacks.h 55 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
67 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
80 void run(const ast_matchers::MatchFinder::MatchResult &Result) override;
  /external/chromium_org/third_party/WebKit/Source/core/css/
PageRuleCollector.h 25 #include "core/css/resolver/MatchResult.h"
39 MatchResult& matchedResult() { return m_result; }
53 MatchResult m_result;
SelectorChecker.h 95 struct MatchResult {
96 MatchResult()
105 Match match(const SelectorCheckingContext&, const SiblingTraversalStrategy&, MatchResult* = 0) const;
126 Match matchForSubSelector(const SelectorCheckingContext&, const SiblingTraversalStrategy&, MatchResult*) const;
128 Match matchForRelation(const SelectorCheckingContext&, const SiblingTraversalStrategy&, MatchResult*) const;
130 Match matchForShadowDistributed(const Element*, const SiblingTraversalStrategy&, SelectorCheckingContext& nextContext, MatchResult* = 0) const;
132 Match matchForPseudoShadow(const ContainerNode*, const SelectorCheckingContext&, const SiblingTraversalStrategy&, MatchResult*) const;
ElementRuleCollector.h 29 #include "core/css/resolver/MatchResult.h"
125 MatchResult& matchedResult();
151 bool ruleMatches(const RuleData&, const ContainerNode* scope, SelectorChecker::BehaviorAtBoundary, SelectorChecker::MatchResult*);
180 MatchResult m_result;
ElementRuleCollector.cpp 64 MatchResult& ElementRuleCollector::matchedResult()
260 inline bool ElementRuleCollector::ruleMatches(const RuleData& ruleData, const ContainerNode* scope, SelectorChecker::BehaviorAtBoundary behaviorAtBoundary, SelectorChecker::MatchResult* result)
284 SelectorChecker::MatchResult result;
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
OriginAccessEntry.h 53 enum MatchResult {
61 MatchResult matchesOrigin(const SecurityOrigin&) const;
OriginAccessEntry.cpp 60 OriginAccessEntry::MatchResult OriginAccessEntry::matchesOrigin(const SecurityOrigin& origin) const
  /external/clang/lib/Tooling/
RefactoringCallbacks.cpp 41 const ast_matchers::MatchFinder::MatchResult &Result) {
54 const ast_matchers::MatchFinder::MatchResult &Result) {
67 const ast_matchers::MatchFinder::MatchResult &Result) {
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 24 // virtual void Run(const MatchFinder::MatchResult &Result) {
71 /// MatchCallback with a MatchResult containing information about the match.
72 struct MatchResult {
73 MatchResult(const BoundNodes &Nodes, clang::ASTContext *Context);
94 virtual void run(const MatchResult &Result) = 0;
231 void run(const MatchFinder::MatchResult &Result) override {
  /external/clang/unittests/AST/
MatchVerifier.h 56 virtual void run(const MatchFinder::MatchResult &Result);
57 virtual void verify(const MatchFinder::MatchResult &Result,
117 void MatchVerifier<NodeType>::run(const MatchFinder::MatchResult &Result) {
130 const MatchFinder::MatchResult &Result) {
155 void verify(const MatchFinder::MatchResult &Result, const NodeType &Node) {
194 void verify(const MatchFinder::MatchResult &Result, const NodeType &Node) {
232 void verify(const MatchFinder::MatchResult &Result,
259 void verify(const MatchFinder::MatchResult &Result,
NamedDeclPrinterTest.cpp 40 virtual void run(const MatchFinder::MatchResult &Result) {
StmtPrinterTest.cpp 47 virtual void run(const MatchFinder::MatchResult &Result) {
  /external/chromium_org/tools/clang/empty_string/
EmptyStringConverter.cpp 51 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
64 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
77 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
121 void ConstructorCallback::run(const MatchFinder::MatchResult& result) {
134 void InitializerCallback::run(const MatchFinder::MatchResult& result) {
145 void TemporaryCallback::run(const MatchFinder::MatchResult& result) {
  /external/chromium_org/tools/clang/rewrite_scoped_ptr_ctor_null/
RewriteScopedPtrCtorNull.cpp 58 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
71 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
83 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
123 void ConstructorCallback::run(const MatchFinder::MatchResult& result) {
135 void InitializerCallback::run(const MatchFinder::MatchResult& result) {
145 void TemporaryCallback::run(const MatchFinder::MatchResult& result) {
  /external/chromium_org/tools/clang/rewrite_scoped_array/
RewriteScopedArray.cpp 37 virtual void run(const MatchFinder::MatchResult& result) LLVM_OVERRIDE;
43 void RewriterCallback::run(const MatchFinder::MatchResult& result) {
  /frameworks/base/test-runner/src/android/test/
MoreAsserts.java 27 import java.util.regex.MatchResult;
240 * fails with {@code message} if it does not. The MatchResult is returned
245 public static MatchResult assertMatchesRegex(
261 public static MatchResult assertMatchesRegex(
273 public static MatchResult assertContainsRegex(
289 public static MatchResult assertContainsRegex(
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.h 42 virtual void run(const MatchFinder::MatchResult &Result) {

Completed in 1333 milliseconds

1 2 3