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

  /external/skia/tests/
PaintTest.cpp 212 SkScalar miter = SkMaxScalar(SK_Scalar1, paint.getStrokeMiter()); local
214 SkScalarMul(paint.getStrokeWidth(), miter) :
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint_Delegate.java 144 * returns the value of stroke miter needed by the java api.
147 float miter = mStrokeMiter * mStrokeWidth; local
148 if (miter < 1.f) {
149 miter = 1.f;
151 return miter;
169 case MITER:
412 /*package*/ static void setStrokeMiter(Paint thisPaint, float miter) {
419 delegate.mStrokeMiter = miter;
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_test.cc 1911 Iterator* miter = model->NewIterator(options); local
    [all...]
  /frameworks/base/libs/hwui/
PathCache.cpp 48 miter(4.0f),
59 miter(paint->getStrokeMiter()),
70 hash = JenkinsHashMix(hash, android::hash_type(miter));
PathCache.h 114 float miter; member in struct:android::uirenderer::PathDescription
  /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 901 typename Map::iterator miter = map_.find(w1); local
902 if (miter != map_.end()) {
903 l = (*miter).second;
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkPaint.h 407 /** Return the paint's stroke miter value. This is used to control the
408 behavior of miter joins when the joins angle is sharp.
409 @return the paint's miter limit, used whenever the paint's style is
414 /** Set the paint's stroke miter value. This is used to control the
415 behavior of miter joins when the joins angle is sharp. This value must
417 @param miter set the miter limit on the paint, used whenever the
420 void setStrokeMiter(SkScalar miter);
    [all...]
  /external/skia/include/core/
SkPaint.h 407 /** Return the paint's stroke miter value. This is used to control the
408 behavior of miter joins when the joins angle is sharp.
409 @return the paint's miter limit, used whenever the paint's style is
414 /** Set the paint's stroke miter value. This is used to control the
415 behavior of miter joins when the joins angle is sharp. This value must
417 @param miter set the miter limit on the paint, used whenever the
420 void setStrokeMiter(SkScalar miter);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 202 static void setStrokeMiter(JNIEnv* env, jobject paint, jfloat miter) {
204 GraphicsJNI::getNativePaint(env, paint)->setStrokeMiter(SkFloatToScalar(miter));
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 84 Join.MITER, Join.ROUND, Join.BEVEL
386 * join on a stroked path. The default is MITER.
392 MITER (0),
855 * Return the paint's stroke miter value. Used to control the behavior
856 * of miter joins when the joins angle is sharp.
858 * @return the paint's miter limit, used whenever the paint's style is
864 * Set the paint's stroke miter value. This is used to control the behavior
865 * of miter joins when the joins angle is sharp. This value must be >= 0.
867 * @param miter set the miter limit on the paint, used whenever the paint'
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]

Completed in 412 milliseconds