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

12

/external/freetype/include/freetype/
H A Dftoutln.h87 /* Walk over an outline's structure to decompose it into individual */
89 /* operations to indicate the start of new contours in the outline. */
92 /* outline :: A pointer to the source target. */
108 FT_Outline_Decompose( FT_Outline* outline,
119 /* Create a new outline of a given size. */
123 /* outline is allocated. Note however that the new */
124 /* outline will *not* necessarily be *freed*, when */
127 /* numPoints :: The maximal number of points within the outline. */
129 /* numContours :: The maximal number of contours within the outline. */
132 /* anoutline :: A handle to the new outline
204 FT_Outline_Check( FT_Outline* outline ); variable
370 FT_Outline_Reverse( FT_Outline* outline ); variable
521 FT_Outline_Get_Orientation( FT_Outline* outline ); variable
[all...]
H A Dftstroke.h167 * `inside' borders of a given outline.
170 * outline ::
171 * The source outline handle.
178 FT_Outline_GetInsideBorder( FT_Outline* outline ); variable
188 * `outside' borders of a given outline.
191 * outline ::
192 * The source outline handle.
199 FT_Outline_GetOutsideBorder( FT_Outline* outline ); variable
252 * The radius is expressed in the same units as the outline
288 * 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_
358 /* outline'
[all...]
H A Dfreetype.h443 /* i.e., the glyph's metrics, its image (bitmap or outline), and */
798 /* of outline glyphs. */
982 /* Indicates that the face contains outline glyphs. This doesn't */
1443 /* outline or bitmap format. */
1476 /* Only relevant for outline glyphs. */
1483 /* Only relevant for outline glyphs. */
1518 /* outline :: The outline descriptor for the current glyph */
1521 /* loaded, `outline' can be transformed, */
1560 /* its native format (e.g., an outline glyp
1623 FT_Outline outline; member in struct:FT_GlyphSlotRec_
[all...]
/external/freetype/src/autofit/
H A Dafindic.c64 FT_Outline* outline,
68 return af_cjk_hints_apply( hints, outline, metrics );
63 af_indic_hints_apply( AF_GlyphHints hints, FT_Outline* outline, AF_LatinMetrics metrics) argument
H A Daftypes.h175 /* This structure is used to model an input glyph outline to
182 FT_Outline outline; member in struct:AF_OutlineRec_
257 * scaled glyph outline according to the results of the glyph
314 FT_Outline* outline,
H A Daflatin.c66 if ( error || face->glyph->outline.n_points <= 0 )
80 error = af_glyph_hints_reload( hints, &face->glyph->outline );
216 if ( error || glyph->outline.n_points <= 0 )
220 points = glyph->outline.points;
232 for ( nn = 0; nn < glyph->outline.n_contours; first = last+1, nn++ )
238 last = glyph->outline.contours[nn];
242 /* which are way outside of the glyph's real outline. */
316 FT_CURVE_TAG( glyph->outline.tags[prev] ) != FT_CURVE_TAG_ON ||
317 FT_CURVE_TAG( glyph->outline.tags[next] ) != FT_CURVE_TAG_ON );
2101 FT_Outline* outline,
2100 af_latin_hints_apply( AF_GlyphHints hints, FT_Outline* outline, AF_LatinMetrics metrics ) argument
[all...]
H A Daflatin2.c73 if ( error || face->glyph->outline.n_points <= 0 )
87 error = af_glyph_hints_reload( hints, &face->glyph->outline );
221 if ( error || glyph->outline.n_points <= 0 )
225 points = glyph->outline.points;
237 for ( nn = 0; nn < glyph->outline.n_contours; first = last+1, nn++ )
243 last = glyph->outline.contours[nn];
247 /* which are way outside of the glyph's real outline. */
321 FT_CURVE_TAG( glyph->outline.tags[start] ) != FT_CURVE_TAG_ON ||
322 FT_CURVE_TAG( glyph->outline.tags[ end ] ) != FT_CURVE_TAG_ON );
2246 FT_Outline* outline,
2245 af_latin2_hints_apply( AF_GlyphHints hints, FT_Outline* outline, AF_LatinMetrics metrics ) argument
[all...]
/external/freetype/src/base/
H A Dftsynth.c50 FT_Outline* outline = &slot->outline; local
53 /* only oblique outline glyphs */
68 FT_Outline_Transform( outline, &transform );
104 (void)FT_Outline_Embolden( &slot->outline, xstr );
H A Dftoutln.c5 /* FreeType outline management (body). */
50 FT_Outline_Decompose( FT_Outline* outline,
67 FT_Int n; /* index of contour in outline */
75 if ( !outline || !func_interface )
82 for ( n = 0; n < outline->n_contours; n++ )
89 last = outline->contours[n];
92 limit = outline->points + last;
94 v_start = outline->points[first];
98 v_last = outline->points[last];
104 point = outline
460 FT_Outline_Get_CBox( const FT_Outline* outline, FT_BBox *acbox ) argument
510 FT_Outline_Translate( const FT_Outline* outline, FT_Pos xOffset, FT_Pos yOffset ) argument
695 FT_Outline_Transform( const FT_Outline* outline, const FT_Matrix* matrix ) argument
[all...]
H A Dftstroke.c31 FT_Outline_GetInsideBorder( FT_Outline* outline )
33 FT_Orientation o = FT_Outline_Get_Orientation( outline );
44 FT_Outline_GetOutsideBorder( FT_Outline* outline )
46 FT_Orientation o = FT_Outline_Get_Orientation( outline );
633 FT_Outline* outline )
636 FT_ARRAY_COPY( outline->points + outline->n_points,
644 FT_Byte* write = (FT_Byte*)outline->tags + outline->n_points;
662 FT_Short* write = outline
1911 FT_Outline* outline = &oglyph->outline; local
1986 FT_Outline* outline = &oglyph->outline; local
[all...]
/external/freetype/src/raster/
H A Dftrend1.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 );
105 FT_Outline* outline; local
155 outline = &slot->outline;
157 /* translate the outline to the new origin if needed */
159 FT_Outline_Translate( outline, origin->x, origin->y );
162 FT_Outline_Get_CBox( outline, &cbox );
204 /* translate outline t
[all...]
/external/freetype/include/freetype/internal/
H A Dftgloadr.h70 FT_Outline outline; /* outline */ member in struct:FT_GlyphLoadRec_
125 ( (_count) == 0 || ((_loader)->base.outline.n_points + \
126 (_loader)->current.outline.n_points + \
130 ( (_count) == 0 || ((_loader)->base.outline.n_contours + \
131 (_loader)->current.outline.n_contours + \
/external/webkit/WebCore/editing/
H A DDeleteButtonController.cpp204 RefPtr<HTMLDivElement> outline = new HTMLDivElement(divTag, m_target->document()); local
205 outline->setAttribute(outline->idAttributeName(), outlineElementIdentifier);
210 style = outline->getInlineStyleDecl();
222 container->appendChild(outline.get(), ec);
255 m_outlineElement = outline.release();
/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 = NULL; 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, &cbox );
218 /* translate outline t
[all...]
/external/freetype/src/psaux/
H A Dpsobjs.c1487 builder->base = &loader->base.outline;
1488 builder->current = &loader->current.outline;
1530 glyph->outline = *builder->base;
1550 FT_Outline* outline = builder->current; local
1555 FT_Vector* point = outline->points + outline->n_points;
1556 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points;
1563 outline->n_points++;
1588 FT_Outline* outline local
1648 FT_Outline* outline = builder->current; local
[all...]
/external/quake/quake/src/QW/gas2masm/
H A Dgas2masm.c36 int inline, outline; variable
761 fprintf (stderr, "In line: %d, out line: %d\n", inline, outline);
971 outline++;
1029 outline = 3;
/external/quake/quake/src/WinQuake/gas2masm/
H A Dgas2masm.c36 int inline, outline; variable
761 fprintf (stderr, "In line: %d, out line: %d\n", inline, outline);
971 outline++;
1029 outline = 3;
/external/skia/src/core/
H A DSkScalerContext.cpp565 SkPath outline; local
571 stroker.strokePath(localPath, &outline);
572 localPath.swap(outline);
/external/webkit/WebCore/inspector/front-end/
H A DDOMAgent.js427 var outline = WebInspector.panels.elements.treeOutline; variable
428 var treeElement = outline.findTreeElement(node);
/external/freetype/src/pshinter/
H A Dpshalgo.c1183 /* load outline point coordinates into hinter glyph */
1188 FT_Vector* vec = glyph->outline->points;
1217 /* save hinted point coordinates back to outline */
1224 FT_Vector* vec = glyph->outline->points;
1225 char* tags = glyph->outline->tags;
1260 FT_Outline* outline,
1274 if ( FT_NEW_ARRAY( glyph->points, outline->n_points ) ||
1275 FT_NEW_ARRAY( glyph->contours, outline->n_contours ) )
1278 glyph->num_points = outline->n_points;
1279 glyph->num_contours = outline
1259 psh_glyph_init( PSH_Glyph glyph, FT_Outline* outline, PS_Hints ps_hints, PSH_Globals globals ) argument
2183 ps_hints_apply( PS_Hints ps_hints, FT_Outline* outline, PSH_Globals globals, FT_Render_Mode hint_mode ) argument
[all...]
H A Dpshalgo.h212 FT_Outline* outline; member in struct:PSH_GlyphRec_
244 FT_Outline* outline,
/external/freetype/src/truetype/
H A Dttgload.c356 FT_Outline* outline; local
375 cont = gloader->current.outline.contours;
413 outline = &gloader->current.outline;
415 for ( cont = outline->contours + 1; cont < cont_limit; cont++ )
460 flag = (FT_Byte*)outline->tags;
487 vec = outline->points;
489 flag = (FT_Byte*)outline->tags;
526 vec = gloader->current.outline.points;
528 flag = (FT_Byte*)outline
855 FT_Outline* outline; local
1117 FT_Outline* outline; local
[all...]
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp129 void emboldenOutline(FT_Outline* outline);
491 void SkScalerContext_FreeType::emboldenOutline(FT_Outline* outline) { argument
495 FT_Outline_Embolden(outline, strength);
594 emboldenOutline(&fFace->glyph->outline);
596 FT_Outline_Get_CBox(&fFace->glyph->outline, &bbox);
682 FT_Outline* outline = &fFace->glyph->outline; local
687 emboldenOutline(outline);
697 FT_Outline_Get_CBox(outline, &bbox);
706 FT_Outline_Translate(outline, d
[all...]
/external/freetype/src/cff/
H A Dcffgload.c267 builder->base = &loader->base.outline;
268 builder->current = &loader->current.outline;
314 glyph->root.outline = *builder->base;
480 FT_Outline* outline = builder->current; local
485 FT_Vector* point = outline->points + outline->n_points;
486 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points;
494 outline->n_points++;
519 FT_Outline* outline local
569 FT_Outline* outline = builder->current; local
[all...]

Completed in 160 milliseconds

12