Lines Matching refs:form

47  * <li><code>form</code>:
48 * the form of any exponent that results from the operation
89 * Used as a setting to control the form of the result of a
91 * A zero result in plain form may have a decimal part of one or
103 * Used as a setting to control the form of the result of a
105 * A zero result in plain form may have a decimal part of one or
117 * Used as a setting to control the form of the result of a
119 * A zero result in plain form may have a decimal part of one or
250 * The form of results from an operation.
253 * determine the form of results, in particular whether and how
261 int form; // values for this must fit in a byte
330 * <code>digits=9 form=SCIENTIFIC lostDigits=false
367 * precision and form.
379 * @param setform The <code>int</code> form setting
391 * precision, form, and lostDigits setting.
403 * @param setform The <code>int</code> form setting
417 * precision, form, lostDigits, and roundingMode setting.
427 * @param setform The <code>int</code> form setting
454 throw new java.lang.IllegalArgumentException("Bad form value:"+" "+setform);
460 form=setform;
479 * Returns the form setting.
485 * @return an <code>int</code> which is the value of the form setting
490 return form;
538 * <code>form=</code>, immediately followed by
539 * the value of the form setting as an uppercase word
555 * digits=9 form=SCIENTIFIC lostDigits=0 roundingMode=ROUND_HALF_UP
572 if (form==SCIENTIFIC)
574 else if (form==ENGINEERING)
577 formstr="PLAIN";/* form=PLAIN */
588 return "digits="+digits+" "+"form="+formstr+" "+"lostDigits="+(lostDigits?"1":"0")+" "+"roundingMode="+roundword;