HomeSort by relevance Sort by last modified time
    Searched defs:outline (Results 51 - 75 of 125) sorted by null

1 23 4 5

  /external/skia/gm/
shapes_as_paths.cpp 64 SkPaint outline; local
65 outline.setStyle(SkPaint::kStroke_Style);
66 outline.setColor(maxDiff == 0 ? 0xFF007F00 : 0xFF7F0000);
90 canvas->drawLine(w, 0, w, h, outline);
91 canvas->drawLine(2 * w, 0, 2 * w, h, outline);
94 // Draw outline of whole test region
95 canvas->drawRect(SkRect::MakeWH(3 * w, h), outline);
  /external/skia/samplecode/
SampleCCPRGeometry.cpp 109 SkPath outline; local
110 outline.moveTo(fPoints[0]);
112 outline.cubicTo(fPoints[1], fPoints[2], fPoints[3]);
114 outline.quadTo(fPoints[1], fPoints[3]);
116 outline.lineTo(fPoints[1]);
117 outline.lineTo(fPoints[3]);
119 outline.close();
127 canvas->drawPath(outline, outlinePaint);
  /external/v8/src/compiler/
node.cc 15 Node::OutOfLineInputs* outline = local
17 outline->capacity_ = capacity;
18 outline->count_ = 0;
19 return outline;
73 OutOfLineInputs* outline = OutOfLineInputs::New(zone, capacity); local
78 node->inputs_.outline_ = outline;
80 outline->node_ = node;
81 outline->count_ = input_count;
83 input_ptr = outline->inputs_;
84 use_ptr = reinterpret_cast<Use*>(outline);
154 OutOfLineInputs* outline = nullptr; local
    [all...]
  /frameworks/base/libs/hwui/
