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

/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 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/classes/javax/swing/text/rtf/
H A DRTFGenerator.java42 * <p>Note that this is a lossy conversion since RTF's model of
957 * and creates an output conversion table for use by
964 int[] conversion = new int[2 * table.length];
969 conversion[index * 2] = table[index];
970 conversion[(index * 2) + 1] = index;
973 return conversion;
983 /** Takes a char and a conversion table (an int[] in the current
984 * implementation, but conversion tables should be treated as an opaque
989 static protected int convertCharacter(int[] conversion, char ch) argument
993 for(index = 0; index < conversion
[all...]
/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 92 milliseconds