HomeSort by relevance Sort by last modified time
    Searched refs:advances (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
t1gload.h 39 FT_Fixed* advances );
t1gload.c 215 FT_Fixed* advances )
228 advances[nn] = 0;
259 advances[nn] = FIXED_TO_INT( decoder.builder.advance.x );
261 advances[nn] = 0;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BidiRenderer.java 111 public RectF renderText(int start, int limit, int bidiFlags, float[] advances,
117 renderText(visualRun.getStart(), visualRun.getLimit(), isRtl, advances, local
131 * @param advances If not null, then advances for each character to be rendered are returned
133 * @param advancesIndex index into advances from where the advances need to be filled.
138 public RectF renderText(int start, int limit, boolean isRtl, float[] advances,
145 renderScript(run.start, run.limit, run.font, flag, advances, advancesIndex, draw);
157 float[] advances, int advancesIndex, boolean draw) {
167 render(start, limit, preferredFont, flag, advances, advancesIndex, draw)
    [all...]
Paint_Delegate.java 994 boolean isRtl, float[] advances, int advancesIndex) {
996 if (advances != null)
998 advances[i]=0;
1010 RectF bounds = delegate.measureText(text, index, count, advances, advancesIndex, isRtl);
1017 boolean isRtl, float[] advances, int advancesIndex) {
1024 contextStart, contextEnd - contextStart, isRtl, advances, advancesIndex);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
GlyphBufferTest.cpp 82 const FloatSize* advances = glyphBuffer.advances(0); local
83 EXPECT_EQ(FloatSize(10, 0), advances[0]);
84 EXPECT_EQ(FloatSize(15, 0), advances[1]);
85 EXPECT_EQ(FloatSize(12, 2), advances[2]);
137 const FloatSize* advances = glyphBuffer.advances(1); local
138 EXPECT_EQ(FloatSize(15, 0), advances[0]);
139 EXPECT_EQ(FloatSize(12, 2), advances[1]);
GlyphBuffer.h 60 const FloatSize* advances(unsigned from) const { return m_advances.data() + from; } function in class:blink::GlyphBuffer
  /external/chromium_org/third_party/freetype/src/base/
ftadvanc.c 28 FT_Fixed* advances,
51 advances[nn] = FT_MulDiv( advances[nn], scale, 64 );
  /external/freetype/src/base/
ftadvanc.c 28 FT_Fixed* advances,
51 advances[nn] = FT_MulDiv( advances[nn], scale, 64 );
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftadvanc.c 28 FT_Fixed* advances,
51 advances[nn] = FT_MulDiv( advances[nn], scale, 64 );
  /frameworks/base/core/java/android/text/
GraphicsOperations.java 58 boolean isRtl, float[] advances, int advancesIndex, Paint paint);
  /frameworks/base/graphics/java/android/graphics/
Paint.java 156 * <p>Enabling this flag causes glyph advances to be computed with subpixel
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-text.rl 77 advances= '+' (num >tok %parse_x_advance) (',' (num >tok %parse_y_advance))?;
83 advances?
  /frameworks/minikin/include/minikin/
Layout.h 97 // Get advances, copying into caller-provided buffer. The size of this
99 void getAdvances(float* advances);
  /external/chromium_org/third_party/freetype/src/truetype/
ttdriver.c 202 FT_Fixed *advances )
219 advances[nn] = ah;
231 advances[nn] = aw;
  /external/freetype/src/truetype/
ttdriver.c 202 FT_Fixed *advances )
220 advances[nn] = ah;
232 advances[nn] = aw;
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttdriver.c 202 FT_Fixed *advances )
219 advances[nn] = ah;
231 advances[nn] = aw;
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutLineBreakingTest.java 51 int contextIndex, int contextCount, boolean isRtl, float[] advances,
63 | (advances == null ? 0 :
64 (advances.length - (advancesIndex + count)))) < 0) {
70 if (advances != null) {
73 advances[advancesIndex + i] = width;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontHarfBuzz.cpp 173 const FloatSize* adv = glyphBuffer.advances(from);
185 // GlyphBuffer has no advances other than the defaults. In that case the
191 const FloatSize* adv = glyphBuffer.advances(from);
343 const FloatSize* advances = glyphBuffer.advances(start); local
346 x += SkFloatToScalar(advances[j].width());
HarfBuzzShaper.h 92 float* advances() { return &m_advances[0]; } function in class:blink::FINAL::HarfBuzzRun
  /external/chromium_org/third_party/skia/tests/
WArrayTest.cpp 136 const int16_t advances[], int advanceLen,
139 : fAdvances(advances)
  /external/skia/tests/
WArrayTest.cpp 136 const int16_t advances[], int advanceLen,
139 : fAdvances(advances)
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 641 jfloatArray advances, jint advancesIndex) {
652 if (advances) {
653 size_t advancesLength = env->GetArrayLength(advances);
669 if (advances != NULL) {
670 env->SetFloatArrayRegion(advances, advancesIndex, count, advancesArray);
679 jboolean isRtl, jfloatArray advances, jint advancesIndex) {
684 index - contextIndex, count, contextCount, isRtl, advances, advancesIndex);
692 jfloatArray advances, jint advancesIndex) {
698 advances, advancesIndex);
827 float* advances = new float[count]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextController.cpp 506 const CGSize* advances = complexTextRun.advances();
537 CGSize advance = treatAsSpace ? CGSizeMake(spaceWidth, advances[i].height) : advances[i];
ComplexTextController.h 96 const CGSize* advances() const { return m_advances; } function in class:blink::ComplexTextController::ComplexTextRun
FontMac.cpp 111 // FIXME: implement a no-vertical-advances fast path like FontHarfBuzz has.
115 // GlyphBuffer has no advances other than the defaults. In that case the
119 const FloatSize* adv = glyphBuffer.advances(from);

Completed in 554 milliseconds

1 2 3