RenderNode.cpp 136 const Outline& outline = properties().getOutline(); local
137 if (outline.getType() != Outline::Type::None) {
138 proto::Outline* poutline = pprops->mutable_outline();
140 if (outline.getType() == Outline::Type::Empty) {
142 } else if (outline.getType() == Outline::Type::ConvexPath) {
144 if (const SkPath* path = outline.getPath())
    [all...]
RenderNode.h 198 const Outline& outline = properties().getOutline(); local
201 || (outline.getShouldClip() && outline.isEmpty())
FrameBuilder.cpp 212 const Outline& outline = properties.getOutline(); local
214 || (outline.getShouldClip() && outline.isEmpty())
    [all...]
  /frameworks/layoutlib/bridge/src/android/view/
RectShadowPainter.java 25 import android.graphics.Outline;
49 public static void paintShadow(Outline viewOutline, float elevation, Canvas canvas) {
50 Rect outline = new Rect(); local
51 if (!viewOutline.getRect(outline)) {
52 assert false : "Outline is not a rect shadow";
84 RectF shadowRect = new RectF(outline);
86 // A rectangle with edges corresponding to the straight edges of the outline.
87 RectF inset = new RectF(outline);
96 sideShadow(canvas, edgePaint, edgeShadowRect, outline.left, inset.top, 0);
98 sideShadow(canvas, edgePaint, edgeShadowRect, outline.right, inset.bottom, 2)
    [all...]
ViewGroup_Delegate.java 25 import android.graphics.Outline;
50 // the outline obtained is correct.
54 Outline outline = child.mAttachInfo.mTmpOutline; local
55 outlineProvider.getOutline(child, outline);
56 if (outline.mPath != null || (outline.mRect != null && !outline.mRect.isEmpty())) {
58 drawShadow(thisVG, canvas, child, outline);
67 Outline outline)
    [all...]
  /frameworks/support/v7/cardview/src/android/support/v7/widget/
RoundRectDrawable.java 25 import android.graphics.Outline;
38 * reports proper outline for Lollipop.
128 public void getOutline(Outline outline) {
129 outline.setRoundRect(mBoundsI, mRadius);
  /prebuilts/gradle-plugin/com/android/tools/jaxb-inheritance-plugin/1/
jaxb-inheritance-plugin-1.jar 
  /external/freetype/src/psaux/
psobjs.c 1608 FT_Outline* outline = builder->current; local
1646 FT_Outline* outline = builder->current; local
1706 FT_Outline* outline = builder->current; local
    [all...]
  /external/pdfium/third_party/freetype/src/psaux/
psobjs.c 1613 FT_Outline* outline = builder->current; local
1651 FT_Outline* outline = builder->current; local
1711 FT_Outline* outline = builder->current; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/graphics/drawable/
AdaptiveIconDrawableTest.java 11 import android.graphics.Outline;
169 Outline outline = new Outline(); local
170 mIconDrawable.getOutline(outline);
171 assertTrue("outline path should be convex", outline.mPath.isConvex());
  /external/python/cpython2/RISCOS/Modules/
drawfmodule.c 152 os_colour outline; local
166 (int*)&outline,&width,(int*)&style,&PyTuple_Type,&dp,&start)) return NULL;
186 dpath->fill=fill;dpath->outline=outline;
  /external/r8/src/main/java/com/android/tools/r8/utils/
InternalOptions.java 81 public final OutlineOptions outline = new OutlineOptions(); field in class:InternalOptions
137 public String methodPrefix = "outline";
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 397 FT_Outline* outline = &face->glyph->outline; local
410 FT_Outline_Translate(outline, dx, dy);
485 FT_Outline_Get_CBox(outline, &bbox);
494 FT_Outline_Translate(outline, dx - ((bbox.xMin + dx) & ~63),
504 FT_Outline_Get_Bitmap(face->glyph->library, outline, &target);
681 FT_Error err = FT_Outline_Decompose(&face->glyph->outline, &funcs, path);
  /packages/apps/Launcher3/src/com/android/launcher3/pageindicators/
PageIndicatorDots.java 27 import android.graphics.Outline;
304 public void getOutline(View view, Outline outline) {
307 outline.setRoundRect(
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 142 // Ensure that the outline is back to showing the current selection, since during
783 // Update outline to show the target node there
784 OutlinePage outline = mCanvas.getOutlinePage(); local
798 ISelection currentSelection = outline.getSelection();
800 outline.setSelection(newSelection);
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/ir/optimize/
Outliner.java 62 private final Map<Outline, List<DexEncodedMethod>> candidates = new HashMap<>();
63 private final Map<Outline, DexMethod> generatedOutlines = new HashMap<>();
71 // Representation of an outline.
72 // This includes the instructions in the outline, and a map from the arguments of this outline
75 // E.g. an outline of two StringBuilder.append(String) calls could look like this:
91 // the outline are taken from the block where they are collected as candidates. The comparison
93 public class Outline implements Comparable<Outline> {
103 // Build an outline over the instructions [start, end[
621 Outline outline = new Outline( local
781 final private Outline outline; field in class:Outliner.OutlineSourceCode
949 private Outline outline; field in class:Outliner.OutlineCode
    [all...]
  /external/freetype/src/autofit/
afcjk.c 160 if ( error || face->glyph->outline.n_points <= 0 )
178 error = af_glyph_hints_reload( hints, &face->glyph->outline );
292 FT_Outline outline; local
398 outline = face->glyph->outline;
399 if ( error || outline.n_points <= 2 )
406 points = outline.points;
416 for ( nn = 0; nn < outline.n_contours; first = last + 1, nn++ )
421 last = outline.contours[nn];
425 /* which are way outside of the glyph's real outline. *
    [all...]
  /external/freetype/src/pshinter/
pshalgo.h 198 FT_Outline* outline; member in struct:PSH_GlyphRec_
230 FT_Outline* outline,
  /external/freetype/src/truetype/
ttgload.c 332 FT_Outline* outline; local
351 cont = gloader->current.outline.contours;
438 outline = &gloader->current.outline;
441 flag = (FT_Byte*)outline->tags;
468 vec = outline->points;
470 flag = (FT_Byte*)outline->tags;
507 vec = gloader->current.outline.points;
509 flag = (FT_Byte*)outline->tags;
541 outline->n_points = (FT_Short)n_points
866 FT_Outline* outline; local
1174 FT_Outline* outline; local
1584 FT_Outline outline; local
1753 FT_Outline outline; local
    [all...]
  /external/pdfium/third_party/freetype/src/pshinter/
pshalgo.h 198 FT_Outline* outline; member in struct:PSH_GlyphRec_
230 FT_Outline* outline,
  /external/pdfium/third_party/freetype/src/truetype/
ttgload.c 331 FT_Outline* outline; local
350 cont = gloader->current.outline.contours;
436 outline = &gloader->current.outline;
439 flag = (FT_Byte*)outline->tags;
466 vec = outline->points;
468 flag = (FT_Byte*)outline->tags;
505 vec = gloader->current.outline.points;
507 flag = (FT_Byte*)outline->tags;
539 outline->n_points = (FT_Short)n_points
852 FT_Outline* outline; local
1150 FT_Outline* outline; local
1534 FT_Outline outline; local
1657 FT_Outline outline; local
    [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...]

Completed in 1261 milliseconds

1 23 4 5