/external/easymock/src/org/easymock/ |
LogicalOperator.java | 23 public boolean matchResult(int result) {
28 public boolean matchResult(int result) {
33 public boolean matchResult(int result) {
38 public boolean matchResult(int result) {
43 public boolean matchResult(int result) {
58 public abstract boolean matchResult(int result);
|
/external/easymock/src/org/easymock/internal/matchers/ |
CompareTo.java | 39 return matchResult(((Comparable) actual).compareTo(expected));
48 protected abstract boolean matchResult(int result);
|
CompareEqual.java | 32 protected boolean matchResult(int result) {
|
GreaterOrEqual.java | 32 protected boolean matchResult(int result) {
|
GreaterThan.java | 32 protected boolean matchResult(int result) {
|
LessOrEqual.java | 32 protected boolean matchResult(int result) {
|
LessThan.java | 32 protected boolean matchResult(int result) {
|
Compare.java | 50 return operator.matchResult(comparator.compare((T) actual, expected));
|
/external/mockito/src/org/mockito/internal/matchers/ |
CompareTo.java | 26 return matchResult(((Comparable) actual).compareTo(wanted)); 35 protected abstract boolean matchResult(int result);
|
CompareEqual.java | 24 protected boolean matchResult(int result) {
|
GreaterOrEqual.java | 24 protected boolean matchResult(int result) {
|
GreaterThan.java | 24 protected boolean matchResult(int result) {
|
LessOrEqual.java | 24 protected boolean matchResult(int result) {
|
LessThan.java | 24 protected boolean matchResult(int result) {
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
MatchedPropertiesCache.cpp | 38 void CachedMatchedProperties::set(const RenderStyle* style, const RenderStyle* parentStyle, const MatchResult& matchResult) 40 matchedProperties.append(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.cpp | 63 #include "core/css/resolver/MatchResult.h" 748 MatchResult result; [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/luni/tests/java/util/ |
ScannerTest.java | 55 import java.util.regex.MatchResult; 517 MatchResult result ; [all...] |
/external/chromium_org/v8/test/mjsunit/ |
string-match.js | 34 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);
|
debug-stepin-positions.js | 75 var matchResult; 76 while ( (matchResult = markPattern.exec(codeSnippet)) ) { 77 expectedPositions[matchResult.index] = true;
|
/external/v8/test/mjsunit/ |
string-match.js | 34 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);
|
/cts/suite/cts/deviceTests/browserbench/src/com/android/cts/browser/ |
BrowserBenchTest.java | 89 Matcher matchResult = resultPattern.matcher(uriString); 90 if (matchResult.find()) { 91 int isFinal = Integer.parseInt(matchResult.group(1)); 92 double score = Double.parseDouble(matchResult.group(2)); 93 String message = matchResult.group(3);
|
/prebuilts/tools/common/easymock-tools/ |
easymock-3.1.jar | |
/prebuilts/tools/common/m2/internal/org/easymock/easymock/3.1/ |
easymock-3.1.jar | |
/external/robolectric/lib/test/ |
mockito-core-1.8.5.jar | |
/external/dexmaker/lib/ |
mockito-core-1.9.1-SNAPSHOT.jar | |