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

1 2 3

  /external/freetype/include/freetype/
ftoutln.h 43 /* Outline Processing */
87 /* 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. *
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...]
ftbbox.h 21 /* This component has a _single_ role: to compute exact outline bounding */
61 /* Compute the exact bounding box of an outline. This is slower */
64 /* coincide. Otherwise, the outline Bézier arcs are traversed to */
68 /* outline :: A pointer to the source outline. */
71 /* abbox :: The outline's exact bounding box. */
77 FT_Outline_Get_BBox( FT_Outline* outline,
ftstroke.h 167 * `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...]
  /external/freetype/src/autofit/
afdummy.c 36 FT_Outline* outline )
39 FT_UNUSED( outline );
afcjk.h 47 FT_Outline* outline,
afloader.c 126 FT_Outline_Translate( &slot->outline,
130 /* copy the outline points in the loader's current */
133 slot->outline.n_points + 4,
134 slot->outline.n_contours );
138 FT_ARRAY_COPY( gloader->current.outline.points,
139 slot->outline.points,
140 slot->outline.n_points );
142 FT_ARRAY_COPY( gloader->current.outline.contours,
143 slot->outline.contours,
144 slot->outline.n_contours )
    [all...]
afindic.c 64 FT_Outline* outline,
68 return af_cjk_hints_apply( hints, outline, metrics );
  /external/freetype/src/base/
ftoutln.c 5 /* 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++ )
87 FT_TRACE5(( "FT_Outline_Decompose: Outline %d\n", n ));
89 last = outline->contours[n];
92 limit = outline->points + last;
94 v_start = outline->points[first];
98 v_last = outline->points[last]
    [all...]
ftgloadr.c 93 base->outline.n_points = 0;
94 base->outline.n_contours = 0;
109 FT_FREE( loader->base.outline.points );
110 FT_FREE( loader->base.outline.tags );
111 FT_FREE( loader->base.outline.contours );
140 /* re-adjust the `current' outline fields */
144 FT_Outline* base = &loader->base.outline;
145 FT_Outline* current = &loader->current.outline;
196 /* This function reallocates its outline tables if necessary. Note that */
206 FT_Outline* base = &loader->base.outline;
    [all...]
ftsynth.c 50 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 );
ftglyph.c 162 FT_Outline* source = &slot->outline;
163 FT_Outline* target = &glyph->outline;
173 /* allocate new outline */
175 &glyph->outline );
192 FT_Outline_Done( FT_GLYPH( glyph )->library, &glyph->outline );
206 error = FT_Outline_New( library, source->outline.n_points,
207 source->outline.n_contours, &target->outline );
209 FT_Outline_Copy( &source->outline, &target->outline );
    [all...]
ftstroke.c 31 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->contours + outline->n_contours
1911 FT_Outline* outline = &oglyph->outline; local
1986 FT_Outline* outline = &oglyph->outline; local
    [all...]
ftbbox.c 21 /* This component has a _single_ role: to compute exact outline bounding */
574 FT_Outline_Get_BBox( FT_Outline* outline,
586 if ( !outline )
589 /* if outline is empty, return (0,0,0,0) */
590 if ( outline->n_points == 0 || outline->n_contours <= 0 )
598 /* all `on' points in the outline. Then, if the two boxes */
601 vec = outline->points;
606 for ( n = 1; n < outline->n_points; n++ )
619 if ( FT_CURVE_TAG( outline->tags[n] ) == FT_CURVE_TAG_ON
    [all...]
  /external/freetype/include/freetype/internal/
ftgloadr.h 70 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 + \
pshints.h 277 * corresponding glyph outline. Must be called once all hints have been
284 * outline ::
285 * A pointer to the target outline descriptor.
297 * On input, all points within the outline are in font coordinates. On
306 FT_Outline* outline,
339 * The function to apply the hints to the corresponding glyph outline.
591 * corresponding glyph outline. Must be called after the `close'
598 * outline ::
599 * A pointer to the target outline descriptor.
611 * On input, all points within the outline are in font coordinates. O
    [all...]
  /external/freetype/src/smooth/
ftsmooth.c 74 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 to render it into the bitmap *
    [all...]
ftgrays.c 48 /* coverage of the outline on each pixel cell. */
72 /* - It performs a single pass on the outline (the `standard' FT2 */
340 FT_Outline outline; member in struct:TWorker_
409 /* Compute the outline bounding box. */
414 FT_Outline* outline = &ras.outline; local
415 FT_Vector* vec = outline->points;
416 FT_Vector* limit = vec + outline->n_points;
419 if ( outline->n_points <= 0 )
1893 const FT_Outline* outline = (const FT_Outline*)params->source; local
    [all...]
  /external/webkit/WebCore/css/
svg.css 69 outline: auto 5px -webkit-focus-ring-color
  /external/freetype/src/truetype/
ttgload.c 333 FT_Outline* outline; local
352 cont = gloader->current.outline.contours;
390 outline = &gloader->current.outline;
392 for ( cont = outline->contours + 1; cont < cont_limit; cont++ )
437 flag = (FT_Byte*)outline->tags;
464 vec = outline->points;
466 flag = (FT_Byte*)outline->tags;
503 vec = gloader->current.outline.points;
505 flag = (FT_Byte*)outline->tags
832 FT_Outline* outline; local
1094 FT_Outline* outline; local
    [all...]
  /external/freetype/src/raster/
ftrend1.c 74 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 to render it into the bitmap *
    [all...]
  /external/freetype/src/psaux/
psobjs.c 1549 FT_Outline* outline = builder->current; local
1587 FT_Outline* outline = builder->current; local
1640 FT_Outline* outline = builder->current; local
    [all...]
  /external/freetype/src/cff/
cffgload.c 268 builder->base = &loader->base.outline;
269 builder->current = &loader->current.outline;
315 glyph->root.outline = *builder->base;
481 FT_Outline* outline = builder->current; local
486 FT_Vector* point = outline->points + outline->n_points;
487 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points;
495 outline->n_points++;
520 FT_Outline* outline = builder->current local
570 FT_Outline* outline = builder->current; local
    [all...]
  /external/icu4c/samples/layout/
GnomeFontInstance.cpp 168 if (pointNumber >= fFace->glyph->outline.n_points) {
172 point.fX = fFace->glyph->outline.points[pointNumber].x >> 6;
173 point.fY = fFace->glyph->outline.points[pointNumber].y >> 6;
  /external/webkit/WebCore/editing/
DeleteButtonController.cpp 54 const char* const DeleteButtonController::outlineElementIdentifier = "WebKit-Editing-Delete-Outline";
204 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();
  /sdk/eclipse/scripts/
gen_icon.py 53 fill=data.circle_color, outline=None)
56 fill=None, outline=data.border_color)

Completed in 309 milliseconds

1 2 3