/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/ |
H A D | JulesRenderingEngine.java | 40 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/jdk/src/share/classes/java/text/ |
H A D | Normalizer.java | 44 * 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/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/ |
H A D | Term.java | 34 abstract void normalize( List<Block> r, boolean optional ); method in class:Term 48 void normalize(List<Block> r, boolean optional) {
|
H A D | Occurence.java | 62 void normalize(List<Block> r, boolean optional) { method in class:Occurence 68 term.normalize(r,optional||isOptional);
|
H A D | ModelGroup.java | 46 void normalize(List<Block> r, boolean optional) { method in class:ModelGroup 50 t.normalize(r,optional);
|
/openjdk7/jdk/src/share/instrument/ |
H A D | FileSystemSupport.h | 57 char* normalize(const char* path);
|
/openjdk7/jdk/src/share/classes/sun/nio/ch/ |
H A D | IOStatus.java | 51 // 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/test/java/nio/file/Path/ |
H A D | PathOps.java | 186 PathOps normalize(String expected) { method in class:PathOps 189 check(path.normalize(), expected); 521 // normalize 523 .normalize("C:\\"); 525 .normalize("C:\\"); 527 .normalize("C:\\"); 529 .normalize("\\\\server\\share\\"); 531 .normalize("\\\\server\\share\\"); 533 .normalize("\\\\server\\share\\"); 535 .normalize(" [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/ |
H A D | ColorModel.java | 46 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 D | ColorModelHSL.java | 79 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/share/classes/sun/text/ |
H A D | Normalizer.java | 51 * @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/com/sun/net/httpserver/ |
H A D | Headers.java | 71 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/test/demo/zipfs/ |
H A D | PathOps.java | 182 PathOps normalize(String expected) { method in class:PathOps 185 check(path.normalize(), expected); 349 // normalize 351 .normalize("/"); 353 .normalize("foo"); 355 .normalize("/foo"); 357 .normalize(""); 359 .normalize(".."); 361 .normalize("/"); 363 .normalize("/"); [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/ |
H A D | DocumentFragmentImpl.java | 109 * 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/jaxp/src/com/sun/org/apache/xerces/internal/xs/datatypes/ |
H A D | XSDateTime.java | 46 * <td> normalize() </td> 276 public XSDateTime normalize(); method in interface:XSDateTime
|
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/ |
H A D | PixelToParallelogramConverter.java | 57 * @param normPosition sub-pixel location to normalize endpoints 173 double normalize(double v) { method in class:PixelToParallelogramConverter 245 x1 = normalize(x1); 246 y1 = normalize(y1); 247 x2 = normalize(x2); 248 y2 = normalize(y2); 313 double newx = normalize(px); 314 double newy = normalize(py); 315 dx1 = normalize(px + dx1) - newx; 316 dy1 = normalize(p [all...] |
H A D | RenderingEngine.java | 200 * {@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...] |
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/x509/ |
H A D | XMLX509SubjectName.java | 72 RFC2253Parser.normalize(x509certificate.getSubjectDN().getName())); 82 return RFC2253Parser.normalize(this.getTextFromTextChild());
|
H A D | XMLX509IssuerSerial.java | 108 RFC2253Parser.normalize(x509certificate.getIssuerDN().getName()), 144 .normalize(this
|
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/ |
H A D | PiscesRenderingEngine.java | 111 * {@link VALUE_STROKE_NORMALIZE} hint if the {@code normalize} 123 * @param normalize indicates whether stroke normalization should 135 boolean normalize, 139 NormMode norm = (normalize) ? 149 NormMode normalize, 166 normalize, 244 NormMode normalize, 266 // idea to normalize before the transformation is applied. 312 if (normalize != NormMode.OFF) { 313 pi = new NormalizingPathIterator(pi, normalize); 131 strokeTo(Shape src, AffineTransform at, BasicStroke bs, boolean thin, boolean normalize, boolean antialias, final PathConsumer2D consumer) argument 145 strokeTo(Shape src, AffineTransform at, BasicStroke bs, boolean thin, NormMode normalize, boolean antialias, PathConsumer2D pc2d) argument 241 strokeTo(Shape src, AffineTransform at, float width, NormMode normalize, int caps, int join, float miterlimit, float dashes[], float dashphase, PathConsumer2D pc2d) argument 535 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/text/normalizer/ |
H A D | NormalizerBase.java | 47 * <code>normalize</code> transforms Unicode text into an equivalent composed or 49 * <code>normalize</code> supports the standard normalization forms described in 98 * <code>normalize</code> helps solve these problems by transforming text into 102 * Finally, <code>normalize</code> rearranges accents into the proper canonical 126 * normalize(FCD) may be implemented with NFD. 190 protected int normalize(char[] src, int srcStart, int srcLimit, method in class:NormalizerBase.Mode 206 protected int normalize(char[] src, int srcStart, int srcLimit, method in class:NormalizerBase.Mode 209 return normalize( src, srcStart, srcLimit, 219 protected String normalize(String src, int options) { method in class:NormalizerBase.Mode 293 protected int normalize(cha method in class:NormalizerBase.NFDMode 302 protected String normalize( String src, int options) { method in class:NormalizerBase.NFDMode 355 protected int normalize(char[] src, int srcStart, int srcLimit, method in class:NormalizerBase.NFKDMode 364 protected String normalize( String src, int options) { method in class:NormalizerBase.NFKDMode 416 protected int normalize(char[] src, int srcStart, int srcLimit, method in class:NormalizerBase.NFCMode 424 protected String normalize( String src, int options) { method in class:NormalizerBase.NFCMode 475 protected int normalize(char[] src, int srcStart, int srcLimit, method in class:NormalizerBase.NFKCMode 483 protected String normalize( String src, int options) { method in class:NormalizerBase.NFKCMode 777 public static int normalize(char[] src,int srcStart, int srcLimit, method in class:NormalizerBase 1589 public static String normalize(String str, Normalizer.Form form) { method in class:NormalizerBase 1600 public static String normalize(String str, Normalizer.Form form, int options) { method in class:NormalizerBase [all...] |
/openjdk7/jdk/src/share/classes/java/util/ |
H A D | Date.java | 243 // month is 0-based. So we have to normalize month to support Long.MAX_VALUE. 318 // month is 0-based. So we have to normalize month to support Long.MAX_VALUE. 334 d.normalize(udate); 649 return normalize().getYear() - 1900; 685 return normalize().getMonth() - 1; // adjust 1-based to 0-based 734 return normalize().getDayOfMonth(); 773 return normalize().getDayOfWeek() - gcal.SUNDAY; 790 return normalize().getHours(); 822 return normalize().getMinutes(); 855 return normalize() 1190 private final BaseCalendar.Date normalize() { method in class:Date 1216 private final BaseCalendar.Date normalize(BaseCalendar.Date date) { method in class:Date [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/helpers/ |
H A D | PublicId.java | 60 public static String normalize(String publicId) { method in class:PublicId 86 String urn = PublicId.normalize(publicId);
|
/openjdk7/jaxp/src/javax/xml/datatype/ |
H A D | XMLGregorianCalendar.java | 671 public abstract XMLGregorianCalendar normalize(); method in class:XMLGregorianCalendar 713 gc = this.normalize();
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/ |
H A D | DateTimeDV.java | 76 //validate and normalize 85 normalize(date);
|