HomeSort by relevance Sort by last modified time
    Searched refs:stroke (Results 1 - 25 of 187) sorted by null

1 2 3 4 5 6 7 8

  /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...]
  /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,
WnnSentence.java 42 this.stroke = "";
53 this.stroke = input;
68 this.stroke = input;
85 this.stroke = input;
103 this.stroke = prev.stroke + clause.stroke;
124 this.stroke = head.stroke;
134 this.stroke = head.stroke + tail.stroke
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrAAConvexPathRenderer.h 17 const SkStrokeRec& stroke,
23 const SkStrokeRec& stroke,
GrPathRenderer.h 82 * @param stroke the stroke information (width, join, cap).
85 const SkStrokeRec& stroke,
88 return this->onGetStencilSupport(path, stroke, target);
97 * @param stroke The stroke information (width, join, cap)
112 * @param stroke the stroke information (width, join, cap)
117 const SkStrokeRec& stroke,
121 GrAssert(this->canDrawPath(path, stroke, target, antiAlias))
    [all...]
GrStencilAndCoverPathRenderer.cpp 38 const SkStrokeRec& stroke,
41 return stroke.isFillStyle() &&
54 const SkStrokeRec& stroke,
58 target->stencilPath(p, stroke, path.getFillType());
62 const SkStrokeRec& stroke,
66 GrAssert(!stroke.isHairlineStyle());
74 target->stencilPath(p, stroke, nonInvertedFill);
GrAAHairLinePathRenderer.h 21 const SkStrokeRec& stroke,
31 const SkStrokeRec& stroke,
  /external/skia/src/gpu/
GrAAConvexPathRenderer.h 17 const SkStrokeRec& stroke,
23 const SkStrokeRec& stroke,
GrPathRenderer.h 82 * @param stroke the stroke information (width, join, cap).
85 const SkStrokeRec& stroke,
88 return this->onGetStencilSupport(path, stroke, target);
97 * @param stroke The stroke information (width, join, cap)
112 * @param stroke the stroke information (width, join, cap)
117 const SkStrokeRec& stroke,
121 GrAssert(this->canDrawPath(path, stroke, target, antiAlias))
    [all...]
GrStencilAndCoverPathRenderer.cpp 38 const SkStrokeRec& stroke,
41 return stroke.isFillStyle() &&
54 const SkStrokeRec& stroke,
58 target->stencilPath(p, stroke, path.getFillType());
62 const SkStrokeRec& stroke,
66 GrAssert(!stroke.isHairlineStyle());
74 target->stencilPath(p, stroke, nonInvertedFill);
GrAAHairLinePathRenderer.h 21 const SkStrokeRec& stroke,
31 const SkStrokeRec& stroke,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.cpp 43 stroke = defaultStyle->stroke;
58 stroke.init();
70 stroke = other.stroke;
88 && stroke == other.stroke
101 || stroke != other->stroke
113 stroke = svgInheritParent->stroke
    [all...]
SVGRenderStyle.h 173 if (!(stroke->opacity == obj))
174 stroke.access()->opacity = obj;
180 if (!(stroke->paintType == type))
181 stroke.access()->paintType = type;
182 if (!(stroke->paintColor == color))
183 stroke.access()->paintColor = color;
184 if (!(stroke->paintUri == uri))
185 stroke.access()->paintUri = uri;
188 if (!(stroke->visitedLinkPaintType == type))
189 stroke.access()->visitedLinkPaintType = type
423 DataRef<StyleStrokeData> stroke; member in class:WebCore::SVGRenderStyle
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrOvalRenderer.h 36 const SkRect& oval, const SkStrokeRec& stroke);
38 const SkRRect& rrect, const SkStrokeRec& stroke);
43 const SkStrokeRec& stroke);
46 const SkStrokeRec& stroke);
  /external/skia/include/gpu/
GrOvalRenderer.h 36 const SkRect& oval, const SkStrokeRec& stroke);
38 const SkRRect& rrect, const SkStrokeRec& stroke);
43 const SkStrokeRec& stroke);
46 const SkStrokeRec& stroke);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
vg_state.c 53 /* Stroke parameters */
54 state->stroke.line_width.f = 1.0f;
55 state->stroke.line_width.i = 1;
56 state->stroke.cap_style = VG_CAP_BUTT;
57 state->stroke.join_style = VG_JOIN_MITER;
58 state->stroke.miter_limit.f = 4.0f;
59 state->stroke.miter_limit.i = 4;
60 state->stroke.dash_pattern_num = 0;
61 state->stroke.dash_phase.f = 0.0f;
62 state->stroke.dash_phase.i = 0
    [all...]
arc.h 72 struct stroker *stroke,
76 struct stroker *stroke,
  /external/mesa3d/src/gallium/state_trackers/vega/
vg_state.c 53 /* Stroke parameters */
54 state->stroke.line_width.f = 1.0f;
55 state->stroke.line_width.i = 1;
56 state->stroke.cap_style = VG_CAP_BUTT;
57 state->stroke.join_style = VG_JOIN_MITER;
58 state->stroke.miter_limit.f = 4.0f;
59 state->stroke.miter_limit.i = 4;
60 state->stroke.dash_pattern_num = 0;
61 state->stroke.dash_phase.f = 0.0f;
62 state->stroke.dash_phase.i = 0
    [all...]
arc.h 72 struct stroker *stroke,
76 struct stroker *stroke,
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
popup.css 78 stroke-width: 6;
83 stroke: brown;
85 stroke-width: 3;
90 stroke-width: 3;
96 stroke: black;
126 stroke: blue;
128 stroke-width: 7;
140 stroke-width: 5;
144 stroke-width: 7;
145 stroke: red
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStorageTester.java 41 GestureStroke stroke = new LineGestureStrokeHelper().createLineGesture(); local
43 mLineGesture.addStroke(stroke);
45 mAnotherGesture.addStroke(stroke);
71 GestureStroke stroke = new LineGestureStrokeHelper().createLineGesture(); local
72 newLineGesture.addStroke(stroke);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
UserDictionaryToolsListEN.java 72 return word1.stroke.compareTo(word2.stroke);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
UserDictionaryToolsListJAJP.java 69 return word1.stroke.compareTo(word2.stroke);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGResources.h 63 RenderSVGResourceContainer* stroke() const { return m_fillStrokeData ? m_fillStrokeData->stroke : 0; } function in class:WebCore::SVGResources
152 // stroke: 'shapes' and 'text content elements'
159 , stroke(0)
169 RenderSVGResourceContainer* stroke; member in struct:WebCore::SVGResources::FillStrokeData

Completed in 242 milliseconds

1 2 3 4 5 6 7 8