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

/frameworks/base/core/java/android/print/
H A DPrintAttributes.java626 * @param heightMils The height in mils (thousands of an inch).
631 * @throws IllegalArgumentException If the heightMils is less than or equal to zero.
636 int widthMils, int heightMils) {
650 if (heightMils <= 0) {
651 throw new IllegalArgumentException("heightMils "
658 mHeightMils = heightMils;
672 * @param heightMils The height in mils (thousands of an inch).
677 * @throws IllegalArgumentException If the heightMils is less than or equal to zero.
679 public MediaSize(String id, String label, int widthMils, int heightMils) { argument
690 if (heightMils <
635 MediaSize(String id, String packageName, int labelResId, int widthMils, int heightMils) argument
703 MediaSize(String id, String label, String packageName, int widthMils, int heightMils, int labelResId) argument
[all...]

Completed in 29 milliseconds