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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
OutlineTest.java 19 import android.graphics.Outline;
33 Outline outline = new Outline(); local
35 assertEquals(0.0f, outline.getAlpha(), 0.0f);
36 assertTrue(outline.isEmpty());
38 assertFalse(outline.getRect(outRect));
39 assertTrue(outline.getRadius() < 0);
44 Outline outline = new Outline()
    [all...]
  /frameworks/base/core/java/android/view/
ViewOutlineProvider.java 19 import android.graphics.Outline;
23 * Interface by which a View builds its {@link Outline}, used for shadow casting and clipping.
27 * Default outline provider for Views, which queries the Outline from the View's background,
28 * or generates a 0 alpha, rectangular Outline the size of the View if a background
31 * @see Drawable#getOutline(Outline)
35 public void getOutline(View view, Outline outline) {
38 background.getOutline(outline);
40 outline.setRect(0, 0, view.getWidth(), view.getHeight())
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
RoundRectShapeTest.java 24 import android.graphics.Outline;
99 Outline outline = new Outline(); local
105 shape.getOutline(outline);
106 assertTrue(outline.isEmpty());
107 assertTrue(outline.getRadius() < 0);
108 assertFalse(outline.getRect(rect));
111 shape.getOutline(outline);
112 assertFalse(outline.isEmpty())
    [all...]
OvalShapeTest.java 24 import android.graphics.Outline;
73 Outline outline = new Outline(); local
77 // Zero-sized oval yields an empty outline.
79 shape.getOutline(outline);
80 assertTrue(outline.isEmpty());
81 assertTrue(outline.getRadius() < 0);
82 assertFalse(outline.getRect(rect));
86 shape.getOutline(outline);
    [all...]
RectShapeTest.java 24 import android.graphics.Outline;
102 Outline outline = new Outline(); local
107 shape.getOutline(outline);
108 assertTrue(outline.isEmpty());
109 assertTrue(outline.getRadius() < 0);
110 assertFalse(outline.getRect(rect));
114 shape.getOutline(outline);
115 assertFalse(outline.isEmpty())
    [all...]
  /external/freetype/include/
ftoutln.h 43 /* Outline Processing */
91 /* Walk over an outline's structure to decompose it into individual */
93 /* operations to indicate the start of new contours in the outline. */
96 /* outline :: A pointer to the source target. */
115 /* outline for stroking purposes (otherwise it would result in a */
119 FT_Outline_Decompose( FT_Outline* outline,
130 /* Create a new outline of a given size. */
134 /* outline is allocated. Note however that the new */
135 /* outline will *not* necessarily be *freed*, when */
138 /* numPoints :: The maximum number of points within the outline. *
217 FT_Outline_Check( FT_Outline* outline ); variable
406 FT_Outline_Reverse( FT_Outline* outline ); variable
559 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,
  /external/pdfium/third_party/freetype/include/freetype/
ftoutln.h 43 /* Outline Processing */
91 /* Walk over an outline's structure to decompose it into individual */
93 /* operations to indicate the start of new contours in the outline. */
96 /* outline :: A pointer to the source target. */
115 /* outline for stroking purposes (otherwise it would result in a */
119 FT_Outline_Decompose( FT_Outline* outline,
130 /* Create a new outline of a given size. */
134 /* outline is allocated. Note however that the new */
135 /* outline will *not* necessarily be *freed*, when */
138 /* numPoints :: The maximum number of points within the outline. *
217 FT_Outline_Check( FT_Outline* outline ); variable
406 FT_Outline_Reverse( FT_Outline* outline ); variable
559 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,
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftoutln.h 43 /* Outline Processing */
91 /* Walk over an outline's structure to decompose it into individual */
93 /* operations to indicate the start of new contours in the outline. */
96 /* outline :: A pointer to the source target. */
115 /* outline for stroking purposes (otherwise it would result in a */
119 FT_Outline_Decompose( FT_Outline* outline,
130 /* Create a new outline of a given size. */
134 /* outline is allocated. Note however that the new */
135 /* outline will *not* necessarily be *freed*, when */
138 /* numPoints :: The maximum number of points within the outline. *
217 FT_Outline_Check( FT_Outline* outline ); variable
406 FT_Outline_Reverse( FT_Outline* outline ); variable
559 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,
  /external/llvm/test/CodeGen/X86/
code_placement_outline_optional_branches.ll 2 ; RUN: llc -mcpu=corei7 -mtriple=x86_64-linux -outline-optional-branches < %s | FileCheck %s -check-prefix=CHECK-OUTLINE
19 ; CHECK-OUTLINE-LABEL: foo:
20 ; CHECK-OUTLINE: callq b
21 ; CHECK-OUTLINE: callq c
22 ; CHECK-OUTLINE: callq d
23 ; CHECK-OUTLINE: callq e
24 ; CHECK-OUTLINE: callq f
25 ; CHECK-OUTLINE: callq a
26 ; CHECK-OUTLINE: callq
    [all...]
  /frameworks/support/design/lollipop/android/support/design/widget/
CircularBorderDrawableLollipop.java 19 import android.graphics.Outline;
27 public void getOutline(Outline outline) {
29 outline.setOval(mRect);
  /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 )
86 for ( n = 0; n < outline->n_contours; n++ )
91 FT_TRACE5(( "FT_Outline_Decompose: Outline %d\n", n ));
93 last = outline->contours[n];
96 limit = outline->points + last;
98 v_start = outline->points[first];
102 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/pdfium/third_party/freetype/src/base/
ftoutln.c 5 /* FreeType outline management (body). */
51 FT_Outline_Decompose( FT_Outline* outline,
69 FT_Int n; /* index of contour in outline */
77 if ( !outline )
87 for ( n = 0; n < outline->n_contours; n++ )
92 FT_TRACE5(( "FT_Outline_Decompose: Outline %d\n", n ));
94 last = outline->contours[n];
97 limit = outline->points + last;
99 v_start = outline->points[first];
103 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...]
  /frameworks/base/graphics/java/android/graphics/
Outline.java 35 * @see Drawable#getOutline(Outline)
37 public final class Outline {
72 * Constructs an empty Outline. Call one of the setter methods to make
73 * the outline valid for use with a View.
75 public Outline() {}
78 * Constructs an Outline with a copy of the data in src.
80 public Outline(@NonNull Outline src) {
85 * Sets the outline to be empty.
97 * Returns whether the Outline is empty
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/interpolation/
outline-width-interpolation.html 9 outline: 2px solid orange;
22 property: 'outline-width',
26 {at: -0.3, is: '0px'}, // CSS outline-width can't be negative.
34 property: 'outline-width',
38 {at: -2, is: '0px'}, // CSS outline-width can't be negative.
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
ViewGroup_Delegate.java 25 import android.graphics.Outline;
50 // the outline obtained is correct.
53 Outline outline = child.mAttachInfo.mTmpOutline; local
54 outlineProvider.getOutline(child, outline);
55 if (outline.mPath != null || (outline.mRect != null && !outline.mRect.isEmpty())) {
57 drawShadow(thisVG, canvas, child, outline);
65 Outline outline)
    [all...]
  /frameworks/support/v17/leanback/api21/android/support/v17/leanback/widget/
RoundedRectHelperApi21.java 17 import android.graphics.Outline;
35 public void getOutline(View view, Outline outline) {
36 outline.setRoundRect(0, 0, view.getWidth(), view.getHeight(), mRadius);
37 outline.setAlpha(1f);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ActionBarBackgroundDrawableV21.java 19 import android.graphics.Outline;
29 public void getOutline(@NonNull Outline outline) {
32 mContainer.mSplitBackground.getOutline(outline);
37 mContainer.mBackground.getOutline(outline);
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
list_view.css 11 outline: none;
24 outline: 1px dotted rgba(0,0,0,0.1);
25 outline-offset: 0;
  /frameworks/support/v17/preference-leanback/api21/android/support/v17/internal/widget/
OutlineOnlyWithChildrenFrameLayout.java 20 import android.graphics.Outline;
27 * {@link FrameLayout} subclass that provides an outline only when it has children, so that it does
69 public void getOutline(View view, Outline outline) {
71 mInnerOutlineProvider.getOutline(view, outline);
73 ViewOutlineProvider.BACKGROUND.getOutline(view, 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;

Completed in 2913 milliseconds

1 2 3 4 5 6 7 8 91011>>