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

  /external/skia/src/core/
SkPathEffect.cpp 80 SkPaint::Join join, SkPaint::Cap cap, SkScalar miter)
81 : fWidth(width), fMiter(miter), fStyle(SkToU8(style)),
83 if (miter < 0) { // signal they want the default
  /external/skia/tests/
PaintTest.cpp 90 SkScalar miter = SkMaxScalar(SK_Scalar1, paint.getStrokeMiter()); local
92 SkScalarMul(paint.getStrokeWidth(), 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/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) {
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint_Delegate.java 145 * returns the value of stroke miter needed by the java api.
148 float miter = mStrokeMiter * mStrokeWidth; local
149 if (miter < 1.f) {
150 miter = 1.f;
152 return miter;
170 case MITER:
413 /*package*/ static void setStrokeMiter(Paint thisPaint, float miter) {
420 delegate.mStrokeMiter = miter;
    [all...]
  /external/skia/include/core/
SkPaint.h 361 /** Return the paint's stroke miter value. This is used to control the
362 behavior of miter joins when the joins angle is sharp.
363 @return the paint's miter limit, used whenever the paint's style is
368 /** Set the paint's stroke miter value. This is used to control the
369 behavior of miter joins when the joins angle is sharp. This value must
371 @param miter set the miter limit on the paint, used whenever the
374 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/openfst/src/include/fst/
arc-map.h 903 typename Map::iterator miter = map_.find(w1); local
904 if (miter != map_.end()) {
905 l = (*miter).second;
    [all...]
  /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 84 Join.MITER, Join.ROUND, Join.BEVEL
288 * join on a stroked path. The default is MITER.
294 MITER (0),
737 * Return the paint's stroke miter value. Used to control the behavior
738 * of miter joins when the joins angle is sharp.
740 * @return the paint's miter limit, used whenever the paint's style is
746 * Set the paint's stroke miter value. This is used to control the behavior
747 * of miter joins when the joins angle is sharp. This value must be >= 0.
749 * @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 655 milliseconds