HomeSort by relevance Sort by last modified time
    Searched refs:miter (Results 1 - 11 of 11) sorted by null

  /external/skia/tests/
PaintTest.cpp 29 SkScalar miter = SkMaxScalar(SK_Scalar1, paint.getStrokeMiter()); local
31 SkScalarMul(paint.getStrokeWidth(), miter) :
  /external/skia/src/core/
SkPathEffect.cpp 82 SkPaint::Join join, SkPaint::Cap cap, SkScalar miter)
83 : fWidth(width), fMiter(miter), fStyle(SkToU8(style)),
85 if (miter < 0) { // signal they want the default
  /frameworks/base/libs/hwui/
ShapeCache.h 93 miter = *(uint32_t*) &v;
104 miter = *(uint32_t*) &v;
118 uint32_t miter; member in struct:android::uirenderer::ShapeCacheEntry
127 LTE_INT(miter) {
  /external/webkit/Source/WebKit/android/plugins/
ANPPaintInterface.cpp 83 static void anp_setStrokeMiter(ANPPaint* paint, float miter) {
84 paint->setStrokeMiter(SkFloatToScalar(miter));
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint_Delegate.java 142 * returns the value of stroke miter needed by the java api.
145 float miter = mStrokeMiter * mStrokeWidth; local
146 if (miter < 1.f) {
147 miter = 1.f;
149 return miter;
167 case MITER:
408 /*package*/ static void setStrokeMiter(Paint thisPaint, float miter) {
415 delegate.mStrokeMiter = miter;
    [all...]
  /external/skia/include/core/
SkPaint.h 346 /** Return the paint's stroke miter value. This is used to control the
347 behavior of miter joins when the joins angle is sharp.
348 @return the paint's miter limit, used whenever the paint's style is
353 /** Set the paint's stroke miter value. This is used to control the
354 behavior of miter joins when the joins angle is sharp. This value must
356 @param miter set the miter limit on the paint, used whenever the
359 void setStrokeMiter(SkScalar miter);
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
map.h 792 typename Map::iterator miter = map_.find(w1); local
793 if (miter != map_.end()) {
794 l = (*miter).second;
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 1020 void GraphicsContext::setMiterLimit(float miter)
1025 cairo_set_miter_limit(platformContext()->cr(), miter);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 196 static void setStrokeMiter(JNIEnv* env, jobject paint, jfloat miter) {
198 GraphicsJNI::getNativePaint(env, paint)->setStrokeMiter(SkFloatToScalar(miter));
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 80 Join.MITER, Join.ROUND, Join.BEVEL
284 * join on a stroked path. The default is MITER.
290 MITER (0),
728 * Return the paint's stroke miter value. Used to control the behavior
729 * of miter joins when the joins angle is sharp.
731 * @return the paint's miter limit, used whenever the paint's style is
737 * Set the paint's stroke miter value. This is used to control the behavior
738 * of miter joins when the joins angle is sharp. This value must be >= 0.
740 * @param miter set the miter limit on the paint, used whenever the paint'
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp     [all...]

Completed in 566 milliseconds