Searched refs:normalize (Results 1 - 25 of 185) sorted by relevance

12345678

/openjdk10/jdk/src/java.instrument/share/native/libinstrument/
H A DFileSystemSupport.h57 char* normalize(const char* path);
/openjdk10/jdk/src/java.desktop/unix/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
/openjdk10/jaxws/src/jdk.xml.bind/share/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);
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DNormalizer.java43 * This class provides the method <code>normalize</code> which transforms Unicode
46 * The <code>normalize</code> method supports the standard normalization forms
91 * The <code>normalize</code> method helps solve these problems by transforming
96 * Finally, the <code>normalize</code> method rearranges accents into the
148 * @param src The sequence of char values to normalize.
158 public static String normalize(CharSequence src, Form form) { method in class:Normalizer
159 return NormalizerBase.normalize(src.toString(), form);
/openjdk10/jdk/src/java.desktop/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
/openjdk10/jdk/src/java.base/share/classes/sun/nio/ch/
H A DIOStatus.java52 // return IOStatus.normalize(n); // Converts UNAVAILABLE to zero
59 public static int normalize(int n) { method in class:IOStatus
69 public static long normalize(long n) { method in class:IOStatus
/openjdk10/jdk/src/java.base/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);
/openjdk10/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DNormalizer2.java130 public String normalize(CharSequence src) { method in class:Normalizer2
141 return normalize(src, new StringBuilder(src.length())).toString();
153 public abstract StringBuilder normalize(CharSequence src, StringBuilder dest); method in class:Normalizer2
167 public abstract Appendable normalize(CharSequence src, Appendable dest); method in class:Normalizer2
H A DNorm2AllModes.java43 public StringBuilder normalize(CharSequence src, StringBuilder dest) { method in class:Norm2AllModes.NoopNormalizer2
53 public Appendable normalize(CharSequence src, Appendable dest) { method in class:Norm2AllModes.NoopNormalizer2
106 // normalize
108 public StringBuilder normalize(CharSequence src, StringBuilder dest) { method in class:Norm2AllModes.Normalizer2WithImpl
113 normalize(src, new NormalizerImpl.ReorderingBuffer(impl, dest, src.length()));
118 public Appendable normalize(CharSequence src, Appendable dest) { method in class:Norm2AllModes.Normalizer2WithImpl
124 normalize(src, buffer);
129 protected abstract void normalize(CharSequence src, NormalizerImpl.ReorderingBuffer buffer); method in class:Norm2AllModes.Normalizer2WithImpl
131 // normalize and append
181 protected void normalize(CharSequenc method in class:Norm2AllModes.DecomposeNormalizer2
207 protected void normalize(CharSequence src, NormalizerImpl.ReorderingBuffer buffer) { method in class:Norm2AllModes.ComposeNormalizer2
[all...]
H A DFilteredNormalizer2.java69 public StringBuilder normalize(CharSequence src, StringBuilder dest) { method in class:FilteredNormalizer2
74 normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE);
83 public Appendable normalize(CharSequence src, Appendable dest) { method in class:FilteredNormalizer2
87 return normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE);
190 private Appendable normalize(CharSequence src, Appendable dest, method in class:FilteredNormalizer2
207 dest.append(norm2.normalize(src.subSequence(prevSpanLimit, spanLimit), tempDest));
226 return normalize(second, first);
256 normalize(rest, first, UnicodeSet.SpanCondition.NOT_CONTAINED);
/openjdk10/jdk/src/jdk.httpserver/share/classes/com/sun/net/httpserver/
H A DHeaders.java74 private String normalize (String key) { method in class:Headers
105 return map.containsKey (normalize((String)key));
113 return map.get(normalize((String)key));
123 List<String> l = map.get(normalize(key));
131 return map.put (normalize(key), value);
142 String k = normalize(key);
166 return map.remove(normalize((String)key));
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DDocumentFragmentImpl.java110 * Override default behavior to call normalize() on this Node's
111 * children. It is up to implementors or Node to override normalize()
114 public void normalize() { method in class:DocumentFragmentImpl
115 // No need to normalize if already normalized.
150 kid.normalize();
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xs/datatypes/
H A DXSDateTime.java48 * <td> normalize() </td>
278 public XSDateTime normalize(); method in interface:XSDateTime
/openjdk10/jdk/test/java/nio/file/Path/
H A DPathOps.java213 PathOps normalize(String expected) { method in class:PathOps
216 check(path.normalize(), expected);
1292 // normalize
1294 .normalize("C:\\");
1296 .normalize("C:\\");
1298 .normalize("C:\\");
1300 .normalize("\\\\server\\share\\");
1302 .normalize("\\\\server\\share\\");
1304 .normalize("\\\\server\\share\\");
1306 .normalize("
[all...]
/openjdk10/jdk/test/jdk/internal/jrtfs/
H A DPathOps.java193 PathOps normalize(String expected) { method in class:PathOps
196 check(path.normalize(), expected);
448 // normalize
450 .normalize("/");
452 .normalize("foo");
454 .normalize("/foo");
456 .normalize("");
458 .normalize("..");
460 .normalize("/");
462 .normalize("/");
[all...]
/openjdk10/jdk/test/jdk/nio/zipfs/
H A DPathOps.java207 PathOps normalize(String expected) { method in class:PathOps
210 check(path.normalize(), expected);
467 // normalize
469 .normalize("/");
471 .normalize("foo");
473 .normalize("/foo");
475 .normalize("");
477 .normalize("..");
479 .normalize("/");
481 .normalize("/");
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/pipe/
H A DPixelToParallelogramConverter.java57 * @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 DRenderingEngine.java195 * {@code normalize} boolean parameter is true.
206 * @param normalize indicates whether stroke normalization should
218 boolean normalize,
262 * @param normalize true if the {@code VALUE_STROKE_NORMALIZE}
274 boolean normalize,
417 boolean normalize,
426 (normalize ? "normalized" : "pure")+", "+
429 target.strokeTo(src, at, bs, thin, normalize, antialias, consumer);
442 boolean normalize,
451 (normalize
214 strokeTo(Shape src, AffineTransform at, BasicStroke bs, boolean thin, boolean normalize, boolean antialias, PathConsumer2D consumer) argument
269 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
413 strokeTo(Shape src, AffineTransform at, BasicStroke bs, boolean thin, boolean normalize, boolean antialias, PathConsumer2D consumer) argument
437 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/doubleconv/
H A DDiyFp.java63 // Multiplication and Subtraction do not normalize their results.
135 void normalize() { method in class:DiyFp
155 static DiyFp normalize(final DiyFp a) { method in class:DiyFp
157 result.normalize();
/openjdk10/hotspot/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/
H A DClassPathDirEntry.java85 fileString = file.normalize()
88 fileString = file.normalize()
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/pisces/
H A DPiscesRenderingEngine.java112 * {@code normalize} boolean parameter is true.
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...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/
H A DExpandLogicPhase.java65 private static void processNormalizeCompareNode(NormalizeCompareNode normalize) { argument
68 StructuredGraph graph = normalize.graph();
69 ValueNode x = normalize.getX();
70 ValueNode y = normalize.getY();
73 lessComp = graph.addOrUniqueWithInputs(FloatLessThanNode.create(x, y, normalize.isUnorderedLess()));
79 Stamp stamp = normalize.stamp();
83 normalize.replaceAtUsagesAndDelete(value);
/openjdk10/hotspot/test/compiler/compilercontrol/share/processors/
H A DPrintProcessor.java96 String method = normalize(matcher.group("name"));
97 if (!printMethods.contains(normalize(method))
108 private String normalize(String method) { method in class:PrintProcessor
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/jar/
H A DJarFileSource.java48 consumer.accept(ClassSource.makeClassName(jarRootPath.relativize(path).normalize()), classLoader);

Completed in 168 milliseconds

12345678