OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PrintJob
(Results
1 - 16
of
16
) sorted by null
/cts/tests/tests/print/src/android/print/cts/services/
PrintServiceCallbacks.java
19
import android.printservice.
PrintJob
;
36
public abstract void onRequestCancelPrintJob(
PrintJob
printJob
);
38
public abstract void onPrintJobQueued(
PrintJob
printJob
);
StubbablePrintService.java
19
import android.printservice.
PrintJob
;
36
public void onRequestCancelPrintJob(
PrintJob
printJob
) {
39
callbacks.onRequestCancelPrintJob(
printJob
);
44
public void onPrintJobQueued(
PrintJob
printJob
) {
47
callbacks.onPrintJobQueued(
printJob
);
/external/chromium_org/chrome/browser/printing/
print_job.cc
39
PrintJob
::
PrintJob
()
53
PrintJob
::~
PrintJob
() {
61
void
PrintJob
::Initialize(PrintJobWorkerOwner* job,
83
content::Source<
PrintJob
>(this));
86
void
PrintJob
::Observe(int type,
101
void
PrintJob
::GetSettingsDone(const PrintSettings& new_settings,
106
PrintJobWorker*
PrintJob
::DetachWorker(PrintJobWorkerOwner* new_owner) {
111
const PrintSettings&
PrintJob
::settings() const
[
all
...]
print_job.h
35
// worker thread so the caller never blocks.
PrintJob
will send notifications on
39
class
PrintJob
: public PrintJobWorkerOwner,
42
// Create a empty
PrintJob
. When initializing with this constructor,
44
PrintJob
();
70
// handle to the object. Use
PrintJob
::is_stopped() to check whether the
101
virtual ~
PrintJob
();
160
base::WeakPtrFactory<
PrintJob
> quit_factory_;
162
DISALLOW_COPY_AND_ASSIGN(
PrintJob
);
189
// not a good moment to release the handle to
PrintJob
.
193
//
PrintJob
[
all
...]
print_job_manager.h
22
class
PrintJob
;
76
typedef std::set<scoped_refptr<
PrintJob
> > PrintJobs;
79
void OnPrintJobEvent(
PrintJob
* print_job,
print_view_manager_base.h
27
class
PrintJob
;
139
scoped_refptr<
PrintJob
> print_job_;
print_job_unittest.cc
66
class TestPrintJob : public printing::
PrintJob
{
90
// Test the multi-threaded nature of
PrintJob
to make sure we can use it with
100
scoped_refptr<printing::
PrintJob
> job(new TestPrintJob(&check));
120
scoped_refptr<printing::
PrintJob
> job(new TestPrintJob(&check));
print_job_worker.h
23
class
PrintJob
;
32
//
PrintJob
always outlives its worker instance.
60
// Dequeues waiting pages. Called when
PrintJob
receives a
93
// and DEFAULT_INIT_DONE. These three are sent through
PrintJob
::InitDone().
print_job_manager.cc
62
// corresponding
PrintJob
, so any pending preview requests are not covered
117
OnPrintJobEvent(content::Source<
PrintJob
>(source).ptr(),
129
PrintJob
* print_job,
print_view_manager_base.cc
313
//
PrintJob
will send a ALL_PAGES_REQUESTED after having received all the
359
print_job_ = new
PrintJob
();
362
content::Source<
PrintJob
>(print_job_.get()));
421
content::Source<
PrintJob
>(print_job_.get()));
print_job_worker.cc
82
// We know that is is a
PrintJob
object in this circumstance.
83
content::Source<
PrintJob
>(static_cast<
PrintJob
*>(print_job)),
181
//
PrintJob
will create the new PrintedDocument.
/cts/tests/tests/print/src/android/print/cts/
PageRangeAdjustmentTest.java
42
import android.printservice.
PrintJob
;
80
PrintJob
printJob
= (
PrintJob
) invocation.getArguments()[0];
81
PageRange[] pages =
printJob
.getInfo().getPages();
83
printJob
.complete();
164
any(
PrintJob
.class));
183
PrintJob
printJob
= (
PrintJob
) invocation.getArguments()[0]
[
all
...]
PrinterDiscoverySessionLifecycleTest.java
39
import android.printservice.
PrintJob
;
82
PrintJob
printJob
= (
PrintJob
) invocation.getArguments()[0];
84
printJob
.complete();
179
PrintJob
printJob
= (
PrintJob
) invocation.getArguments()[0];
181
printJob
.complete();
BasePrintTest.java
49
import android.printservice.
PrintJob
;
403
doAnswer(onPrintJobQueued).when(service).onPrintJobQueued(any(
PrintJob
.class));
407
any(
PrintJob
.class));
PrintDocumentAdapterContractTest.java
44
import android.printservice.
PrintJob
;
[
all
...]
/external/chromium_org/third_party/android_platform/webview/
frameworks.jar
Completed in 383 milliseconds