• Home
  • Raw
  • Download

Lines Matching refs:le_int32

46     le_int32          fParagraphCount;
47 le_int32 fParagraphMax;
48 le_int32 fParagraphGrow;
50 le_int32 fLineCount;
51 le_int32 fLinesMax;
52 le_int32 fLinesGrow;
58 le_int32 fLineHeight;
59 le_int32 fAscent;
60 le_int32 fWidth;
61 le_int32 fHeight;
77 static le_int32 findFontRun(const pl_fontRuns *fontRuns, le_int32 offset) in findFontRun()
79 le_int32 runCount = pl_getFontRunCount(fontRuns); in findFontRun()
80 le_int32 run; in findFontRun()
91 static void subsetFontRuns(const pl_fontRuns *fontRuns, le_int32 start, le_int32 limit, pl_fontRuns… in subsetFontRuns()
93 le_int32 startRun = findFontRun(fontRuns, start); in subsetFontRuns()
94 le_int32 endRun = findFontRun(fontRuns, limit - 1); in subsetFontRuns()
95 le_int32 run; in subsetFontRuns()
101 le_int32 runLimit = pl_getFontRunLimit(fontRuns, run) - start; in subsetFontRuns()
111 pf_flow *pf_create(const LEUnicode chars[], le_int32 charCount, const pl_fontRuns *fontRuns, LEErro… in pf_create()
114 le_int32 ascent = 0; in pf_create()
115 le_int32 descent = 0; in pf_create()
116 le_int32 leading = 0; in pf_create()
160 le_int32 pAscent, pDescent, pLeading; in pf_create()
228 le_int32 i; in pf_close()
248 le_int32 pf_getAscent(pf_flow *flow) in pf_getAscent()
255 le_int32 pf_getLineHeight(pf_flow *flow) in pf_getLineHeight()
262 le_int32 pf_getLineCount(pf_flow *flow) in pf_getLineCount()
279 void pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height) in pf_breakLines()
282 le_int32 li, p; in pf_breakLines()
318 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) in pf_draw()
321 le_int32 li, x, y; in pf_draw()
330 le_int32 runCount = pl_countLineRuns(line); in pf_draw()
331 le_int32 run; in pf_draw()
334 le_int32 lastX = pl_getLineWidth(line); in pf_draw()
342 le_int32 glyphCount = pl_getVisualRunGlyphCount(visualRun); in pf_draw()
358 le_int32 charCount; in pf_factory()