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

1 2 3 4

  /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 408 wnnWordSearch.stroke = focusPairString.toString();
411 wnnWordSearch.stroke = focusString.toString();
585 delword.stroke = searchword.stroke;
678 UserDictionaryToolsListFocus stroke = new UserDictionaryToolsListFocus(this); local
679 stroke.setId(i);
680 stroke.setWidth(system_width/2);
681 stroke.setTextSize(WORD_TEXT_SIZE);
682 stroke.setTextColor(Color.LTGRAY);
683 stroke.setBackgroundColor(UNFOCUS_BACKGROUND_COLOR)
    [all...]
UserDictionaryToolsEdit.java 77 /** The constant for notifying dialog (The length of specified stroke or candidate exceeds the limit) */
149 mBeforeEditWnnWord.stroke = ((TextView)sFocusingView).getText().toString();
249 String stroke = mReadEditText.getText().toString(); local
251 if (addDictionary(stroke, candidate)) {
261 String stroke = mReadEditText.getText().toString(); local
263 if (addDictionary(stroke, candidate)) {
266 addDictionary(mBeforeEditWnnWord.stroke, mBeforeEditWnnWord.candidate);
333 * @param stroke The stroke of the word
337 private boolean addDictionary(String stroke, String candidate)
    [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/skia/include/device/xps/
SkXPSDevice.h 236 BOOL stroke, BOOL fill,
241 BOOL stroke, BOOL fill, member in class:SkXPSDevice
264 BOOL stroke, BOOL fill, const SkPath& path);
298 BOOL* fill, BOOL* stroke);
  /external/skia/gm/
shadertext2.cpp 180 SkPaint stroke; variable
181 stroke.setStyle(SkPaint::kStroke_Style);
image.cpp 42 SkScalar stroke = size.fWidth / 10; local
43 SkScalar radius = (size.fWidth - stroke) / 2;
52 paint.setStrokeWidth(stroke);
poly2poly.cpp 27 void stroke();
66 void SkJSCanvas::stroke() { function in class:SkJSCanvas
121 ctx.stroke();
127 // TEST 2 - Includes an extra moveTo call before stroke; the rectangle appears larger
146 ctx.stroke();
171 ctx.stroke();
multipicturedraw.cpp 53 SkPaint stroke; local
54 stroke.setStyle(SkPaint::kStroke_Style);
55 stroke.setStrokeWidth(3);
74 canvas->drawPath(hex, stroke);
103 SkPaint stroke; local
104 stroke.setStyle(SkPaint::kStroke_Style);
105 stroke.setStrokeWidth(3);
128 canvas->drawPath(hex, stroke);
159 SkPaint stroke; local
160 stroke.setStyle(SkPaint::kStroke_Style)
    [all...]
  /external/skia/src/animator/
SkDrawPaint.h 54 SkBool stroke; member in class:SkDrawPaint
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterDrawRepresentation.java 126 return "stroke(" + mType + ", path(" + (mPath) + "), " + mRadius + " , "
354 StrokeData stroke = new StrokeData(); local
359 stroke.mColor = sreader.nextInt();
361 stroke.mRadius = (float) sreader.nextDouble();
363 stroke.mType = (byte) sreader.nextInt();
365 stroke.noPoints = sreader.nextInt();
371 if ((count + 1) > stroke.mPoints.length) {
372 stroke.mPoints = Arrays.copyOf(stroke.mPoints, count * 2);
374 stroke.mPoints[count++] = (float) sreader.nextDouble()
    [all...]
ImageFilterDraw.java 119 paint.setStyle(Style.STROKE);
165 paint.setStyle(Style.STROKE);
228 paint.setStyle(Style.STROKE);
260 StrokeData stroke = mParameters.getCurrentDrawing(); local
261 if (stroke != null) {
262 paint(stroke, canvas, originalRotateToScreen, quality);
  /external/mesa3d/src/gallium/state_trackers/vega/
vg_state.h 58 /* Stroke parameters */
68 } stroke; member in struct:vg_state
  /external/skia/src/gpu/gl/
GrGLPathRendering.cpp 94 GrPath* GrGLPathRendering::createPath(const SkPath& inPath, const SkStrokeRec& stroke) {
95 return SkNEW_ARGS(GrGLPath, (fGpu, inPath, stroke));
99 const SkStrokeRec& stroke) {
100 return SkNEW_ARGS(GrGLPathRange, (fGpu, pathGenerator, stroke));
105 const SkStrokeRec& stroke) {
107 return GrPathRendering::createGlyphs(typeface, desc, stroke);
120 return GrPathRendering::createGlyphs(typeface, NULL, stroke);
134 SkAutoTUnref<GrGLPath> templatePath(SkNEW_ARGS(GrGLPath, (fGpu, SkPath(), stroke)));
144 return GrPathRendering::createGlyphs(typeface, NULL, stroke);
151 return SkNEW_ARGS(GrGLPathRange, (fGpu, basePathID, numPaths, gpuMemorySize, stroke));
160 const SkStrokeRec& stroke = path->getStroke(); local
180 const SkStrokeRec& stroke = path->getStroke(); local
207 const SkStrokeRec& stroke = pathRange->getStroke(); local
    [all...]
  /external/skia/src/svg/parser/
SkSVGParser.cpp 128 bool stroke = false; local
134 stroke = walking->f_stroke.equals("none") == false;
145 return stroke && fill;
  /external/skia/tests/
PaintTest.cpp 174 SkPath path, stroke; local
191 paint.getFillPath(path, &stroke);
192 strokeR = stroke.getBounds();
201 // test that our stroke didn't explode
  /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);
  /external/skia/src/core/
SkRecordDraw.cpp 446 SkScalar stroke = SkMaxScalar(op.paint.getStrokeWidth(), 0.01f); local
447 dst.outset(stroke/2, stroke/2);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrailDrawingPoints.java 34 * stroke. This class holds drawing points of those gesture strokes to draw as a gesture trail.
72 public void addStroke(final GestureStrokeDrawingPoints stroke, final long downTime) {
74 addStrokeLocked(stroke, downTime);
78 private void addStrokeLocked(final GestureStrokeDrawingPoints stroke, final long downTime) {
80 stroke.appendPreviewStroke(mEventTimes, mXCoordinates, mYCoordinates, mPointTypes);
85 final int strokeId = stroke.getGestureStrokeId();
87 // the interpolated points in the last segment of gesture stroke, it may need recalculation
88 // of interpolation when new segments are added to the stroke.
96 mLastInterpolatedDrawIndex = stroke.interpolateStrokeAndReturnStartIndexOfLastSegment(
247 // The start index of the last segment of the stroke
    [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...]
  /external/skia/src/gpu/
GrAAConvexTessellator.cpp 763 static void draw_point(SkCanvas* canvas, const SkPoint& p, SkScalar paramValue, bool stroke) {
771 if (stroke) {
772 SkPaint stroke; local
773 stroke.setColor(SK_ColorYELLOW);
774 stroke.setStyle(SkPaint::kStroke_Style);
775 stroke.setStrokeWidth(kPointRadius/3.0f);
776 canvas->drawCircle(p.fX, p.fY, kPointRadius, stroke);
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 92 final int stroke = a.getColor(R.styleable.ChartNetworkSeriesView_strokeColor, Color.RED); local
99 setChartColor(stroke, fill, fillSecondary);
115 public void setChartColor(int stroke, int fill, int fillSecondary) {
118 mPaintStroke.setColor(stroke);
119 mPaintStroke.setStyle(Style.STROKE);
135 mPaintEstimate.setStyle(Style.STROKE);

Completed in 1052 milliseconds

1 2 3 4