Searched defs:pages (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/print/
H A DPrintDocumentAdapter.java44 * specific pages.
68 * pages to the provided destination. The execution of this method is not
191 * Called when specific pages of the content should be written in the
233 * @param pages The pages whose content to print - non-overlapping in ascending order.
241 public abstract void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
270 * @param pages The pages that were written. Cannot be <code>null</code>
273 public void onWriteFinished(PageRange[] pages) { argument
H A DPrintFileDocumentAdapter.java87 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
H A DPrintJobInfo.java155 /** The pages to print */
443 * Gets the included pages.
445 * @return The included pages or <code>null</code> if not set.
452 * Sets the included pages.
454 * @param pageRanges The included pages.
631 builder.append(", pages: " + (mPageRanges != null
705 * Sets the included pages.
707 * @param pages The included pages.
709 public void setPages(PageRange[] pages) { argument
[all...]
H A DPrintManager.java71 * layout pass the system may ask the application to render one or more pages one
593 public void write(PageRange[] pages, ParcelFileDescriptor fd, argument
616 args.arg2 = pages;
778 PageRange[] pages = (PageRange[]) args.arg2;
787 builder.append("\n pages:").append(Arrays.toString(pages));
792 adapter.onWrite(pages, fd, cancellation, callback);
942 public void onWriteFinished(PageRange[] pages) { argument
957 if (pages == null) {
958 throw new IllegalArgumentException("pages canno
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DRemotePrintDocument.java90 // ask for some pages given we do not already have them or we do
93 if (mUpdateSpec.pages != null && (mDocumentInfo.changed
97 mUpdateSpec.pages, mDocumentInfo.info.getPageCount())))) {
100 mDocumentInfo.info.getPageCount(), mUpdateSpec.pages,
103 if (mUpdateSpec.pages != null) {
104 // If we have the requested pages, update which ones to be printed.
106 mUpdateSpec.pages, mDocumentInfo.writtenPages,
188 public boolean update(PrintAttributes attributes, PageRange[] pages, boolean preview) { argument
222 // If no layout in progress and we don't have all pages - schedule a write.
225 && pages !
484 PageRange[] pages; field in class:RemotePrintDocument.UpdateSpec
486 update(PrintAttributes attributes, boolean preview, PageRange[] pages) argument
878 WriteCommand(Context context, Looper looper, IPrintDocumentAdapter adapter, RemotePrintDocumentInfo document, int pageCount, PageRange[] pages, MutexFileProvider fileProvider, CommandDoneCallback callback) argument
972 handleOnWriteFinished(PageRange[] pages, int sequence) argument
1095 onWriteFinished(PageRange[] pages, int sequence) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java2202 * List&lt;Notification&gt; pages = wearableExtender.getPages();</pre>
2279 private static final String KEY_PAGES = "pages";
2336 Notification[] pages = getNotificationArrayFromBundle(
2338 if (pages != null) {
2339 Collections.addAll(mPages, pages);
2524 * notification forms the first page, and pages added using this function form
2525 * subsequent pages. This field can be used to separate a notification into multiple
2538 * Add additional pages of content to display with this notification. The current
2539 * notification forms the first page, and pages added using this function form
2540 * subsequent pages
2547 addPages(List<Notification> pages) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java4398 * List&lt;Notification&gt; pages = wearableExtender.getPages();</pre>
4475 private static final String KEY_PAGES = "pages";
4529 Notification[] pages = getNotificationArrayFromBundle(
4531 if (pages != null) {
4532 Collections.addAll(mPages, pages);
4715 * notification forms the first page, and pages added using this function form
4716 * subsequent pages. This field can be used to separate a notification into multiple
4729 * Add additional pages of content to display with this notification. The current
4730 * notification forms the first page, and pages added using this function form
4731 * subsequent pages
4738 addPages(List<Notification> pages) argument
[all...]

Completed in 3867 milliseconds