Home
last modified time | relevance | path

Searched refs:onPrintJobQueued (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/print/src/android/print/cts/services/
DStubbablePrintService.java44 public void onPrintJobQueued(PrintJob printJob) { in onPrintJobQueued() method in StubbablePrintService
47 callbacks.onPrintJobQueued(printJob); in onPrintJobQueued()
DPrintServiceCallbacks.java38 public abstract void onPrintJobQueued(PrintJob printJob); in onPrintJobQueued() method in PrintServiceCallbacks
/cts/tests/tests/print/src/android/print/cts/
DPrintJobTest.java172 void onPrintJobQueued(PrintJob printJob) throws Exception;
197 printJobTest.onPrintJobQueued(printJob);
421 public void onPrintJobQueued(PrintJob printJob) throws Exception {
467 public void onPrintJobQueued(PrintJob printJob) throws Exception {
497 public void onPrintJobQueued(PrintJob printJob) throws Exception {
519 public void onPrintJobQueued(PrintJob printJob) throws Exception {
547 public void onPrintJobQueued(PrintJob printJob) throws Exception {
627 public void onPrintJobQueued(PrintJob printJob) throws Exception {
637 public void onPrintJobQueued(PrintJob printJob) throws Exception {
DPageRangeAdjustmentTest.java168 inOrder.verify(firstServiceCallbacks).onPrintJobQueued( in testAllPagesWantedAndAllPagesWritten()
283 inOrder.verify(firstServiceCallbacks).onPrintJobQueued( in testSomePagesWantedAndAllPagesWritten()
417 inOrder.verify(firstServiceCallbacks).onPrintJobQueued( in testSomePagesWantedAndSomeMorePagesWritten()
509 inOrder.verify(firstServiceCallbacks, never()).onPrintJobQueued( in testSomePagesWantedAndNotWritten()
632 inOrder.verify(firstServiceCallbacks).onPrintJobQueued( in testWantedPagesAlreadyWrittenForPreview()
DBasePrintTest.java697 Answer<Void> onPrintJobQueued, Answer<Void> onRequestCancelPrintJob) { in createMockPrintServiceCallbacks() argument
707 if (onPrintJobQueued != null) { in createMockPrintServiceCallbacks()
708 doAnswer(onPrintJobQueued).when(service).onPrintJobQueued(any(PrintJob.class)); in createMockPrintServiceCallbacks()