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

1 2

  /external/skia/tests/
PaintTest.cpp 8 SkPath path, stroke; local
25 paint.getFillPath(path, &stroke);
26 strokeR = stroke.getBounds();
35 // test that our stroke didn't explode
  /external/skia/src/core/
SkPathEffect.cpp 101 SkStroke stroke; local
103 stroke.setWidth(fWidth);
104 stroke.setMiterLimit(fMiter);
105 stroke.setJoin((SkPaint::Join)fJoin);
106 stroke.setCap((SkPaint::Cap)fCap);
107 stroke.setDoFill(fStyle == SkPaint::kStrokeAndFill_Style);
109 stroke.strokePath(src, dst);
  /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...]
UserDictionaryToolsList.java 380 wnnWordSearch.stroke = focusPairString.toString();
383 wnnWordSearch.stroke = focusString.toString();
556 delword.stroke = searchword.stroke;
643 UserDictionaryToolsListFocus stroke = new UserDictionaryToolsListFocus(this); local
644 stroke.setId(i);
645 stroke.setWidth(system_width/2);
646 stroke.setTextSize(WORD_TEXT_SIZE);
647 stroke.setTextColor(Color.LTGRAY);
648 stroke.setBackgroundColor(UNFOCUS_BACKGROUND_COLOR)
    [all...]
