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;
766 PageRange[] pages = (PageRange[]) args.arg2;
775 builder.append("\n pages:").append(Arrays.toString(pages));
780 adapter.onWrite(pages, fd, cancellation, callback);
921 public void onWriteFinished(PageRange[] pages) { argument
936 if (pages == null) {
937 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 !
472 PageRange[] pages; field in class:RemotePrintDocument.UpdateSpec
474 update(PrintAttributes attributes, boolean preview, PageRange[] pages) argument
866 WriteCommand(Context context, Looper looper, IPrintDocumentAdapter adapter, RemotePrintDocumentInfo document, int pageCount, PageRange[] pages, MutexFileProvider fileProvider, CommandDoneCallback callback) argument
960 handleOnWriteFinished(PageRange[] pages, int sequence) argument
1083 onWriteFinished(PageRange[] pages, int sequence) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java2171 * List&lt;Notification&gt; pages = wearableExtender.getPages();</pre>
2235 private static final String KEY_PAGES = "pages";
2289 Notification[] pages = getNotificationArrayFromBundle(
2291 if (pages != null) {
2292 Collections.addAll(mPages, pages);
2472 * notification forms the first page, and pages added using this function form
2473 * subsequent pages. This field can be used to separate a notification into multiple
2486 * Add additional pages of content to display with this notification. The current
2487 * notification forms the first page, and pages added using this function form
2488 * subsequent pages
2495 addPages(List<Notification> pages) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java4277 * List&lt;Notification&gt; pages = wearableExtender.getPages();</pre>
4341 private static final String KEY_PAGES = "pages";
4392 Notification[] pages = getNotificationArrayFromBundle(
4394 if (pages != null) {
4395 Collections.addAll(mPages, pages);
4573 * notification forms the first page, and pages added using this function form
4574 * subsequent pages. This field can be used to separate a notification into multiple
4587 * Add additional pages of content to display with this notification. The current
4588 * notification forms the first page, and pages added using this function form
4589 * subsequent pages
4596 addPages(List<Notification> pages) argument
[all...]

Completed in 140 milliseconds