Home | History | Annotate | Download | only in print

Lines Matching defs:Resolution

23 import android.print.PrintAttributes.Resolution;
56 private List<Resolution> mResolutions;
102 mResolutions = new ArrayList<Resolution>(other.mResolutions);
130 public List<Resolution> getResolutions() {
329 mResolutions = new ArrayList<Resolution>();
332 mResolutions.add(Resolution.createFromParcel(parcel));
419 * Adds a supported resolution.
424 * @param resolution A resolution.
431 * @see PrintAttributes.Resolution
433 public Builder addResolution(Resolution resolution, boolean isDefault) {
435 mPrototype.mResolutions = new ArrayList<Resolution>();
438 mPrototype.mResolutions.add(resolution);
524 throw new IllegalStateException("No resolution specified.");
527 throw new IllegalStateException("No default resolution specified.");