HomeSort by relevance Sort by last modified time
    Searched defs:outline (Results 1 - 25 of 34) 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 );
219 /* 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...]
  /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...]
  /external/skia/include/utils/
SkRTConf.h 107 char outline[200]; // should be ok because we specify a max. width for everything here. local
109 sprintf(outline, "%-30.30s", getName());
110 doPrint(&(outline[30]));
111 sprintf(&(outline[60]), " %.128s", fDescription.c_str());
112 if (' ' == outline[strlen(outline)-1]) {
113 for (int i = strlen(outline)-1 ; ' ' == outline[i] ; i--) {
114 outline[i] = '\0';
117 o->writeText(outline);
    [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();
  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicViewHelper.java 47 Bitmap outline = createPressImage(v, mTempCanvas); local
49 FastBitmapDrawable outlineD = new FastBitmapDrawable(outline);
AppsCustomizePagedView.java 711 Bitmap outline; local
768 // Don't clip alpha values for the drag outline if we're using the default widget preview
772 // Save the preview for the outline generation, then dim the preview
773 outline = Bitmap.createScaledBitmap(preview, preview.getWidth(), preview.getHeight(),
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 32 // hand-tuned value to reduce outline embolden strength
139 FT_Outline* outline = &face->glyph->outline; local
144 emboldenOutline(face, outline);
154 FT_Outline_Get_CBox(outline, &bbox);
163 FT_Outline_Translate(outline, dx - ((bbox.xMin + dx) & ~63),
185 FT_Outline_Get_Bitmap(face->glyph->library, outline, &target);
311 emboldenOutline(face, &face->glyph->outline);
323 FT_Error err = FT_Outline_Decompose(&face->glyph->outline, &funcs, path);
333 void SkScalerContext_FreeType_Base::emboldenOutline(FT_Face face, FT_Outline* outline)
    [all...]
  /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/legacy/src/core/
SkScalerContext.cpp 654 SkPath outline; local
660 stroker.strokePath(localPath, &outline);
661 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
783 // Update outline to show the target node there
784 OutlinePage outline = mCanvas.getOutlinePage(); local
798 ISelection currentSelection = outline.getSelection();
800 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;
437 outline = &gloader->current.outline;
440 flag = (FT_Byte*)outline->tags;
467 vec = outline->points;
469 flag = (FT_Byte*)outline->tags;
506 vec = gloader->current.outline.points;
508 flag = (FT_Byte*)outline->tags;
540 outline->n_points = (FT_UShort)n_points
835 FT_Outline* outline; local
1097 FT_Outline* outline; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 343 // the focus' outline so that our UI thread can draw accordingly.
347 int outline = box->view()->maximalOutlineSize(); local
348 static_cast<MediaLayer*>(m_contentLayer)->setOutlineSize(outline);
349 ALOGV("Media Outline: %d %p %p %p", outline, m_client, layer, box);
704 int outline = box->view()->maximalOutlineSize(); local
710 contentsRect.inflate(outline);
731 // absoluteBoundingBoxRect does not include the outline so we need
733 int x = box->borderLeft() + outline;
734 int y = box->borderTop() + outline;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java 135 /** The XML editor outline */
138 /** Multiplexing outline, used for multi-page editors that have their own outline */
144 * outline rather than the multi-outline. See the {@link #delegateGetAdapter}
531 // Somebody has requested the outline. Eclipse can only have a single outline page,
535 // outline which switches its contents between the outline pages we register
538 // There is one complication: The XML editor outline listens for the edito
620 IContentOutlinePage outline; local
    [all...]

Completed in 1305 milliseconds

1 2