Searched defs:normalize (Results 1 - 25 of 79) sorted by relevance

1234

/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DUtil.java71 static String normalize(String file) { method in class:Util
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDocumentFragmentImpl.java109 * Override default behavior to call normalize() on this Node's
110 * children. It is up to implementors or Node to override normalize()
113 public void normalize() { method in class:DocumentFragmentImpl
114 // No need to normalize if already normalized.
149 kid.normalize();
/openjdk7/jdk/src/share/classes/java/text/
H A DNormalizer.java44 * This class provides the method <code>normalize</code> which transforms Unicode
47 * The <code>normalize</code> method supports the standard normalization forms
96 * The <code>normalize</code> method helps solve these problems by transforming
101 * Finally, the <code>normalize</code> method rearranges accents into the
153 * @param src The sequence of char values to normalize.
163 public static String normalize(CharSequence src, Form form) { method in class:Normalizer
164 return NormalizerBase.normalize(src.toString(), form);
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DUtils.java38 public static String normalize(String s) { method in class:Utils
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
H A DTerm.java34 abstract void normalize( List<Block> r, boolean optional ); method in class:Term
48 void normalize(List<Block> r, boolean optional) {
H A DOccurence.java62 void normalize(List<Block> r, boolean optional) { method in class:Occurence
68 term.normalize(r,optional||isOptional);
H A DModelGroup.java46 void normalize(List<Block> r, boolean optional) { method in class:ModelGroup
50 t.normalize(r,optional);
H A DElement.java123 void normalize(List<Block> r, boolean optional) { method in class:Element
150 contentModel.normalize(normalizedBlocks,false);
247 // normalize
249 contentModel.normalize(n,false);
/openjdk7/jdk/test/sun/security/util/Resources/
H A DNewResourcesNames.java126 System.err.println(" " + normalize(name));
205 normalize(name) +
229 // Check if normalize() creates dup entries. This is crucial.
231 String key = normalize(k);
340 fos.write(normalize(s).getBytes());
373 private static String normalize(String s) throws Exception { method in class:NewResourcesNames
/openjdk7/jdk/src/share/classes/sun/text/
H A DNormalizer.java51 * @param src The sequence of char values to normalize.
63 public static String normalize(CharSequence src, method in class:Normalizer
66 return NormalizerBase.normalize(src.toString(), form, option);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DIOStatus.java51 // return IOStatus.normalize(n); // Converts UNAVAILABLE to zero
58 static int normalize(int n) { method in class:IOStatus
68 static long normalize(long n) { method in class:IOStatus
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesRenderingEngine.java40 boolean normalize, int[] bbox) {
44 normalize, bbox);
47 normalize, bbox);
38 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int[] bbox) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/helpers/
H A DPublicId.java60 public static String normalize(String publicId) { method in class:PublicId
86 String urn = PublicId.normalize(publicId);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/datatypes/
H A DXSDateTime.java46 * <td> normalize() </td>
276 public XSDateTime normalize(); method in interface:XSDateTime
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorModel.java46 model[0] = normalize(color >> 16);
47 model[1] = normalize(color >> 8);
48 model[2] = normalize(color);
49 model[3] = normalize(color >> 24);
76 private static float normalize(int value) { method in class:ColorModel
H A DColorModelHSL.java79 rgb[0]= normalize(q, p, (hue < 4.0f) ? (hue + 2.0f) : (hue - 4.0f));
80 rgb[1]= normalize(q, p, hue);
81 rgb[2]= normalize(q, p, (hue < 2.0f) ? (hue + 4.0f) : (hue - 2.0f));
176 private static float normalize(float q, float p, float color) { method in class:ColorModelHSL
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPathParser.java153 return new Result(type, root, normalize(sb, input, off));
163 private static String normalize(StringBuilder sb, String path, int off) { method in class:WindowsPathParser
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPath.java149 * #normalize normalize} method, to eliminate redundant names, for cases where
333 Path normalize(); method in interface:Path
434 * <p> For any two {@link #normalize normalized} paths <i>p</i> and
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHeaders.java71 private String normalize (String key) { method in class:Headers
102 return map.containsKey (normalize((String)key));
110 return map.get(normalize((String)key));
120 List<String> l = map.get(normalize((String)key));
128 return map.put (normalize(key), value);
139 String k = normalize(key);
163 return map.remove(normalize((String)key));
/openjdk7/jdk/src/solaris/instrument/
H A DFileSystemSupport_md.c103 char* normalize(const char* pathname) { function
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTab.java144 return getInstance0(normalize(s));
194 kname = normalize(st.nextToken());
229 public static String normalize(String name) { method in class:KeyTab
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DCalendarSystem.java356 public abstract boolean normalize(CalendarDate date); method in class:CalendarSystem
H A DLocalGregorianCalendar.java270 public boolean normalize(CalendarDate date) { method in class:LocalGregorianCalendar
279 super.normalize(ldate);
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DBaseLocale.java276 public static Key normalize(Key key) { method in class:BaseLocale.Key
297 return Key.normalize(key);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderingEngine.java200 * {@link VALUE_STROKE_NORMALIZE} hint if the {@code normalize}
212 * @param normalize indicates whether stroke normalization should
224 boolean normalize,
268 * @param normalize true if the {@code VALUE_STROKE_NORMALIZE}
280 boolean normalize,
423 boolean normalize,
432 (normalize ? "normalized" : "pure")+", "+
435 target.strokeTo(src, at, bs, thin, normalize, antialias, consumer);
448 boolean normalize,
457 (normalize
220 strokeTo(Shape src, AffineTransform at, BasicStroke bs, boolean thin, boolean normalize, boolean antialias, PathConsumer2D consumer) argument
275 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
419 strokeTo(Shape src, AffineTransform at, BasicStroke bs, boolean thin, boolean normalize, boolean antialias, PathConsumer2D consumer) argument
443 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
[all...]

Completed in 52 milliseconds

1234