Searched refs:ab (Results 1 - 25 of 35) sorted by relevance

12

/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-ot-shape-complex-hebrew.cc34 hb_codepoint_t *ab)
71 bool found = (bool) c->unicode->compose (a, b, ab);
80 *ab = 0xFB1Du;
86 *ab = 0xFB1Fu;
89 *ab = 0xFB2Eu;
95 *ab = 0xFB2Fu;
101 *ab = 0xFB4Bu;
107 *ab = sDageshForms[a - 0x05D0u];
108 found = (*ab != 0);
110 *ab
31 compose_hebrew(const hb_ot_shape_normalize_context_t *c, hb_codepoint_t a, hb_codepoint_t b, hb_codepoint_t *ab) argument
[all...]
H A Dhb-ot-shape-normalize-private.hh59 hb_codepoint_t ab,
65 hb_codepoint_t *ab);
H A Dhb-ucdn.cc203 hb_codepoint_t a, hb_codepoint_t b, hb_codepoint_t *ab,
206 return ucdn_compose(ab, a, b);
211 hb_codepoint_t ab, hb_codepoint_t *a, hb_codepoint_t *b,
214 return ucdn_decompose(ab, a, b);
202 hb_ucdn_compose(hb_unicode_funcs_t *ufuncs, hb_codepoint_t a, hb_codepoint_t b, hb_codepoint_t *ab, void *user_data HB_UNUSED) argument
210 hb_ucdn_decompose(hb_unicode_funcs_t *ufuncs, hb_codepoint_t ab, hb_codepoint_t *a, hb_codepoint_t *b, void *user_data HB_UNUSED) argument
H A Dhb-unicode-private.hh78 hb_codepoint_t *ab)
80 *ab = 0;
82 return func.compose (this, a, b, ab, user_data.compose);
85 inline hb_bool_t decompose (hb_codepoint_t ab, argument
88 *a = ab; *b = 0;
89 return func.decompose (this, ab, a, b, user_data.decompose);
77 compose(hb_codepoint_t a, hb_codepoint_t b, hb_codepoint_t *ab) argument
H A Dhb-unicode.cc85 hb_codepoint_t *ab HB_UNUSED,
93 hb_codepoint_t ab HB_UNUSED,
392 * @ab: (out):
404 hb_codepoint_t *ab)
406 return ufuncs->compose (a, b, ab);
412 * @ab:
424 hb_codepoint_t ab,
428 return ufuncs->decompose (ab, a, b);
401 hb_unicode_compose(hb_unicode_funcs_t *ufuncs, hb_codepoint_t a, hb_codepoint_t b, hb_codepoint_t *ab) argument
423 hb_unicode_decompose(hb_unicode_funcs_t *ufuncs, hb_codepoint_t ab, hb_codepoint_t *a, hb_codepoint_t *b) argument
H A Dhb-ot-shape-normalize.cc75 hb_codepoint_t ab,
79 return (bool) c->unicode->decompose (ab, a, b);
86 hb_codepoint_t *ab)
88 return (bool) c->unicode->compose (a, b, ab);
120 decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab) argument
126 if (!c->decompose (c, ab, &a, &b) ||
74 decompose_unicode(const hb_ot_shape_normalize_context_t *c, hb_codepoint_t ab, hb_codepoint_t *a, hb_codepoint_t *b) argument
83 compose_unicode(const hb_ot_shape_normalize_context_t *c, hb_codepoint_t a, hb_codepoint_t b, hb_codepoint_t *ab) argument
H A Dhb-unicode.h241 hb_codepoint_t *ab,
244 hb_codepoint_t ab,
456 hb_codepoint_t *ab);
460 hb_codepoint_t ab,
H A Dhb-ot-shape-complex-private.hh126 hb_codepoint_t ab,
137 hb_codepoint_t *ab);
H A Dhb-ot-shape-complex-use.cc563 hb_codepoint_t ab,
567 switch (ab)
599 return (bool) c->unicode->decompose (ab, a, b);
606 hb_codepoint_t *ab)
612 return (bool)c->unicode->compose (a, b, ab);
/openjdk10/hotspot/test/compiler/floatingpoint/
H A DModNaN.java111 for (double[] ab : bad) {
112 double a = ab[0];
113 double b = ab[1];
120 for (double[] ab : good) {
121 double a = ab[0];
122 double b = ab[1];
131 for (double[] ab : bad) {
132 double a = ab[0];
133 double b = ab[1];
138 for (double[] ab
[all...]
/openjdk10/langtools/test/tools/javac/lambda/
H A DLambdaConv16.java55 static void test(AB ab, List l) { ab.m(l); } argument
58 AB ab = (List list) -> { assertTrue(true); return new ArrayList<String>(); };
59 ab.m(null);
/openjdk10/langtools/test/tools/javac/generics/rawOverride/7062745/
H A DT7062745pos.java39 void test(AB ab) { argument
40 Number n = ab.getList().get(1);
H A DT7062745neg.java15 void test(AB ab) { argument
16 Number n = ab.getList().get(1);
/openjdk10/jdk/src/java.desktop/share/classes/sun/font/
H A DTextSourceLabel.java50 Rectangle2D ab; field in class:TextSourceLabel
59 public TextSourceLabel(TextSource source, Rectangle2D lb, Rectangle2D ab, GlyphVector gv) { argument
63 this.ab = ab;
93 if (ab == null) {
94 ab = createAlignBounds();
96 return new Rectangle2D.Float((float)(ab.getX() + x),
97 (float)(ab.getY() + y),
98 (float)ab.getWidth(),
99 (float)ab
[all...]
H A DExtendedTextSourceLabel.java68 Rectangle2D ab; field in class:ExtendedTextSourceLabel
150 if (ab == null) {
151 ab = createAlignBounds();
153 return new Rectangle2D.Float((float)(ab.getX() + x),
154 (float)(ab.getY() + y),
155 (float)ab.getWidth(),
156 (float)ab.getHeight());
876 sb.append(", ab:");
877 sb.append(ab);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/
H A DAbstractObjectStampTest.java234 Stamp ab = a.join(b);
236 Assert.assertEquals(ab, ba);
237 return ab;
244 Stamp ab = a.meet(b);
246 Assert.assertEquals(ab, ba);
247 return ab;
/openjdk10/jdk/test/java/util/TimSort/
H A DSortPerf.java43 for (ArrayBuilder ab : ArrayBuilder.values()) {
45 System.out.printf("%s,%d", ab, n);
47 Object[] proto = ab.build(n);
/openjdk10/nashorn/test/script/basic/
H A Dtypedarrays.js32 function checkLength(ab, l) {
33 if (ab.byteLength != l) {
34 throw "length error: " + ab.byteLength + " != " + l;
/openjdk10/langtools/test/tools/javac/generics/rawOverride/7157798/
H A DTest2.java52 void test(AB ab) { argument
53 ab.m(new HashMap<Number, String>());
H A DTest1.java67 void test(AB ab) { argument
68 Number n = ab.getList().get(1);
/openjdk10/langtools/test/tools/javac/multicatch/
H A DPos11.java104 } catch (final A|B ab) {
105 results=results.concat("-AB:" + ab.getClass().getSimpleName());
/openjdk10/jdk/src/java.desktop/share/native/liblcms/
H A Dcmspcs.c227 cmsUInt16Number ab2Fix2(cmsFloat64Number ab) argument
229 return _cmsQuickSaturateWord((ab + 128.0) * 256.0);
275 cmsFloat64Number Clamp_ab_doubleV2(cmsFloat64Number ab) argument
277 if (ab < MIN_ENCODEABLE_ab2) ab = MIN_ENCODEABLE_ab2;
278 if (ab > MAX_ENCODEABLE_ab2) ab = MAX_ENCODEABLE_ab2;
280 return ab;
307 cmsFloat64Number Clamp_ab_doubleV4(cmsFloat64Number ab) argument
309 if (ab < MIN_ENCODEABLE_ab
322 ab2Fix4(cmsFloat64Number ab) argument
[all...]
/openjdk10/langtools/test/tools/javap/classfile/
H A DT6887895.java88 byte[] ab = new byte[0];
/openjdk10/langtools/test/tools/javac/lambda/funcInterfaces/
H A DLambdaTest2_SAM2.java135 void methodAB (AB ab) { argument
136 System.out.println("methodAB(): SAM type interface AB object instantiated: " + ab);
137 System.out.println(ab.getOldest(strs));
/openjdk10/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DBandStructure.java2018 private boolean assertBandOKForElems(Band[] ab, Attribute.Layout.Element[] elems) { argument
2020 assert(assertBandOKForElem(ab, elems[i]));
2024 private boolean assertBandOKForElem(Band[] ab, Attribute.Layout.Element e) { argument
2027 b = ab[e.bandIndex];
2053 assertBandOKForElems(ab, e.body);
2061 assertBandOKForElems(ab, e.body);
2065 assertBandOKForElems(ab, e.body);
2072 assertBandOKForElems(ab, e.body);
2089 Attribute.Layout predefineAttribute(int index, int ctype, Band[] ab, argument
2097 if (ab
2204 makeNewAttributeBands(String pfx, Attribute.Layout.Element[] elems, MultiBand ab) argument
2276 newElemBand(Attribute.Layout.Element e, String name, MultiBand ab) argument
[all...]

Completed in 206 milliseconds

12