Home
last modified time | relevance | path

Searched refs:allLocations (Results 1 – 4 of 4) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/verification/checkers/
DAtLeastXNumberOfInvocationsChecker.java29 List<Location> allLocations = getAllLocations(actualInvocations); in checkAtLeastNumberOfInvocations() local
30 …tooLittleActualInvocations(new AtLeastDiscrepancy(wantedCount, actualCount), wanted, allLocations); in checkAtLeastNumberOfInvocations()
42 List<Location> allLocations = getAllLocations(chunk); in checkAtLeastNumberOfInvocations() local
43 …leActualInvocationsInOrder(new AtLeastDiscrepancy(wantedCount, actualCount), wanted, allLocations); in checkAtLeastNumberOfInvocations()
DNumberOfInvocationsChecker.java38 List<Location> allLocations = getAllLocations(actualInvocations); in checkNumberOfInvocations() local
39 … throw tooLittleActualInvocations(new Discrepancy(wantedCount, actualCount), wanted, allLocations); in checkNumberOfInvocations()
57 List<Location> allLocations = getAllLocations(chunk); in checkNumberOfInvocations() local
58 …tooLittleActualInvocationsInOrder(new Discrepancy(wantedCount, actualCount), wanted, allLocations); in checkNumberOfInvocations()
/external/fonttools/Lib/fontTools/ttLib/tables/
DE_B_L_C_.py464 allLocations = []
467 allLocations.append((locQueue[0][0], locQueue[0][0]))
470 allLocations.append(locQueue.popleft())
475 offsets = list(allLocations[0]) + [loc[1] for loc in allLocations[1:]]
/external/mockito/src/main/java/org/mockito/internal/exceptions/
DReporter.java419 …ernal.reporting.Discrepancy discrepancy, DescribedInvocation wanted, List<Location> allLocations) { in tooLittleActualInvocations() argument
420 String message = createTooLittleInvocationsMessage(discrepancy, wanted, allLocations); in tooLittleActualInvocations()