OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:matcherstack
(Results
1 - 2
of
2
) sorted by null
/external/mockito/src/org/mockito/internal/progress/
ArgumentMatcherStorageImpl.java
26
private Stack<LocalizedMatcher>
matcherStack
= new Stack<LocalizedMatcher>();
32
matcherStack
.push(new LocalizedMatcher(matcher));
40
if (
matcherStack
.isEmpty()) {
44
List<LocalizedMatcher> matchers = new ArrayList<LocalizedMatcher>(
matcherStack
);
45
matcherStack
.clear();
55
matcherStack
.push(new LocalizedMatcher(and));
65
matcherStack
.push(new LocalizedMatcher(or));
75
matcherStack
.push(new LocalizedMatcher(not));
86
result.addAll(
matcherStack
.subList(
matcherStack
.size() - count, matcherStack.size()))
[
all
...]
/external/mockito/src/org/mockito/exceptions/
Reporter.java
245
public void incorrectUseOfAdditionalMatchers(String additionalMatcherName, int expectedSubMatchersCount, Collection<LocalizedMatcher>
matcherStack
) {
250
expectedSubMatchersCount + " sub matchers expected, " +
matcherStack
.size() + " recorded:",
251
locationsOf(
matcherStack
),
[
all
...]
Completed in 98 milliseconds