Home
last modified time | relevance | path

Searched refs:matchResult (Results 1 – 19 of 19) sorted by relevance

/external/easymock/src/org/easymock/
DLogicalOperator.java23 public boolean matchResult(int result) { in matchResult() method
28 public boolean matchResult(int result) { in matchResult() method
33 public boolean matchResult(int result) { in matchResult() method
38 public boolean matchResult(int result) { in matchResult() method
43 public boolean matchResult(int result) { in matchResult() method
58 public abstract boolean matchResult(int result); in matchResult() method in LogicalOperator
/external/chromium_org/v8/test/mjsunit/
Dstring-match.js34 var matchResult = input.match(regexp);
35 assertEquals(result, matchResult, name + "-match");
44 var lastMatch = matchResult[matchResult.length - 1];
48 assertEquals(match, matchResult[0], name + "-match-string");
49 assertEquals(captures.length + 1, matchResult.length, name + "-cap-return");
50 for (var i = 1; i < matchResult.length; i++) {
51 assertEquals(captures[i - 1], matchResult[i], name + "-cap-return-" + i);
Ddebug-stepin-positions.js76 var matchResult;
77 while ( (matchResult = markPattern.exec(codeSnippet)) ) {
78 expectedPositions[matchResult.index] = true;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DMatchedPropertiesCache.cpp66 …ties::set(const RenderStyle* style, const RenderStyle* parentStyle, const MatchResult& matchResult) in set() argument
68 matchedProperties.appendVector(matchResult.matchedProperties); in set()
69 ranges = matchResult.ranges; in set()
92 …::find(unsigned hash, const StyleResolverState& styleResolverState, const MatchResult& matchResult) in find() argument
102 size_t size = matchResult.matchedProperties.size(); in find()
108 if (matchResult.matchedProperties[i] != cacheItem->matchedProperties[i]) in find()
111 if (cacheItem->ranges != matchResult.ranges) in find()
116 … RenderStyle* style, const RenderStyle* parentStyle, unsigned hash, const MatchResult& matchResult) in add() argument
136 cacheItem->set(style, parentStyle, matchResult); in add()
DStyleResolver.cpp1349 …::applyMatchedProperties(StyleResolverState& state, const MatchResult& matchResult, bool isImporta… in applyMatchedProperties() argument
1356 const MatchedProperties& matchedProperties = matchResult.matchedProperties[i]; in applyMatchedProperties()
1369 const MatchedProperties& matchedProperties = matchResult.matchedProperties[i]; in applyMatchedProperties()
1390 …id StyleResolver::applyMatchedProperties(StyleResolverState& state, const MatchResult& matchResult) in applyMatchedProperties() argument
1397 …unsigned cacheHash = matchResult.isCacheable ? computeMatchedPropertiesHash(matchResult.matchedPro… in applyMatchedProperties()
1399 …edMatchedProperties = cacheHash ? m_matchedPropertiesCache.find(cacheHash, state, matchResult) : 0; in applyMatchedProperties()
1428 …applyMatchedProperties<HighPriorityProperties>(state, matchResult, false, 0, matchResult.matchedPr… in applyMatchedProperties()
1429 …dProperties<HighPriorityProperties>(state, matchResult, true, matchResult.ranges.firstAuthorRule, in applyMatchedProperties()
1430 …hedProperties<HighPriorityProperties>(state, matchResult, true, matchResult.ranges.firstUARule, ma… in applyMatchedProperties()
1460 …chedProperties<LowPriorityProperties>(state, matchResult, false, matchResult.ranges.firstUARule, m… in applyMatchedProperties()
[all …]
/external/mockito/src/org/mockito/internal/matchers/
DCompareTo.java26 return matchResult(((Comparable) actual).compareTo(wanted)); in matches()
35 protected abstract boolean matchResult(int result); in matchResult() method in CompareTo
DLessThan.java24 protected boolean matchResult(int result) { in matchResult() method in LessThan
DGreaterOrEqual.java24 protected boolean matchResult(int result) { in matchResult() method in GreaterOrEqual
DLessOrEqual.java24 protected boolean matchResult(int result) { in matchResult() method in LessOrEqual
DGreaterThan.java24 protected boolean matchResult(int result) { in matchResult() method in GreaterThan
DCompareEqual.java24 protected boolean matchResult(int result) { in matchResult() method in CompareEqual
/external/easymock/src/org/easymock/internal/matchers/
DCompareTo.java39 return matchResult(((Comparable) actual).compareTo(expected)); in matches()
48 protected abstract boolean matchResult(int result); in matchResult() method in CompareTo
DGreaterThan.java32 protected boolean matchResult(int result) { in matchResult() method in GreaterThan
DLessOrEqual.java32 protected boolean matchResult(int result) { in matchResult() method in LessOrEqual
DGreaterOrEqual.java32 protected boolean matchResult(int result) { in matchResult() method in GreaterOrEqual
DCompareEqual.java32 protected boolean matchResult(int result) { in matchResult() method in CompareEqual
DLessThan.java32 protected boolean matchResult(int result) { in matchResult() method in LessThan
DCompare.java50 return operator.matchResult(comparator.compare((T) actual, expected)); in matches()
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
DCacheTest.cpp306 ScriptPromise matchResult = cache->match(scriptState(), request, *queryParams); in TEST_F() local
308 EXPECT_EQ(kNotImplementedString, getRejectString(matchResult)); in TEST_F()