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.js75 var matchResult;
76 while ( (matchResult = markPattern.exec(codeSnippet)) ) {
77 expectedPositions[matchResult.index] = true;
/external/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);
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DMatchedPropertiesCache.cpp38 …ties::set(const RenderStyle* style, const RenderStyle* parentStyle, const MatchResult& matchResult) in set() argument
40 matchedProperties.append(matchResult.matchedProperties); in set()
41 ranges = matchResult.ranges; in set()
62 …::find(unsigned hash, const StyleResolverState& styleResolverState, const MatchResult& matchResult) in find() argument
72 size_t size = matchResult.matchedProperties.size(); in find()
78 if (matchResult.matchedProperties[i] != cacheItem->matchedProperties[i]) in find()
81 if (cacheItem->ranges != matchResult.ranges) in find()
86 … RenderStyle* style, const RenderStyle* parentStyle, unsigned hash, const MatchResult& matchResult) in add() argument
104 cacheItem->set(style, parentStyle, matchResult); in add()
DStyleResolver.cpp1305 …::applyMatchedProperties(StyleResolverState& state, const MatchResult& matchResult, bool isImporta… in applyMatchedProperties() argument
1312 const MatchedProperties& matchedProperties = matchResult.matchedProperties[i]; in applyMatchedProperties()
1318 …applyProperties<pass>(state, matchedProperties.properties.get(), matchResult.matchedRules[i], isIm… in applyMatchedProperties()
1325 const MatchedProperties& matchedProperties = matchResult.matchedProperties[i]; in applyMatchedProperties()
1326 …applyProperties<pass>(state, matchedProperties.properties.get(), matchResult.matchedRules[i], isIm… in applyMatchedProperties()
1340 …id StyleResolver::applyMatchedProperties(StyleResolverState& state, const MatchResult& matchResult) in applyMatchedProperties() argument
1347 …unsigned cacheHash = matchResult.isCacheable ? computeMatchedPropertiesHash(matchResult.matchedPro… in applyMatchedProperties()
1351 …cheHash && (cachedMatchedProperties = m_matchedPropertiesCache.find(cacheHash, state, matchResult)) in applyMatchedProperties()
1374 …applyMatchedProperties<VariableDefinitions>(state, matchResult, false, 0, matchResult.matchedPrope… in applyMatchedProperties()
1375 …chedProperties<VariableDefinitions>(state, matchResult, true, matchResult.ranges.firstAuthorRule, 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
DCompareEqual.java24 protected boolean matchResult(int result) { in matchResult() method in CompareEqual
DLessOrEqual.java24 protected boolean matchResult(int result) { in matchResult() method in LessOrEqual
DGreaterOrEqual.java24 protected boolean matchResult(int result) { in matchResult() method in GreaterOrEqual
DLessThan.java24 protected boolean matchResult(int result) { in matchResult() method in LessThan
DGreaterThan.java24 protected boolean matchResult(int result) { in matchResult() method in GreaterThan
/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
DLessOrEqual.java32 protected boolean matchResult(int result) { in matchResult() method in LessOrEqual
DGreaterOrEqual.java32 protected boolean matchResult(int result) { in matchResult() method in GreaterOrEqual
DGreaterThan.java32 protected boolean matchResult(int result) { in matchResult() method in GreaterThan
DLessThan.java32 protected boolean matchResult(int result) { in matchResult() method in LessThan
DCompareEqual.java32 protected boolean matchResult(int result) { in matchResult() method in CompareEqual
DCompare.java50 return operator.matchResult(comparator.compare((T) actual, expected)); in matches()