Searched refs:outline (Results 1 - 25 of 195) sorted by relevance

12345678

/external/chromium_org/chrome/browser/resources/
H A Ddialog.css10 outline: medium auto rgb(80, 122, 213);
/external/freetype/include/freetype/
H A Dftoutln.h88 /* Walk over an outline's structure to decompose it into individual */
90 /* operations to indicate the start of new contours in the outline. */
93 /* outline :: A pointer to the source target. */
109 FT_Outline_Decompose( FT_Outline* outline,
120 /* Create a new outline of a given size. */
124 /* outline is allocated. Note however that the new */
125 /* outline will *not* necessarily be *freed*, when */
128 /* numPoints :: The maximum number of points within the outline. */
131 /* numContours :: The maximum number of contours within the outline. */
135 /* anoutline :: A handle to the new outline
207 FT_Outline_Check( FT_Outline* outline ); variable
393 FT_Outline_Reverse( FT_Outline* outline ); variable
544 FT_Outline_Get_Orientation( FT_Outline* outline ); variable
[all...]
H A Dftbbox.h21 /* 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. */
85 FT_Outline_Get_BBox( FT_Outline* outline,
/external/chromium_org/third_party/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
373 FT_Outline_Reverse( FT_Outline* outline ); variable
524 FT_Outline_Get_Orientation( FT_Outline* outline ); variable
[all...]
H A Dftbbox.h21 /* 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. */
85 FT_Outline_Get_BBox( FT_Outline* outline,
/external/chromium-trace/trace-viewer/src/ui/
H A Dquad_view.css14 outline: none;
H A Dlist_view.css11 outline: none;
24 outline: 1px dotted rgba(0,0,0,0.1);
25 outline-offset: 0;
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
H A DPlatformThemeChromiumDefault.cpp78 // 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
[all...]
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafdummy.c37 FT_Outline* outline )
40 FT_UNUSED( outline );
/external/freetype/src/autofit/
H A Dafdummy.c37 FT_Outline* outline )
40 FT_UNUSED( outline );
H A Dafloader.c142 FT_Outline_Translate( &slot->outline,
146 /* copy the outline points in the loader's current */
149 slot->outline.n_points + 4,
150 slot->outline.n_contours );
154 FT_ARRAY_COPY( gloader->current.outline.points,
155 slot->outline.points,
156 slot->outline.n_points );
158 FT_ARRAY_COPY( gloader->current.outline.contours,
159 slot->outline.contours,
160 slot->outline
[all...]
/external/freetype/src/base/
H A Dftoutln.c5 /* FreeType outline management (body). */
51 FT_Outline_Decompose( FT_Outline* outline,
68 FT_Int n; /* index of contour in outline */
76 if ( !outline || !func_interface )
83 for ( n = 0; n < outline->n_contours; n++ )
90 last = outline->contours[n];
93 limit = outline->points + last;
95 v_start = outline->points[first];
99 v_last = outline->points[last];
105 point = outline
468 FT_Outline_Get_CBox( const FT_Outline* outline, FT_BBox *acbox ) argument
518 FT_Outline_Translate( const FT_Outline* outline, FT_Pos xOffset, FT_Pos yOffset ) argument
703 FT_Outline_Transform( const FT_Outline* outline, const FT_Matrix* matrix ) argument
[all...]
H A Dftgloadr.c94 base->outline.n_points = 0;
95 base->outline.n_contours = 0;
110 FT_FREE( loader->base.outline.points );
111 FT_FREE( loader->base.outline.tags );
112 FT_FREE( loader->base.outline.contours );
141 /* re-adjust the `current' outline fields */
145 FT_Outline* base = &loader->base.outline;
146 FT_Outline* current = &loader->current.outline;
197 /* This function reallocates its outline tables if necessary. Note that */
207 FT_Outline* base = &loader->base.outline;
[all...]
H A Dftsynth.c51 FT_Outline* outline = &slot->outline; local
54 /* only oblique outline glyphs */
69 FT_Outline_Transform( outline, &transform );
105 (void)FT_Outline_EmboldenXY( &slot->outline, xstr, ystr );
/external/chromium_org/third_party/freetype/src/base/
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 Dftgloadr.c93 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...]
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 );
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DrevisionHistory.css29 .outline-disclosure.revision-history-drawer {
34 .outline-disclosure.revision-history-drawer ol {
40 .outline-disclosure.revision-history-drawer > ol {
44 .outline-disclosure.revision-history-drawer li {
51 .outline-disclosure.revision-history-drawer li.parent {
66 .outline-disclosure.revision-history-drawer .revision-history-line {
/external/freetype/src/cff/
H A Dcf2ft.c51 * generally respond to `Glyph_Too_Big' by getting a glyph outline
81 cf2_setGlyphWidth( CF2_Outline outline, argument
84 CFF_Decoder* decoder = outline->decoder;
112 /* functions for handling client outline; */
122 CF2_Outline outline = (CF2_Outline)callbacks; local
128 FT_ASSERT( outline && outline->decoder );
131 builder = &outline->decoder->builder;
144 CF2_Outline outline = (CF2_Outline)callbacks; local
148 FT_ASSERT( outline
174 CF2_Outline outline = (CF2_Outline)callbacks; local
208 cf2_outline_init( CF2_Outline outline, FT_Memory memory, FT_Error* error ) argument
[all...]
/external/chromium_org/third_party/skia/include/utils/
H A DSkRTConf.h107 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/skia/include/utils/
H A DSkRTConf.h107 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/chromium_org/third_party/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/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/chromium_org/third_party/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
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 t
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A Dsvg.css61 outline: auto 5px -webkit-focus-ring-color

Completed in 493 milliseconds

12345678