Searched defs:outline (Results 1 - 25 of 51) sorted by relevance

123

/external/freetype/include/
H A Dftoutln.h91 /* Walk over an outline's structure to decompose it into individual */
93 /* operations to indicate the start of new contours in the outline. */
96 /* outline :: A pointer to the source target. */
115 /* outline for stroking purposes (otherwise it would result in a */
119 FT_Outline_Decompose( FT_Outline* outline,
130 /* Create a new outline of a given size. */
134 /* outline is allocated. Note however that the new */
135 /* outline will *not* necessarily be *freed*, when */
138 /* numPoints :: The maximum number of points within the outline. */
141 /* numContours :: The maximum number of contours within the outline
217 FT_Outline_Check( FT_Outline* outline ); variable
406 FT_Outline_Reverse( FT_Outline* outline ); variable
559 FT_Outline_Get_Orientation( FT_Outline* outline ); variable
[all...]
H A Dftstroke.h223 * `inside' borders of a given outline.
226 * outline ::
227 * The source outline handle.
234 FT_Outline_GetInsideBorder( FT_Outline* outline ); variable
244 * `outside' borders of a given outline.
247 * outline ::
248 * The source outline handle.
255 FT_Outline_GetOutsideBorder( FT_Outline* outline ); variable
309 * The radius is expressed in the same units as the outline
347 * A convenience function used to parse a whole outline wit
[all...]
H A Dftglyph.h63 /* bitmap, a vector outline, or even images in other formats. */
176 /* A handle to an object used to model an outline glyph image. This */
188 /* A structure used for outline (vectorial) glyph images. This */
194 /* outline :: A descriptor for the outline. */
199 /* the outline's content easily. */
201 /* As the outline is extracted from a glyph slot, its coordinates are */
205 /* The outline's tables are always owned by the object and are */
211 FT_Outline outline; member in struct:FT_OutlineGlyphRec_
344 /* outline'
[all...]
/external/freetype/src/autofit/
H A Dafindic.c83 FT_Outline* outline,
87 return af_cjk_hints_apply( hints, outline, metrics );
82 af_indic_hints_apply( AF_GlyphHints hints, FT_Outline* outline, AF_CJKMetrics metrics ) argument
/external/freetype/src/base/
H A Dftsynth.c51 FT_Outline* outline; local
57 outline = &slot->outline;
59 /* only oblique outline glyphs */
74 FT_Outline_Transform( outline, &transform );
114 FT_Outline_EmboldenXY( &slot->outline, xstr, ystr );
H A Dftoutln.c5 /* FreeType outline management (body). */
51 FT_Outline_Decompose( FT_Outline* outline,
68 FT_Int n; /* index of contour in outline */
76 if ( !outline )
86 for ( n = 0; n < outline->n_contours; n++ )
93 last = outline->contours[n];
96 limit = outline->points + last;
98 v_start = outline->points[first];
102 v_last = outline->points[last];
108 point = outline
474 FT_Outline_Get_CBox( const FT_Outline* outline, FT_BBox *acbox ) argument
524 FT_Outline_Translate( const FT_Outline* outline, FT_Pos xOffset, FT_Pos yOffset ) argument
707 FT_Outline_Transform( const FT_Outline* outline, const FT_Matrix* matrix ) argument
[all...]
/external/freetype/src/cff/
H A Dcf2ft.h123 * FreeType client outline
136 cf2_outline_reset( CF2_Outline outline ); variable
138 cf2_outline_close( CF2_Outline outline ); variable
H A Dcf2font.h82 CF2_OutlineRec outline; /* freetype glyph outline functions */ member in struct:CF2_FontRec_
H A Dcf2ft.c51 * generally respond to `Glyph_Too_Big' by getting a glyph outline
83 cf2_setGlyphWidth( CF2_Outline outline, argument
86 CFF_Decoder* decoder = outline->decoder;
114 /* functions for handling client outline; */
124 CF2_Outline outline = (CF2_Outline)callbacks; local
130 FT_ASSERT( outline && outline->decoder );
133 builder = &outline->decoder->builder;
148 CF2_Outline outline = (CF2_Outline)callbacks; local
152 FT_ASSERT( outline
192 CF2_Outline outline = (CF2_Outline)callbacks; local
238 cf2_outline_init( CF2_Outline outline, FT_Memory memory, FT_Error* error ) argument
[all...]
/external/pdfium/third_party/freetype/include/
H A Dftoutln.h91 /* Walk over an outline's structure to decompose it into individual */
93 /* operations to indicate the start of new contours in the outline. */
96 /* outline :: A pointer to the source target. */
115 /* outline for stroking purposes (otherwise it would result in a */
119 FT_Outline_Decompose( FT_Outline* outline,
130 /* Create a new outline of a given size. */
134 /* outline is allocated. Note however that the new */
135 /* outline will *not* necessarily be *freed*, when */
138 /* numPoints :: The maximum number of points within the outline. */
141 /* numContours :: The maximum number of contours within the outline
217 FT_Outline_Check( FT_Outline* outline ); variable
406 FT_Outline_Reverse( FT_Outline* outline ); variable
559 FT_Outline_Get_Orientation( FT_Outline* outline ); variable
[all...]
H A Dftstroke.h223 * `inside' borders of a given outline.
226 * outline ::
227 * The source outline handle.
234 FT_Outline_GetInsideBorder( FT_Outline* outline ); variable
244 * `outside' borders of a given outline.
247 * outline ::
248 * The source outline handle.
255 FT_Outline_GetOutsideBorder( FT_Outline* outline ); variable
309 * The radius is expressed in the same units as the outline
347 * A convenience function used to parse a whole outline wit
[all...]
H A Dftglyph.h63 /* bitmap, a vector outline, or even images in other formats. */
176 /* A handle to an object used to model an outline glyph image. This */
188 /* A structure used for outline (vectorial) glyph images. This */
194 /* outline :: A descriptor for the outline. */
199 /* the outline's content easily. */
201 /* As the outline is extracted from a glyph slot, its coordinates are */
205 /* The outline's tables are always owned by the object and are */
211 FT_Outline outline; member in struct:FT_OutlineGlyphRec_
344 /* outline'
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftsynth.c51 FT_Outline* outline; local
57 outline = &slot->outline;
59 /* only oblique outline glyphs */
74 FT_Outline_Transform( outline, &transform );
114 FT_Outline_EmboldenXY( &slot->outline, xstr, ystr );
H A Dftoutln.c5 /* FreeType outline management (body). */
51 FT_Outline_Decompose( FT_Outline* outline,
68 FT_Int n; /* index of contour in outline */
76 if ( !outline )
86 for ( n = 0; n < outline->n_contours; n++ )
93 last = outline->contours[n];
96 limit = outline->points + last;
98 v_start = outline->points[first];
102 v_last = outline->points[last];
108 point = outline
474 FT_Outline_Get_CBox( const FT_Outline* outline, FT_BBox *acbox ) argument
524 FT_Outline_Translate( const FT_Outline* outline, FT_Pos xOffset, FT_Pos yOffset ) argument
714 FT_Outline_Transform( const FT_Outline* outline, const FT_Matrix* matrix ) argument
[all...]
/external/pdfium/third_party/freetype/src/cff/
H A Dcf2ft.h123 * FreeType client outline
136 cf2_outline_reset( CF2_Outline outline ); variable
138 cf2_outline_close( CF2_Outline outline ); variable
H A Dcf2font.h77 CF2_OutlineRec outline; /* freetype glyph outline functions */ member in struct:CF2_FontRec_
H A Dcf2ft.c51 * generally respond to `Glyph_Too_Big' by getting a glyph outline
83 cf2_setGlyphWidth( CF2_Outline outline, argument
86 CFF_Decoder* decoder = outline->decoder;
114 /* functions for handling client outline; */
124 CF2_Outline outline = (CF2_Outline)callbacks; local
130 FT_ASSERT( outline && outline->decoder );
133 builder = &outline->decoder->builder;
148 CF2_Outline outline = (CF2_Outline)callbacks; local
152 FT_ASSERT( outline
192 CF2_Outline outline = (CF2_Outline)callbacks; local
238 cf2_outline_init( CF2_Outline outline, FT_Memory memory, FT_Error* error ) argument
[all...]
/external/llvm/tools/llvm-c-test/
H A Ddisassemble.c41 char outline[1024]; local
51 size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline,
52 sizeof(outline));
57 pprint(pos, buf + pos, l, outline);
/external/pdfium/third_party/freetype/src/raster/
H A Dftrend1.c75 FT_Outline_Transform( &slot->outline, matrix );
78 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
94 FT_Outline_Get_CBox( &slot->outline, cbox );
106 FT_Outline* outline; local
156 outline = &slot->outline;
158 /* translate the outline to the new origin if needed */
160 FT_Outline_Translate( outline, origin->x, origin->y );
163 FT_Outline_Get_CBox( outline, &cbox );
220 /* translate outline t
[all...]
/external/freetype/src/raster/
H A Dftrend1.c75 FT_Outline_Transform( &slot->outline, matrix );
78 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
94 FT_Outline_Get_CBox( &slot->outline, cbox );
106 FT_Outline* outline; local
129 outline = &slot->outline;
131 /* translate the outline to the new origin if needed */
133 FT_Outline_Translate( outline, origin->x, origin->y );
136 FT_Outline_Get_CBox( outline, &cbox0 );
202 /* translate outline t
[all...]
/external/freetype/include/internal/
H A Dftgloadr.h70 FT_Outline outline; /* outline */ member in struct:FT_GlyphLoadRec_
126 ( (FT_UInt)(_loader)->base.outline.n_points + \
127 (FT_UInt)(_loader)->current.outline.n_points + \
132 ( (FT_UInt)(_loader)->base.outline.n_contours + \
133 (FT_UInt)(_loader)->current.outline.n_contours + \
/external/pdfium/third_party/freetype/include/internal/
H A Dftgloadr.h70 FT_Outline outline; /* outline */ member in struct:FT_GlyphLoadRec_
126 ( (_loader)->base.outline.n_points + \
127 (_loader)->current.outline.n_points + \
132 ( (_loader)->base.outline.n_contours + \
133 (_loader)->current.outline.n_contours + \
/external/skia/include/utils/
H A DSkRTConf.h123 char outline[200]; // should be ok because we specify a max. width for everything here. local
128 outptr = &(outline[0]);
130 sprintf(outline, "%-30.30s", getName());
131 outptr = &(outline[30]);
136 for (size_t i = strlen(outline); i --> 0 && ' ' == outline[i];) {
137 outline[i] = '\0';
139 o->writeText(outline);
/external/freetype/src/smooth/
H A Dftsmooth.c74 FT_Outline_Transform( &slot->outline, matrix );
77 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
93 FT_Outline_Get_CBox( &slot->outline, cbox );
106 FT_Outline* outline = &slot->outline; local
148 FT_Outline_Get_CBox( outline, &cbox );
250 /* translate outline to render it into the bitmap */
253 FT_Outline_Translate( outline, x_shift, y_shift );
259 params.source = outline;
264 /* implode outline i
[all...]
/external/pdfium/third_party/freetype/src/smooth/
H A Dftsmooth.c74 FT_Outline_Transform( &slot->outline, matrix );
77 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
93 FT_Outline_Get_CBox( &slot->outline, cbox );
106 FT_Outline* outline = &slot->outline; local
148 FT_Outline_Get_CBox( outline, &cbox );
250 /* translate outline to render it into the bitmap */
253 FT_Outline_Translate( outline, x_shift, y_shift );
259 params.source = outline;
264 /* implode outline i
[all...]

Completed in 416 milliseconds

123