Searched refs:conversion (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/lang/Double/
H A DParseDouble.java588 double conversion = 0.0;
589 double sum = 0.0; // Prevent conversion from being optimized away
595 conversion = Double.parseDouble(decimal);
596 sum += conversion;
597 if (conversion != expected) {
600 i, conversion);
606 throw new RuntimeException("Inconsistent conversion");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIElement.java93 // process conversion declarations
94 for( Element conv : DOMUtil.getChildElements(e,"conversion") ) {
210 * Gets the conversion method for this element.
224 return conversion(cnv);
228 * Resolves the conversion name to the conversion declaration.
236 public BIConversion conversion( String name ) { method in class:BIElement
240 // check the global conversion declarations
241 return parent.conversion(name);
H A DBIAttribute.java59 * Gets the conversion method for this attribute, if any.
70 return parent.conversion(cnv);
H A DBindInfo.java104 // process conversion declarations
105 for( Element cnv : DOMUtil.getChildElements(dom,"conversion")) {
113 // TODO: check the uniquness of conversion name
217 * Gets the conversion declaration from the binding info.
222 public BIConversion conversion(String name) { method in class:BindInfo
225 throw new AssertionError("undefined conversion name: this should be checked by the validator before we read it");
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME29 The image conversion process is controlled by a function skeleton
38 The conversion process as defined by <img_scaleloop.h> can be broken
164 Called at the end of the image conversion function to perform any
249 To implement a given conversion function, simply create a file which
258 name that performs the indicated image conversion. An example of a file
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp3458 double conversion = 0;
3462 conversion = POINTS_TO_HIENGLISH;
3466 conversion = POINTS_TO_HIMETRIC;
3470 conversion = POINTS_TO_LOMETRIC;
3479 return (long) ((value * conversion) + 0.5);
/openjdk7/jdk/src/share/classes/java/util/
H A DFormatter.java73 * example, if a conversion is incompatible with a flag, an exception will be
176 * %[argument_index$][flags][width][.precision]conversion
184 * format. The set of valid flags depends on the conversion.
191 * the conversion.
193 * <p> The required <i>conversion</i> is a character indicating how the
201 * %[argument_index$][flags][width]conversion
207 * <p> The required <i>conversion</i> is a two character sequence. The first
217 * %[flags][width]conversion
222 * <p> The required <i>conversion</i> is a character indicating content to be
238 * Byte}, {@code short}, and {@link Short}. This conversion ma
2642 private char conversion(String s) { method in class:Formatter.FormatSpecifier
2656 private char conversion() { method in class:Formatter.FormatSpecifier
[all...]

Completed in 47 milliseconds