/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/ |
SelectionRenderer.java | 25 int stroke, Paint paint) { 26 canvas.drawRect(left, top, right, top + stroke, paint); 27 canvas.drawRect(left, bottom - stroke, right, bottom, paint); 28 canvas.drawRect(left, top, left + stroke, bottom, paint); 29 canvas.drawRect(right - stroke, top, right, bottom, paint); 33 int stroke, Paint selectPaint, int border, Paint borderPaint) { 34 canvas.drawRect(left, top, right, top + stroke, selectPaint); 35 canvas.drawRect(left, bottom - stroke, right, bottom, selectPaint); 36 canvas.drawRect(left, top, left + stroke, bottom, selectPaint); 37 canvas.drawRect(right - stroke, top, right, bottom, selectPaint) [all...] |
/external/autotest/client/cros/multimedia/calibration_images/ |
template-1680x1052.svg | 493 style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.54100025;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" 498 style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.54100025;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0 [all...] |
/external/ImageMagick/www/source/ |
piechart.mvg | 7 stroke 'blue' 8 stroke-width 1 14 stroke-width 1 19 stroke 'black' 20 stroke-width 5 26 stroke-width 1 32 stroke-width 1 37 stroke 'black' 38 stroke-width 4 43 stroke 'black [all...] |
piechart.svg | 6 <rect x='1' y='1' width='2198' height='1298' style='fill:darkslateblue; stroke:blue; stroke-width:1'/> 7 <text style='font-size: 40; fill: white; stroke-width: 1' x='600' y='1100'>Average: 20.0</text> 8 <path d='M700.0,600.0 L340.0,600.0 A360.0,360.0 0 0,1 408.1452123287954,389.2376150414973 z' style='fill:red; stroke:black; stroke-width:5'/> 9 <text style='font-size: 40; fill: white; stroke-width: 1' x='1400' y='140'>MagickWand for PHP</text> 10 <text style='font-size: 30; fill: white; stroke-width: 1' x='1800' y='140'>(10.0%)</text> 11 <rect x='1330' y='100' width='40' height='40' style='fill:red; stroke:black; stroke-width:4'/> 12 <path d='M700.0,600.0 L408.1452123287954,389.2376150414973 A360.0,360.0 0 0,1 976.5894480359858,369.56936567559273 z' style='fill:yellow; stroke:black; stroke-width:5'/ [all...] |
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/ |
laptop.svg | [all...] |
ap.svg | 529 style="fill:#606060;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 534 style="fill:#dddddd;fill-opacity:1;fill-rule:evenodd;stroke:#b2b2b2;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1 [all...] |
/external/dbus/doc/ |
diagram.svg | 31 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;" 46 style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" 101 style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000; [all...] |
/external/ImageMagick/www/Magick++/ |
Cache.svg | 7 <rect x="0" y="0" width="1" height="1" style="stroke:none;fill:white;"/> 8 <g transform="translate(-0.03125,1.1875) scale(1,-1) scale(0.0017361) " xml:space="preserve" style="stroke:black;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;fill:none;fill-rule:even-odd;fill-opacity:1;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size-adjust:none;letter-spacing:normal;word-spacing:normal;text-anchor:start;"> 9 <polygon points="0.99976,1.0002 253,1.0002 253,217 0.99976,217 " style="stroke:white;stroke-width:0;fill:white;"/ [all...] |
/external/skia/src/gpu/ |
GrOvalRenderer.h | 28 const SkStrokeRec& stroke, 33 const SkStrokeRec& stroke, 42 const SkStrokeRec& stroke); 46 const SkStrokeRec& stroke); 50 const SkStrokeRec& stroke);
|
GrPath.h | 20 * Initialize to a path with a fixed stroke. Stroke must not be hairline. 22 GrPath(GrGpu* gpu, const SkPath& skPath, const GrStrokeInfo& stroke) 28 , fStroke(stroke) 33 static void ComputeKey(const SkPath& path, const GrStrokeInfo& stroke, GrUniqueKey* key, 40 bool isEqualTo(const SkPath& path, const GrStrokeInfo& stroke) const;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/ |
DurationCountClassifier.java | 20 * A classifier which looks at the ratio between the duration of the stroke and its number of 33 public float getFalseTouchEvaluation(int type, Stroke stroke) { 34 return DurationCountEvaluator.evaluate(stroke.getDurationSeconds() / stroke.getCount());
|
EndPointRatioClassifier.java | 20 * A classifier which looks at the ratio between the total length covered by the stroke and the 21 * distance between the first and last point from this stroke. 34 public float getFalseTouchEvaluation(int type, Stroke stroke) { 36 if (stroke.getTotalLength() == 0.0f) { 39 ratio = stroke.getEndPointLength() / stroke.getTotalLength();
|
EndPointLengthClassifier.java | 20 * A classifier which looks at the distance between the first and the last point from the stroke. 32 public float getFalseTouchEvaluation(int type, Stroke stroke) { 33 return EndPointLengthEvaluator.evaluate(stroke.getEndPointLength());
|
DirectionClassifier.java | 20 * A classifier which looks at the general direction of a stroke and evaluates it depending on 33 public float getFalseTouchEvaluation(int type, Stroke stroke) { 34 Point firstPoint = stroke.getPoints().get(0); 35 Point lastPoint = stroke.getPoints().get(stroke.getPoints().size() - 1);
|
SpeedClassifier.java | 20 * A classifier that looks at the speed of the stroke. It calculates the speed of a stroke in 35 public float getFalseTouchEvaluation(int type, Stroke stroke) { 36 float duration = (float) stroke.getDurationNanos() / NANOS_TO_SECONDS; 40 return SpeedEvaluator.evaluate(stroke.getTotalLength() / duration);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnWord.java | 30 public String stroke; field in class:WnnWord 49 * @param stroke The reading of word 51 public WnnWord(String candidate, String stroke) { 52 this(0, candidate, stroke, new WnnPOS(), 0, 0); 59 * @param stroke The reading of word 62 public WnnWord(String candidate, String stroke, int frequency) { 63 this(0, candidate, stroke, new WnnPOS(), frequency, 0); 70 * @param stroke The reading of word 73 public WnnWord(String candidate, String stroke, WnnPOS posTag) { 74 this(0, candidate, stroke, posTag, 0, 0) [all...] |
WnnClause.java | 30 * @param stroke The reading of the clause 34 public WnnClause(String candidate, String stroke, WnnPOS posTag, int frequency) { 36 stroke, 44 * @param stroke The reading of the clause 47 public WnnClause (String stroke, WnnWord stem) { 50 stroke, 59 * @param stroke The reading of the clause 63 public WnnClause (String stroke, WnnWord stem, WnnWord fzk) { 66 stroke,
|
/external/ImageMagick/PerlMagick/demo/ |
piddle.pl | 16 $image->Draw(primitive=>'line',points=>"$i,0 $i,300",stroke=>"#ccf"); 17 $image->Draw(primitive=>'line',points=>"0,$i 300,$i",stroke=>"#ccf"); 22 $image->Draw(primitive=>'RoundRectangle',fill=>'blue',stroke=>'maroon', 28 fill=>'none',stroke=>'black',strokewidth=>4); 32 $image->Draw(primitive=>'line',points=>"10,200 20,190",stroke=>red); 36 $image->Draw(primitive=>'circle',stroke=>'none',fill=>'yellow',, 38 $image->Draw(primitive=>'Path',stroke=>'none',fill=>'blue',strokewidth=>4, 40 $image->Draw(primitive=>'circle',stroke=>'black',fill=>'none',strokewidth=>4, 46 points=>"160,120 130,190 210,145 110,145 190,190 160,120",stroke=>red, 51 $image->Draw(primitive=>'line',points=>'200,260 200,200',stroke=>yellow [all...] |
/external/opencv3/doc/py_tutorials/py_imgproc/py_houghlines/images/ |
houghlines1.svg | 45 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" 95 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" 109 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" 123 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" 136 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round [all...] |
/external/skia/gm/ |
arcto.cpp | 17 <path d="M 50,100 A50,50, 0,0,1, 150,200" style="stroke:#660000; fill:none; stroke-width:2" /> 18 <path d="M100,100 A50,100, 0,0,1, 200,200" style="stroke:#660000; fill:none; stroke-width:2" /> 19 <path d="M150,100 A50,50, 45,0,1, 250,200" style="stroke:#660000; fill:none; stroke-width:2" /> 20 <path d="M200,100 A50,100, 45,0,1, 300,200" style="stroke:#660000; fill:none; stroke-width:2" /> 22 <path d="M150,200 A50,50, 0,1,0, 150,300" style="stroke:#660000; fill:none; stroke-width:2" / [all...] |
/frameworks/base/docs/html/images/media/ |
mediacodec_buffers.svg | 17 <path d="M -2.16 0 L 0 .81 L 0 -.81 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> 21 <g stroke="none" stroke-opacity="1" stroke-dasharray="none" fill="none" fill-opacity="1"> 24 <line x1="291" y1="20" x2="290" y2="220" stroke="#535353" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke-dasharray="4,4"/ [all...] |
mediacodec_async_states.svg | 7 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> 12 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> 17 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> 22 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> 37 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/ [all...] |
mediacodec_states.svg | 7 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> 12 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> 17 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> 22 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> 37 <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/ [all...] |
/external/skia/experimental/c-api-example/ |
skia-c-example.c | 48 sk_paint_t* stroke = sk_paint_new(); local 49 sk_paint_set_color(stroke, sk_color_set_argb(0xFF, 0xFF, 0x00, 0x00)); 50 sk_paint_set_antialias(stroke, true); 51 sk_paint_set_stroke(stroke, true); 52 sk_paint_set_stroke_width(stroke, 5.0f); 59 sk_canvas_draw_path(canvas, path, stroke); 70 sk_paint_delete(stroke);
|
/external/v8/tools/turbolizer/ |
turbo-visualizer.css | 84 stroke: #080808; 85 stroke-width: 2px; 98 stroke: #080808; 99 stroke-width: 5px; 125 stroke: #080808; 126 stroke-width: 2px; 130 stroke-width: 3px; 135 stroke: #080808; 136 stroke-width: 2px; 141 stroke-width: 3px [all...] |