HomeSort by relevance Sort by last modified time
    Searched defs:outline (Results 1 - 24 of 24) sorted by null

  /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...]
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...]
ftglyph.h 63 /* 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's points, including Bézier control points. Though it *
    [all...]
freetype.h 443 /* i.e., the glyph's metrics, its image (bitmap or outline), and */
1623 FT_Outline outline; member in struct:FT_GlyphSlotRec_
    [all...]
  /external/freetype/src/base/
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 );
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...]
  /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...]
ftraster.c 75 /* Converting an outline into a bitmap is achieved in several steps: */
77 /* 1 - Decomposing the outline into successive `profiles'. Each */
95 /* The outline data is parsed during step 1 only. The profiles are */
113 /* a change of direction is detected in the outline, a new profile is */
114 /* generated until the end of the outline. */
466 Int numTurns; /* number of Y-turns in outline */
492 FT_Outline outline; member in struct:TWorker_
3498 const FT_Outline* outline = (const FT_Outline*)params->source; local
    [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 + \
  /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 */
344 FT_Outline outline; member in struct:TWorker_
413 /* Compute the outline bounding box. */
418 FT_Outline* outline = &ras.outline; local
419 FT_Vector* vec = outline->points;
420 FT_Vector* limit = vec + outline->n_points;
423 if ( outline->n_points <= 0 )
1894 const FT_Outline* outline = (const FT_Outline*)params->source; local
    [all...]
  /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();
  /external/freetype/src/autofit/
aftypes.h 175 /* 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,
  /external/freetype/src/psaux/
psobjs.c 1550 FT_Outline* outline = builder->current; local
1588 FT_Outline* outline = builder->current; local
1648 FT_Outline* outline = builder->current; local
    [all...]
  /external/quake/quake/src/QW/gas2masm/
gas2masm.c 36 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/
gas2masm.c 36 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/
SkScalerContext.cpp 565 SkPath outline; local
571 stroker.strokePath(localPath, &outline);
572 localPath.swap(outline);
  /external/webkit/WebCore/inspector/front-end/
DOMAgent.js 427 var outline = WebInspector.panels.elements.treeOutline; variable
428 var treeElement = outline.findTreeElement(node);
  /external/freetype/src/pshinter/
pshalgo.h 212 FT_Outline* outline; member in struct:PSH_GlyphRec_
244 FT_Outline* outline,
  /external/freetype/src/truetype/
ttgload.c 356 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->tags
855 FT_Outline* outline; local
1117 FT_Outline* outline; local
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 129 void emboldenOutline(FT_Outline* outline);
491 void SkScalerContext_FreeType::emboldenOutline(FT_Outline* outline) {
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, dx - ((bbox.xMin + dx) & ~63)
    [all...]
  /external/freetype/src/cff/
cffgload.c 267 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 = builder->current local
569 FT_Outline* outline = builder->current; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 116 * - outline should include same context menu + delete/copy/paste ops.
117 * - outline should include drop support (from canvas or from palette)
183 /** Outline color. Do not dispose, it's a system color. */
192 /** When true, always display the outline of all views. */
216 /** The current Outline Page, to set its model. */
295 // Get the outline associated with this editor, if any and of the right type.
296 Object outline = layoutEditor.getAdapter(IContentOutlinePage.class); local
297 if (outline instanceof OutlinePage2) {
298 mOutlinePage = (OutlinePage2) outline;
    [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 774 milliseconds