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

1 2

  /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
373 FT_Outline_Reverse( FT_Outline* outline ); variable
524 FT_Outline_Get_Orientation( FT_Outline* outline ); variable
    [all...]
ftstroke.h 191 * `inside' borders of a given outline.
194 * outline ::
195 * The source outline handle.
202 FT_Outline_GetInsideBorder( FT_Outline* outline ); variable
212 * `outside' borders of a given outline.
215 * outline ::
216 * The source outline handle.
223 FT_Outline_GetOutsideBorder( FT_Outline* outline ); variable
277 * The radius is expressed in the same units as the outline
313 * 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 444 /* i.e., the glyph's metrics, its image (bitmap or outline), and */
1624 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 );
702 FT_Outline* outline )
705 FT_ARRAY_COPY( outline->points + outline->n_points,
713 FT_Byte* write = (FT_Byte*)outline->tags + outline->n_points;
731 FT_Short* write = outline->contours + outline->n_contours
2289 FT_Outline* outline = &oglyph->outline; local
2366 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 );
212 /* translate outline to render it into the bitmap *
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
StyleBackgroundData.h 50 const OutlineValue& outline() const { return m_outline; } function in class:WebCore::StyleBackgroundData
  /external/webkit/Source/WebCore/platform/chromium/
PlatformThemeChromiumGtk.cpp 78 // color. But it fails spectacularly for the outline color used
80 // outline. For some of them it is partially transparent, and for
134 // Paint the button's outline and fill the middle
135 SkPath outline; local
138 outline.moveTo(rect.x() + 0.5, rect.y() + rect.height() + 0.5);
139 outline.rLineTo(0, -(rect.height() - 2));
140 outline.rLineTo(2, -2);
141 outline.rLineTo(rect.width() - 5, 0);
142 outline.rLineTo(2, 2);
143 outline.rLineTo(0, rect.height() - 2)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicViewHelper.java 45 Bitmap outline = createPressImage(v, mTempCanvas); local
46 FastBitmapDrawable d = new FastBitmapDrawable(outline);
AppsCustomizePagedView.java 547 Bitmap outline; local
581 // Save the preview for the outline generation, then dim the preview
582 outline = Bitmap.createScaledBitmap(preview, preview.getWidth(), preview.getHeight(),
591 mLauncher.getWorkspace().onDragStartedWithItem(createItemInfo, outline, alphaClipPaint);
594 outline.recycle();
    [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
132 outline = &slot->outline;
134 /* translate the outline to the new origin if needed */
136 FT_Outline_Translate( outline, origin->x, origin->y );
139 FT_Outline_Get_CBox( outline, &cbox );
241 /* 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_
411 /* Compute the outline bounding box. */
416 FT_Outline* outline = &ras.outline; local
417 FT_Vector* vec = outline->points;
418 FT_Vector* limit = vec + outline->n_points;
421 if ( outline->n_points <= 0 )
1858 const FT_Outline* outline = (const FT_Outline*)params->source; local
    [all...]
  /external/webkit/Source/WebCore/editing/
DeleteButtonController.cpp 54 const char* const DeleteButtonController::outlineElementIdentifier = "WebKit-Editing-Delete-Outline";
204 RefPtr<HTMLDivElement> outline = HTMLDivElement::create(m_target->document()); local
205 outline->setIdAttribute(outlineElementIdentifier);
210 style = outline->getInlineStyleDecl();
222 container->appendChild(outline.get(), ec);
255 m_outlineElement = outline.release();
  /external/freetype/src/psaux/
psobjs.c 1549 FT_Outline* outline = builder->current; local
1587 FT_Outline* outline = builder->current; local
1647 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 563 SkPath outline; local
569 stroker.strokePath(localPath, &outline);
570 localPath.swap(outline);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 142 // Ensure that the outline is back to showing the current selection, since during
775 // Update outline to show the target node there
776 OutlinePage outline = mCanvas.getOutlinePage(); local
790 ISelection currentSelection = outline.getSelection();
792 outline.setSelection(newSelection);
    [all...]
  /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 339 FT_Outline* outline; local
358 cont = gloader->current.outline.contours;
396 outline = &gloader->current.outline;
398 for ( cont = outline->contours + 1; cont < cont_limit; cont++ )
443 flag = (FT_Byte*)outline->tags;
470 vec = outline->points;
472 flag = (FT_Byte*)outline->tags;
509 vec = gloader->current.outline.points;
511 flag = (FT_Byte*)outline->tags
838 FT_Outline* outline; local
1100 FT_Outline* outline; local
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 147 void emboldenOutline(FT_Outline* outline);
336 FT_Outline_Get_CBox(&face->glyph->outline, bbox);
818 void SkScalerContext_FreeType::emboldenOutline(FT_Outline* outline) {
822 FT_Outline_Embolden(outline, strength);
921 emboldenOutline(&fFace->glyph->outline);
923 FT_Outline_Get_CBox(&fFace->glyph->outline, &bbox);
1050 FT_Outline* outline = &fFace->glyph->outline; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 320 // the focus' outline so that our UI thread can draw accordingly.
324 int outline = box->view()->maximalOutlineSize(); local
325 static_cast<MediaLayer*>(m_contentLayer)->setOutlineSize(outline);
326 LOG("Media Outline: %d %p %p %p", outline, m_client, layer, box);
580 int outline = box->view()->maximalOutlineSize(); local
584 contentsRect.inflate(outline);
600 // absoluteBoundingBoxRect does not include the outline so we need
602 int x = box->borderLeft() + outline;
603 int y = box->borderTop() + outline;
    [all...]
  /external/freetype/src/cff/
cffgload.c 266 builder->base = &loader->base.outline;
267 builder->current = &loader->current.outline;
313 glyph->root.outline = *builder->base;
479 FT_Outline* outline = builder->current; local
484 FT_Vector* point = outline->points + outline->n_points;
485 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points;
493 outline->n_points++;
518 FT_Outline* outline = builder->current local
568 FT_Outline* outline = builder->current; local
    [all...]

Completed in 3408 milliseconds

1 2