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

1 2

  /libcore/luni/src/main/java/java/util/regex/
MatchResult.java 30 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 {
528 * Converts the current match into a separate {@link MatchResult} instance
532 * @return the new {@code MatchResult}.
536 public MatchResult toMatchResult() {
  /external/clang/include/clang/Tooling/
RefactoringCallbacks.h 55 virtual void run(const ast_matchers::MatchFinder::MatchResult &Result);
67 virtual void run(const ast_matchers::MatchFinder::MatchResult &Result);
80 virtual void run(const ast_matchers::MatchFinder::MatchResult &Result);
  /external/chromium_org/third_party/WebKit/Source/core/css/
PageRuleCollector.h 25 #include "core/css/resolver/MatchResult.h"
38 MatchResult& matchedResult() { return m_result; }
53 MatchResult m_result;
ElementRuleCollector.h 29 #include "core/css/resolver/MatchResult.h"
94 MatchResult& matchedResult();
137 MatchResult m_result;
ElementRuleCollector.cpp 57 MatchResult& ElementRuleCollector::matchedResult()
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchedPropertiesCache.h 26 #include "core/css/resolver/MatchResult.h"
50 const CachedMatchedProperties* find(unsigned hash, const StyleResolverState&, const MatchResult&);
51 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 struct MatchResult {
71 MatchResult() : isCacheable(true) { }
MatchedPropertiesCache.cpp 44 const CachedMatchedProperties* MatchedPropertiesCache::find(unsigned hash, const StyleResolverState& styleResolverState, const MatchResult& matchResult)
53 size_t size = matchResult.matchedProperties.size();
59 if (matchResult.matchedProperties[i] != cacheItem.matchedProperties[i])
62 if (cacheItem.ranges != matchResult.ranges)
67 void MatchedPropertiesCache::add(const RenderStyle* style, const RenderStyle* parentStyle, unsigned hash, const MatchResult& matchResult)
78 cacheItem.matchedProperties.append(matchResult.matchedProperties);
79 cacheItem.ranges = matchResult.ranges;
StyleResolver.h 72 struct MatchResult;
299 void applyMatchedProperties(StyleResolverState&, const MatchResult&);
310 void applyMatchedProperties(StyleResolverState&, const MatchResult&, bool important, int startIndex, int endIndex, bool inheritedOnly);
315 void matchPageRules(MatchResult&, RuleSet*, bool isLeftPage, bool isFirstPage, const String& pageName);
  /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;
217 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/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) {
141 void verify(const MatchFinder::MatchResult &Result, const NodeType &Node) {
180 void verify(const MatchFinder::MatchResult &Result, const NodeType &Node) {
StmtPrinterTest.cpp 46 virtual void 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 28 import java.util.regex.MatchResult;
214 * fails with {@code message} if it does not. The MatchResult is returned
219 public static MatchResult assertMatchesRegex(
235 public static MatchResult assertMatchesRegex(
247 public static MatchResult assertContainsRegex(
263 public static MatchResult assertContainsRegex(
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.h 39 virtual void run(const MatchFinder::MatchResult &Result) {
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 46 import java.util.regex.MatchResult;
497 MatchResult result = scanner.match();
540 MatchResult result = scanner.match();
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 578 Callback->run(MatchFinder::MatchResult(BoundNodesView, Context));
771 MatchFinder::MatchResult::MatchResult(const BoundNodes &Nodes,
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 698 unsigned MatchResult;
700 MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo,
702 switch (MatchResult) {
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]

Completed in 300 milliseconds

1 2