/external/freetype/src/base/ |
ftbbox.c | 21 /* This component has a _single_ role: to compute exact outline bounding */ 438 FT_Outline_Get_BBox( FT_Outline* outline, 452 if ( !outline ) 455 /* if outline is empty, return (0,0,0,0) */ 456 if ( outline->n_points == 0 || outline->n_contours <= 0 ) 464 /* all `on' points in the outline. Then, if the two boxes */ 467 vec = outline->points; 469 for ( n = 0; n < outline->n_points; n++ ) 473 if ( FT_CURVE_TAG( outline->tags[n] ) == FT_CURVE_TAG_ON [all...] |
/external/pdfium/third_party/freetype/src/base/ |
ftbbox.c | 21 /* This component has a _single_ role: to compute exact outline bounding */ 438 FT_Outline_Get_BBox( FT_Outline* outline, 452 if ( !outline ) 455 /* if outline is empty, return (0,0,0,0) */ 456 if ( outline->n_points == 0 || outline->n_contours <= 0 ) 464 /* all `on' points in the outline. Then, if the two boxes */ 467 vec = outline->points; 469 for ( n = 0; n < outline->n_points; n++ ) 473 if ( FT_CURVE_TAG( outline->tags[n] ) == FT_CURVE_TAG_ON [all...] |
/frameworks/base/libs/hwui/protos/ |
hwui.proto | 54 optional Outline outline = 23; 65 message Outline {
|
/external/llvm/tools/llvm-c-test/ |
disassemble.c | 41 char outline[1024]; local 51 size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline, 52 sizeof(outline)); 57 pprint(pos, buf + pos, l, outline);
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ClipOutlineActivity.java | 24 import android.graphics.Outline; 70 public void getOutline(View view, Outline outline) { 77 outline.setRoundRect(mRect, w / 2);
|
/packages/apps/PhoneCommon/src/com/android/phone/common/util/ |
ViewUtil.java | 20 import android.graphics.Outline; 64 public void getOutline(View view, Outline outline) { 65 outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
/packages/apps/TV/src/com/android/tv/menu/ |
BaseCardView.java | 23 import android.graphics.Outline; 71 public void getOutline(View view, Outline outline) { 72 outline.setRoundRect(0, 0, view.getWidth(), view.getHeight(), mCardCornerRadius);
|
/external/pdfium/third_party/freetype/src/type1/ |
t1gload.c | 196 /* now get load the unscaled outline */ 321 t1glyph->outline.n_points = 0; 322 t1glyph->outline.n_contours = 0; 353 /* now load the unscaled outline */ 375 t1glyph->outline.flags &= FT_OUTLINE_OWNER; 376 t1glyph->outline.flags |= FT_OUTLINE_REVERSE_FILL; 425 t1glyph->outline.flags |= FT_OUTLINE_HIGH_PRECISION; 432 FT_Outline_Transform( &t1glyph->outline, &font_matrix ); 442 FT_Outline_Translate( &t1glyph->outline, 453 /* scale the outline and the metrics * [all...] |
/external/freetype/src/autofit/ |
afindic.c | 83 FT_Outline* outline, 87 return af_cjk_hints_apply( hints, outline, metrics );
|
/external/pdfium/public/ |
fpdf_ext.h | 73 // Neither document outline nor thumbnail images visible 76 // Document outline visible
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
RoundedRectHelper.java | 40 * Sets or removes a rounded rectangle outline on the given view. 47 * Sets or removes a rounded rectangle outline on the given view.
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
RoundRectShape.java | 20 import android.graphics.Outline; 83 public void getOutline(Outline outline) { 84 if (mInnerRect != null) return; // have a hole, can't produce valid outline 92 outline.setConvexPath(mPath); 99 outline.setRoundRect((int) Math.ceil(rect.left), (int) Math.ceil(rect.top),
|
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
CircularRevealFragment.java | 24 import android.graphics.Outline; 109 public void getOutline(View view, Outline outline) { 110 // Using (0, 0, 0, 0) will not work since the outline will simply be treated as 111 // an empty outline. 112 outline.setOval(-1, -1, 0, 0);
|
/external/freetype/include/ |
ftimage.h | 88 /* A structure used to hold an outline's bounding box, i.e., the */ 289 /* This structure is used to describe an outline to the scan-line */ 293 /* n_contours :: The number of contours in the outline. */ 295 /* n_points :: The number of points in the outline. */ 298 /* elements, giving the outline's point coordinates. */ 301 /* each outline point's type. */ 319 /* point of each contour within the outline. For */ 324 /* flags :: A set of bit flags used to characterize the outline */ 339 FT_Vector* points; /* the outline's points */ 343 int flags; /* outline masks * [all...] |
/external/pdfium/third_party/freetype/include/freetype/ |
ftimage.h | 88 /* A structure used to hold an outline's bounding box, i.e., the */ 289 /* This structure is used to describe an outline to the scan-line */ 293 /* n_contours :: The number of contours in the outline. */ 295 /* n_points :: The number of points in the outline. */ 298 /* elements, giving the outline's point coordinates. */ 301 /* each outline point's type. */ 319 /* point of each contour within the outline. For */ 324 /* flags :: A set of bit flags used to characterize the outline */ 339 FT_Vector* points; /* the outline's points */ 343 int flags; /* outline masks * [all...] |
/prebuilts/misc/darwin-x86_64/freetype/include/freetype2/ |
ftimage.h | 88 /* A structure used to hold an outline's bounding box, i.e., the */ 289 /* This structure is used to describe an outline to the scan-line */ 293 /* n_contours :: The number of contours in the outline. */ 295 /* n_points :: The number of points in the outline. */ 298 /* elements, giving the outline's point coordinates. */ 301 /* each outline point's type. */ 319 /* point of each contour within the outline. For */ 324 /* flags :: A set of bit flags used to characterize the outline */ 339 FT_Vector* points; /* the outline's points */ 343 int flags; /* outline masks * [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...] |
/external/pdfium/third_party/freetype/src/cid/ |
cidgload.c | 252 /* now get load the unscaled outline */ 297 cidglyph->outline.n_points = 0; 298 cidglyph->outline.n_contours = 0; 337 cidglyph->outline.flags &= FT_OUTLINE_OWNER; 338 cidglyph->outline.flags |= FT_OUTLINE_REVERSE_FILL; 377 cidglyph->outline.flags |= FT_OUTLINE_HIGH_PRECISION; 383 FT_Outline_Transform( &cidglyph->outline, &font_matrix ); 393 FT_Outline_Translate( &cidglyph->outline, 403 /* scale the outline and the metrics */ 425 FT_Outline_Get_CBox( &cidglyph->outline, &cbox ) [all...] |
/cts/tests/tests/graphics/assets/ |
bombfont.ttx | 173 <TTGlyph name=".notdef"/><!-- contains no outline data --> 175 <TTGlyph name="BombEmoji"/><!-- contains no outline data --> 177 <TTGlyph name="a"/><!-- contains no outline data --> 179 <TTGlyph name="b"/><!-- contains no outline data --> 181 <TTGlyph name="c"/><!-- contains no outline data --> 183 <TTGlyph name="d"/><!-- contains no outline data --> 185 <TTGlyph name="e"/><!-- contains no outline data -->
|
bombfont2.ttx | 173 <TTGlyph name=".notdef"/><!-- contains no outline data --> 175 <TTGlyph name="BombEmoji"/><!-- contains no outline data --> 177 <TTGlyph name="a"/><!-- contains no outline data --> 179 <TTGlyph name="b"/><!-- contains no outline data --> 181 <TTGlyph name="c"/><!-- contains no outline data --> 183 <TTGlyph name="d"/><!-- contains no outline data --> 185 <TTGlyph name="e"/><!-- contains no outline data -->
|
/external/freetype/src/cff/ |
cffgload.c | 272 builder->base = &loader->base.outline; 273 builder->current = &loader->current.outline; 319 glyph->root.outline = *builder->base; 483 FT_Outline* outline = builder->current; local 488 FT_Vector* point = outline->points + outline->n_points; 489 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points; 510 outline->n_points++; 535 FT_Outline* outline = builder->current local 585 FT_Outline* outline = builder->current; local [all...] |
/external/pdfium/third_party/freetype/src/cff/ |
cffgload.c | 272 builder->base = &loader->base.outline; 273 builder->current = &loader->current.outline; 319 glyph->root.outline = *builder->base; 483 FT_Outline* outline = builder->current; local 488 FT_Vector* point = outline->points + outline->n_points; 489 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points; 510 outline->n_points++; 535 FT_Outline* outline = builder->current local 585 FT_Outline* outline = builder->current; local [all...] |
/frameworks/base/core/java/android/view/ |
RenderNode.java | 22 import android.graphics.Outline; 305 * Sets the outline, defining the shape that casts a shadow, and the path to 310 public boolean setOutline(@Nullable Outline outline) { 311 if (outline == null) { 315 switch(outline.mMode) { 316 case Outline.MODE_EMPTY: 318 case Outline.MODE_ROUND_RECT: 319 return nSetOutlineRoundRect(mNativeRenderNode, outline.mRect.left, outline.mRect.top [all...] |
/frameworks/base/docs/html/sdk/api_diff/22/changes/ |
android.graphics.Outline.html | 10 android.graphics.Outline 74 Class android.graphics.<A HREF="../../../../reference/android/graphics/Outline.html" target="_top"><font size="+2"><code>Outline</code></font></A> 86 <A NAME="android.graphics.Outline.offset_added(int, int)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/graphics/Outline.html#offset(int, int)" target="_top"><code>offset</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
|
/frameworks/base/libs/hwui/ |
CanvasState.h | 130 * Sets a "clipping outline", which is independent from the regular clip. 132 * more complicated outline fails silently. Replaces any previous clipping 133 * outline. 135 void setClippingOutline(LinearAllocator& allocator, const Outline* outline);
|