Home | History | Annotate | Download | only in style

Lines Matching refs:first

40      * @param first true if the request is for the first line of a paragraph,
44 public int getLeadingMargin(boolean first);
61 * @param first true if this is the first line of its paragraph
68 boolean first, Layout layout);
74 * this object is attached that the "first line of paragraph" margin
80 * attached that the "first line" margin will apply to.
81 * Note that if this returns N, the first N lines of the region,
82 * not the first N lines of each paragraph, will be given the
96 * Constructor taking separate indents for the first and subsequent
99 * @param first the indent for the first line of the paragraph
102 public Standard(int first, int rest) {
103 mFirst = first;
133 public int getLeadingMargin(boolean first) {
134 return first ? mFirst : mRest;
141 boolean first, Layout layout) {