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

1 2 3 4 5 6 7 8 91011>>

  /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...]
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/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/src/base/
ftoutln.c 5 /* 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++ )
87 FT_TRACE5(( "FT_Outline_Decompose: Outline %d\n", n ));
89 last = outline->contours[n];
92 limit = outline->points + last;
94 v_start = outline->points[first];
98 v_last = outline->points[last]
    [all...]
ftgloadr.c 93 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...]
ftglyph.c 162 FT_Outline* source = &slot->outline;
163 FT_Outline* target = &glyph->outline;
173 /* allocate new outline */
175 &glyph->outline );
192 FT_Outline_Done( FT_GLYPH( glyph )->library, &glyph->outline );
206 error = FT_Outline_New( library, source->outline.n_points,
207 source->outline.n_contours, &target->outline );
209 FT_Outline_Copy( &source->outline, &target->outline );
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
continuationCrash.html 10 var el = document.getElementById("outline");
11 el.style.outline="2px solid red";
15 newChild.setAttribute("id", "outline");
26 <body><span id="outline">
39 <li>1. 3. will not crash Safari. (But the outline should vanish. Shouldn't it?)</li>
52 <input type="button" value="1. Set outline property" onclick="setOutline()" />
table-continuation-outline-paint-crash.html 3 You should see a PASS with a solid outline around it.
  /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-trace/src/shared/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.
45 * Whether the focus outline should be visible.
66 * Gets a per document sigleton focus outline manager.
68 * @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/freetype/src/autofit/
afloader.c 136 FT_Outline_Translate( &slot->outline,
140 /* copy the outline points in the loader's current */
143 slot->outline.n_points + 4,
144 slot->outline.n_contours );
148 FT_ARRAY_COPY( gloader->current.outline.points,
149 slot->outline.points,
150 slot->outline.n_points );
152 FT_ARRAY_COPY( gloader->current.outline.contours,
153 slot->outline.contours,
154 slot->outline.n_contours )
    [all...]
afdummy.c 37 FT_Outline* outline )
40 FT_UNUSED( outline );
  /external/expat/examples/
outline.dsp 1 # Microsoft Developer Studio Project File - Name="outline" - Package Owner=<4>
7 CFG=outline - Win32 Debug
11 !MESSAGE NMAKE /f "outline.mak".
16 !MESSAGE NMAKE /f "outline.mak" CFG="outline - Win32 Debug"
20 !MESSAGE "outline - Win32 Release" (based on "Win32 (x86) Console Application")
21 !MESSAGE "outline - Win32 Debug" (based on "Win32 (x86) Console Application")
31 !IF "$(CFG)" == "outline - Win32 Release"
41 # PROP Intermediate_Dir "..\win32\tmp\Release-outline"
56 !ELSEIF "$(CFG)" == "outline - Win32 Debug"
    [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/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/expat/bcb5/
makefile.mak 1 all: setup expat expatw expat_static expatw_static elements outline xmlwf
21 outline:
outline.bpf 1 USEUNIT("..\examples\outline.c");
  /external/chromium/chrome/browser/resources/shared/css/
tabs.css 42 outline: none;
45 html.focus-outline-visible tabs:focus > [selected] {
46 outline: 5px auto -webkit-focus-ring-color;
47 outline-offset: -2px;
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-properties/
dillo 70 outline
71 outline-color
72 outline-style
73 outline-width
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutWindowCoordinator.java 33 * fronting, etc) and uses this information to manage the propertysheet and outline
36 * <li> If the Property Sheet and Outline Eclipse views are showing, it does nothing.
39 * <li> If just the outline is showing, then the property sheet is shown in a sashed
40 * pane below or to the right of the outline (depending on the dominant dimension
42 * <li> TBD: If just the property sheet is showing, should the outline be showed
44 * <li> If the outline is *not* showing, then the outline is instead shown
47 * <li> If the property sheet is not showing (which includes not showing in the outline
48 * view as well), then it will be shown inside the editor area, along with the outline
49 * which should also be there (since if the outline was showing outside the edito
    [all...]
OutlineOverlay.java 25 * The {@link OutlineOverlay} paints an optional outline on top of the layout,
29 /** The {@link ViewHierarchy} this outline visualizes */
32 /** Outline color. Must be disposed, it's NOT a system color. */
63 mOutlineColor = new Color(device, SwtDrawingStyle.OUTLINE.getStrokeColor());
79 gc.setLineStyle(SwtDrawingStyle.OUTLINE.getLineStyle());
81 gc.setAlpha(SwtDrawingStyle.OUTLINE.getStrokeAlpha());
98 // This makes the outline nicer visually since you don't get
  /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/chromium-trace/src/shared/css/
tabs.css 51 outline: none;
54 html.focus-outline-visible tabs:focus > [selected] {
55 outline: 5px auto -webkit-focus-ring-color;
56 outline-offset: -2px;

Completed in 1006 milliseconds

1 2 3 4 5 6 7 8 91011>>