HomeSort by relevance Sort by last modified time
    Searched defs:ascent (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_FontMetricsIntTest.java 41 int ascent = 2; local
48 fontMetricsInt.ascent = ascent;
PaintTest.java 495 float ascent10 = p.ascent();
499 float ascent20 = p.ascent();
767 assertEquals(p.ascent(), fm.ascent, 0.0f);
772 assertEquals(p.ascent(), fm.ascent, 0.0f);
786 assertEquals(p.ascent(), fm.ascent, 0.0f);
791 assertEquals(p.ascent(), fm.ascent, 0.0f)
    [all...]
  /external/ImageMagick/Magick++/lib/
TypeMetric.cpp 24 double Magick::TypeMetric::ascent(void) const function in class:Magick::TypeMetric
26 return(_typeMetric.ascent);
  /external/harfbuzz_ng/util/
view-cairo.cc 46 double ascent = y_sign * scalbn ((double) extents.ascender, scale_bits); local
83 -font_height * .5 /* "ascent" for vertical */,
89 y_sign < 0 ? descent : ascent);
  /cts/tests/tests/text/src/android/text/style/cts/
SubscriptSpanTest.java 50 // the expected result is: tp.baselineShift -= (int) (tp.ascent() / 2)
54 float ascent = tp.ascent(); local
59 assertEquals(baselineShift - (int) (ascent / 2), tp.baselineShift);
71 // the expected result is: tp.baselineShift -= (int) (tp.ascent() / 2)
75 float ascent = tp.ascent(); local
80 assertEquals(baselineShift - (int) (ascent / 2), tp.baselineShift);
SuperscriptSpanTest.java 49 // the expected result is: tp.baselineShift += (int) (tp.ascent() / 2)
53 float ascent = tp.ascent(); local
58 assertEquals(baselineShift + (int) (ascent / 2), tp.baselineShift);
70 // the expected result is: tp.baselineShift += (int) (tp.ascent() / 2)
74 float ascent = tp.ascent(); local
79 assertEquals(baselineShift + (int) (ascent / 2), tp.baselineShift);
  /frameworks/base/core/tests/coretests/src/android/graphics/
TypefaceTest.java 94 float ascent = 0; local
100 ascent = fm.ascent;
103 assertTrue("fontMetrics", fm.ascent == ascent);
  /external/icu/icu4c/source/samples/layout/
FontMap.cpp 264 le_int32 ascent, descent, leading; local
274 ascent = fFontInstances[i]->getAscent();
278 if (ascent > fAscent) {
279 fAscent = ascent;
paragraph.cpp 93 le_int32 ascent = 0; local
136 if (pAscent > ascent) {
137 ascent = pAscent;
163 fLineHeight = ascent + descent + leading;
164 fAscent = ascent;
pflow.c 114 le_int32 ascent = 0; local
189 if (pAscent > ascent) {
190 ascent = pAscent;
216 flow->fLineHeight = ascent + descent + leading;
217 flow->fAscent = ascent;
sfnt.h 194 le_int16 ascent; member in struct:HHEATable
  /external/freetype/include/freetype/
ftwinfnt.h 193 FT_UShort ascent; member in struct:FT_WinFNT_HeaderRec_
  /frameworks/minikin/include/minikin/
MinikinFont.h 111 float ascent = 0.0; // negative member in struct:minikin::MinikinExtent
115 void reset() { ascent = descent = line_gap = 0.0; }
118 ascent = std::min(ascent, e.ascent);
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftwinfnt.h 193 FT_UShort ascent; member in struct:FT_WinFNT_HeaderRec_
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 187 int ascent = 0; local
191 // Paint.ascent is negative, so negate it.
192 ascent = (int) Math.ceil(-textPaint.ascent());
196 int textHeight = ascent + descent;
234 int vBase = v + ascent;
253 mLabels.add(new Label(width, height, ascent,
296 * the label's paint's ascent.)
  /external/freetype/src/bdf/
bdf.h 141 short ascent; member in struct:bdf_bbx_t_
190 long font_ascent; /* Font ascent. */
  /external/icu/icu4c/source/test/letest/
FontObject.h 153 le_int16 ascent; member in struct:HHEATable
sfnt.h 327 le_int16 ascent; member in struct:HHEATable
  /external/icu/icu4c/source/test/perf/leperf/
FontObject.h 157 le_int16 ascent; member in struct:HHEATable
sfnt.h 331 le_int16 ascent; member in struct:HHEATable
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
HolidayBorderPanel.java 419 int ascent = fm.getAscent(); local
430 if (ascent > thickness)
431 adjustment = (ascent - thickness) / 2;
480 g.drawString(text, offset, ascent);
  /external/wayland/cursor/
convert_font.c 47 int16_t left_bearing, right_bearing, ascent, descent; member in struct:glyph
147 glyph->ascent = ((int16_t) m[i].character_ascent) - 0x80;
151 glyph->height = glyph->ascent + glyph->descent;
154 glyph->hoty = glyph->ascent;
  /external/ImageMagick/MagickCore/
draw.h 354 ascent, member in struct:_TypeMetric
  /external/freetype/src/pcf/
pcf.h 88 FT_Byte ascent; member in struct:PCF_Compressed_MetricRec_
99 FT_Short ascent; member in struct:PCF_MetricRec_
  /external/icu/icu4c/source/layoutex/
ParagraphLayout.cpp 833 le_int32 ascent = font->getAscent(); local
838 if (ascent > fAscent) {
839 fAscent = ascent;
1244 le_int32 ascent = fRuns[i]->getAscent(); local
    [all...]

Completed in 338 milliseconds

1 2 3 4 5