UserDictionaryToolsEdit.java 77 /** The constant for notifying dialog (The length of specified stroke or candidate exceeds the limit) */
150 mBeforeEditWnnWord.stroke = ((TextView)sFocusingView).getText().toString();
250 String stroke = mReadEditText.getText().toString(); local
252 if (addDictionary(stroke, candidate)) {
262 String stroke = mReadEditText.getText().toString(); local
264 if (addDictionary(stroke, candidate)) {
267 addDictionary(mBeforeEditWnnWord.stroke, mBeforeEditWnnWord.candidate);
334 * @param stroke The stroke of the word
338 private boolean addDictionary(String stroke, String candidate)
    [all...]
OpenWnnJAJP.java 1588 String stroke = mComposingText.toString(ComposingText.LAYER1, 0, mComposingText.getCursor(layer) - 1); local
2252 String stroke = composingText.toString(ComposingText.LAYER1, seg.from, seg.to); local
    [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);
  /external/webkit/Source/WebCore/rendering/svg/
SVGResources.h 60 RenderSVGResourceContainer* stroke() const { return m_fillStrokeData ? m_fillStrokeData->stroke : 0; } function in class:WebCore::SVGResources
153 // stroke: 'shapes' and 'text content elements'
158 , stroke(0)
168 RenderSVGResourceContainer* stroke; member in struct:WebCore::SVGResources::FillStrokeData
  /external/skia/src/animator/
SkDrawPaint.h 62 SkBool stroke; member in class:SkDrawPaint
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontLinux.cpp 118 // We draw text up to two times (once for fill, once for stroke).
192 bool stroke = (textMode & TextModeStroke) local
196 if (!fill && !stroke)
204 if (stroke) {
231 if (stroke) {
  /external/skia/src/svg/
SkSVGParser.cpp 134 bool stroke = false; local
140 stroke = walking->f_stroke.equals("none") == false;
151 return stroke && fill;
  /frameworks/base/core/java/android/gesture/
Gesture.java 38 * Each stroke is a sequence of timed points. A user-defined gesture can be recognized by
70 GestureStroke stroke = mStrokes.get(i); local
71 gesture.mStrokes.add((GestureStroke)stroke.clone());
91 * Adds a stroke to the gesture.
93 * @param stroke
95 public void addStroke(GestureStroke stroke) {
96 mStrokes.add(stroke);
97 mBoundingBox.union(stroke.boundingBox);
195 paint.setStyle(Paint.Style.STROKE);
229 paint.setStyle(Paint.Style.STROKE);
    [all...]
GestureUtils.java 140 final GestureStroke stroke = strokes.get(index); local
141 float[] strokepoints = stroke.points;
261 * Samples a stroke temporally into a given number of evenly-distributed
264 * @param stroke the gesture stroke to be sampled
268 public static float[] temporalSampling(GestureStroke stroke, int numPoints) {
269 final float increment = stroke.length / (numPoints - 1);
273 float[] pts = stroke.points;
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 204 NJ_CHAR *stroke; local
211 stroke = buf;
225 NJ_CHAR_COPY(stroke, area);
226 stroke++;
229 *stroke = NJ_CHAR_NUL;
232 dic_ylen = convert_to_yomi(hdl, area, DATA_YOMI_SIZE(data), stroke, size);
319 NJ_CHAR stroke[NJ_MAX_LEN + NJ_TERM_LEN]; local
335 yomilen = njd_f_get_stroke(word, stroke, sizeof(stroke));
357 NJ_INT16 njd_f_get_stroke(NJ_WORD *word, NJ_CHAR *stroke, NJ_UINT16 size)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
HoverOverlay.java 163 Color stroke = hoverIsSelected ? mHoverSelectStrokeColor : mHoverStrokeColor; local
166 if (stroke != null) {
168 gc.setForeground(stroke);
GCWrapper.java 77 * A map of the {@link SwtDrawingStyle} stroke colors that we have actually
408 RGB stroke = swtStyle.getStrokeColor(); local
409 if (stroke != null) {
410 Color color = getStrokeColor(style, stroke);
428 /** Uses the stroke alpha for subsequent drawing operations. */
439 * Get the SWT stroke color (foreground/border) to use for the given style,
  /external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp 130 QPainterPathStroker stroke; local
135 stroke.setWidth(pen.widthF());
136 stroke.setCapStyle(pen.capStyle());
137 stroke.setJoinStyle(pen.joinStyle());
138 stroke.setMiterLimit(pen.miterLimit());
139 stroke.setDashPattern(pen.dashPattern());
140 stroke.setDashOffset(pen.dashOffset());
142 return stroke.createStroke(m_path).contains(point);
160 QPainterPathStroker stroke; local
165 stroke.setWidth(pen.widthF())
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c 506 NJ_CHAR stroke[ NJ_MAX_LEN + NJ_TERM_LEN ]; local
508 if( njx_get_stroke( &( work->wnnClass ), &( work->result ), stroke, sizeof( NJ_CHAR ) * ( NJ_MAX_LEN + NJ_TERM_LEN ) ) >= 0 &&
509 convertNjCharToString( env, &str, stroke, NJ_MAX_LEN ) >= 0 ) {
854 (JNIEnv *env, jclass obj, jlong wnnWork, jstring stroke)
858 if( stroke == NULL ) {
865 if( ( *env )->GetStringLength( env, stroke ) > NJ_MAX_LEN ) {
870 /* Store stroke string */
871 if( convertStringToNjChar( env, work->previousStroke, stroke, NJ_MAX_LEN ) >= 0 ) {
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 90 final int stroke = a.getColor(R.styleable.ChartNetworkSeriesView_strokeColor, Color.RED); local
95 setChartColor(stroke, fill, fillSecondary);
110 public void setChartColor(int stroke, int fill, int fillSecondary) {
113 mPaintStroke.setColor(stroke);
114 mPaintStroke.setStyle(Style.STROKE);
130 mPaintEstimate.setStyle(Style.STROKE);
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 33 * This Graphics2D allows to fix some basic settings (Color, Font, Paint, Stroke,
47 private Stroke overrideStroke;
53 private Stroke stroke; field in class:OverrideGraphics2D
66 this.stroke = graphics.getStroke();
104 * Fixes the Stroke of the Graphics2D.
106 * @param stroke the fixed Stroke, or <code>null</code> to undo the fixing.
108 public void setOverrideStroke(Stroke stroke)
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 920 void CanvasRenderingContext2D::stroke() function in class:WebCore::CanvasRenderingContext2D
930 // Fast approximation of the stroke's bounding rect.
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
FontAndroid.cpp 150 // stroke the shadow if we have stroke but no fill
1019 bool stroke = mode & TextModeStroke; local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint_Delegate.java 31 import java.awt.Stroke;
142 * returns the value of stroke miter needed by the java api.
176 public Stroke getJavaStroke() {
179 Stroke stroke = mPathEffect.getStroke(this); local
180 assert stroke != null;
181 if (stroke != null) {
182 return stroke;
191 // if no custom stroke as been set, set the default one.
766 Stroke stroke = paint.getJavaStroke() local
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp 582 // Make the text stroke color legible against a white background
588 // Make the text stroke color legible against a white background
632 Color stroke = paintInfo.forceBlackText ? Color::black : pseudoStyle->visitedDependentColor(CSSPropertyWebkitTextStrokeColor); local
633 if (stroke != selectionStrokeColor) {
636 selectionStrokeColor = stroke;
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 161 if (!(stroke->opacity == obj))
162 stroke.access()->opacity = obj;
167 if (!(stroke->paint == obj))
168 stroke.access()->paint = obj;
173 if (!(stroke->dashArray == obj))
174 stroke.access()->dashArray = obj;
179 if (!(stroke->miterLimit == obj))
180 stroke.access()->miterLimit = obj;
185 if (!(stroke->width == obj))
186 stroke.access()->width = obj
387 DataRef<StyleStrokeData> stroke; member in class:WebCore::SVGRenderStyle
    [all...]

Completed in 558 milliseconds

1 2