/external/chromium/chrome/browser/printing/ |
D | print_job.cc | 19 PrintJob::PrintJob() in PrintJob() function in printing::PrintJob 34 PrintJob::~PrintJob() { in ~PrintJob() 44 void PrintJob::Initialize(PrintJobWorkerOwner* job, in Initialize() 63 Source<PrintJob>(this)); in Initialize() 66 void PrintJob::Observe(NotificationType type, in Observe() 81 void PrintJob::GetSettingsDone(const PrintSettings& new_settings, in GetSettingsDone() 86 PrintJobWorker* PrintJob::DetachWorker(PrintJobWorkerOwner* new_owner) { in DetachWorker() 91 MessageLoop* PrintJob::message_loop() { in message_loop() 95 const PrintSettings& PrintJob::settings() const { in settings() 99 int PrintJob::cookie() const { in cookie() [all …]
|
D | print_job.h | 36 class PrintJob : public PrintJobWorkerOwner, 42 PrintJob(); 95 virtual ~PrintJob(); 140 DISALLOW_COPY_AND_ASSIGN(PrintJob);
|
D | print_job_manager.h | 20 class PrintJob; variable 55 typedef std::vector<scoped_refptr<PrintJob> > PrintJobs; 59 void OnPrintJobEvent(PrintJob* print_job,
|
D | print_job_unittest.cc | 65 class TestPrintJob : public printing::PrintJob { 100 scoped_refptr<printing::PrintJob> job(new TestPrintJob(&check)); in TEST() 113 scoped_refptr<printing::PrintJob> job(new TestPrintJob(&check)); in TEST()
|
D | print_job_manager.cc | 49 PrintJob* job = current_jobs[i]; in StopJobs() 91 OnPrintJobEvent(Source<PrintJob>(source).ptr(), in Observe() 111 PrintJob* print_job, in OnPrintJobEvent()
|
D | print_view_manager.h | 23 class PrintJob; variable 117 scoped_refptr<PrintJob> print_job_;
|
D | print_view_manager.cc | 323 print_job_ = new PrintJob(); in CreateNewPrintJob() 326 Source<PrintJob>(print_job_.get())); in CreateNewPrintJob() 391 Source<PrintJob>(print_job_.get())); in ReleasePrintJob()
|
D | print_job_worker.h | 23 class PrintJob; variable
|
D | print_job_worker.cc | 42 Source<PrintJob>(static_cast<PrintJob*>(print_job_.get())), in Run()
|
/external/clang/lib/Frontend/ |
D | CreateInvocationFromCommandLine.cpp | 61 C->PrintJob(llvm::errs(), C->getJobs(), "\n", true); in createInvocationFromCommandLine() 71 C->PrintJob(OS, C->getJobs(), "; ", true); in createInvocationFromCommandLine()
|
/external/clang/lib/Driver/ |
D | Compilation.cpp | 63 void Compilation::PrintJob(llvm::raw_ostream &OS, const Job &J, in PrintJob() function in Compilation 90 PrintJob(OS, **it, Terminator, Quote); in PrintJob() 161 PrintJob(*OS, C, "\n", /*Quote=*/getDriver().CCPrintOptions); in ExecuteCommand()
|
D | Driver.cpp | 319 C.PrintJob(llvm::errs(), C.getJobs(), "\n", true); in ExecuteCompilation()
|
/external/clang/examples/clang-interpreter/ |
D | main.cpp | 100 C->PrintJob(OS, C->getJobs(), "; ", true); in main() 123 C->PrintJob(llvm::errs(), C->getJobs(), "\n", true); in main()
|
/external/clang/include/clang/Driver/ |
D | Compilation.h | 123 void PrintJob(llvm::raw_ostream &OS, const Job &J,
|