/external/chromium_org/third_party/freetype/include/freetype/ |
ftoutln.h | 43 /* Outline Processing */ 88 /* 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. * 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...] |
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. */ 85 FT_Outline_Get_BBox( FT_Outline* outline,
|
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...] |
/external/freetype/include/freetype/ |
ftoutln.h | 43 /* Outline Processing */ 88 /* 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. * 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...] |
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. */ 85 FT_Outline_Get_BBox( FT_Outline* outline,
|
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...] |
/external/chromium_org/third_party/freetype/src/base/ |
ftoutln.c | 5 /* 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++ ) 88 FT_TRACE5(( "FT_Outline_Decompose: Outline %d\n", n )); 90 last = outline->contours[n]; 93 limit = outline->points + last; 95 v_start = outline->points[first]; 99 v_last = outline->points[last] [all...] |
ftgloadr.c | 94 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...] |
/external/freetype/src/base/ |
ftoutln.c | 5 /* 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++ ) 88 FT_TRACE5(( "FT_Outline_Decompose: Outline %d\n", n )); 90 last = outline->contours[n]; 93 limit = outline->points + last; 95 v_start = outline->points[first]; 99 v_last = outline->points[last] [all...] |
ftgloadr.c | 94 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...] |
/external/chromium-trace/trace-viewer/src/ui/ |
list_view.css | 11 outline: none; 24 outline: 1px dotted rgba(0,0,0,0.1); 25 outline-offset: 0;
|
quad_view.css | 14 outline: none;
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
focus_outline_manager.js | 10 const CLASS_NAME = 'focus-outline-visible'; 19 * html.focus-outline-visible my-element:focus { 20 * outline: 5px auto -webkit-focus-ring-color; 23 * And the outline will only be shown if the user uses the keyboard to get to 26 * @param {Document} doc The document to attach the focus outline manager to. 44 * Whether the focus outline should be visible. 65 * Gets a per document sigleton focus outline manager. 67 * @return {FocusOutlineManager} The per document singleton focus outline
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
focus_outline_manager.js | 11 var CLASS_NAME = 'focus-outline-visible'; 20 * html.focus-outline-visible my-element:focus { 21 * outline: 5px auto -webkit-focus-ring-color; 24 * And the outline will only be shown if the user uses the keyboard to get to 27 * @param {Document} doc The document to attach the focus outline manager to. 57 * Whether the focus outline should be visible. 78 * Gets a per document sigleton focus outline manager. 80 * @return {FocusOutlineManager} The per document singleton focus outline
|
/external/clang/test/SemaObjC/ |
narrow-property-type-in-cont-class.m | 11 @property(nonatomic,readonly,retain) NSArray* outline; 16 @property(nonatomic,readwrite,retain) NSMutableArray* outline;
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afloader.c | 142 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.n_contours ) [all...] |
afdummy.c | 37 FT_Outline* outline ) 40 FT_UNUSED( outline );
|
/external/freetype/src/autofit/ |
afloader.c | 142 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.n_contours ) [all...] |
afdummy.c | 37 FT_Outline* outline ) 40 FT_UNUSED( outline );
|
/external/chromium_org/components/onc/docs/ |
onc_spec.js | 28 function outline(node) { function 36 outline(child); 47 outline_root = document.getElementById('outline'); 54 outline(root);
|
/external/chromium_org/third_party/freetype/src/raster/ |
ftrend1.c | 75 FT_Outline_Transform( &slot->outline, matrix ); 78 FT_Outline_Translate( &slot->outline, delta->x, delta->y ); 94 FT_Outline_Get_CBox( &slot->outline, cbox ); 106 FT_Outline* outline; local 156 outline = &slot->outline; 158 /* translate the outline to the new origin if needed */ 160 FT_Outline_Translate( outline, origin->x, origin->y ); 163 FT_Outline_Get_CBox( outline, &cbox ); 220 /* translate outline to render it into the bitmap * [all...] |
/external/freetype/src/raster/ |
ftrend1.c | 75 FT_Outline_Transform( &slot->outline, matrix ); 78 FT_Outline_Translate( &slot->outline, delta->x, delta->y ); 94 FT_Outline_Get_CBox( &slot->outline, cbox ); 106 FT_Outline* outline; local 156 outline = &slot->outline; 158 /* translate the outline to the new origin if needed */ 160 FT_Outline_Translate( outline, origin->x, origin->y ); 163 FT_Outline_Get_CBox( outline, &cbox ); 220 /* translate outline to render it into the bitmap * [all...] |
/external/chromium_org/third_party/freetype/src/cff/ |
cf2ft.c | 51 * generally respond to `Glyph_Too_Big' by getting a glyph outline 81 cf2_setGlyphWidth( CF2_Outline outline, 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 && outline->decoder ) 174 CF2_Outline outline = (CF2_Outline)callbacks; local [all...] |
/external/freetype/src/cff/ |
cf2ft.c | 51 * generally respond to `Glyph_Too_Big' by getting a glyph outline 81 cf2_setGlyphWidth( CF2_Outline outline, 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 && outline->decoder ) 174 CF2_Outline outline = (CF2_Outline)callbacks; local [all...] |
/external/chromium_org/third_party/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 141 outline = &slot->outline; 143 /* translate the outline to the new origin if needed */ 146 FT_Outline_Translate( outline, origin->x, origin->y ); 151 FT_Outline_Get_CBox( outline, &cbox ); 253 /* translate outline to render it into the bitmap * [all...] |