HomeSort by relevance Sort by last modified time
    Searched full:miter (Results 1 - 25 of 36) sorted by null

1 2

  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_JoinTest.java 37 assertEquals(Join.MITER, Join.valueOf("MITER"));
63 assertEquals(Join.MITER, actual[0]);
71 assertEquals(Join.MITER, p.getStrokeJoin());
PaintTest.java 410 p.setStrokeJoin(Join.MITER);
411 assertEquals(Join.MITER, p.getStrokeJoin());
    [all...]
  /external/skia/tests/
PaintTest.cpp 25 SkScalar miter = SkMaxScalar(SK_Scalar1, paint.getStrokeMiter()); local
27 SkScalarMul(paint.getStrokeWidth(), miter) :
  /external/skia/src/core/
SkPathEffect.cpp 84 SkStrokePathEffect::SkStrokePathEffect(SkScalar width, SkPaint::Style style, SkPaint::Join join, SkPaint::Cap cap, SkScalar miter)
85 : fWidth(width), fMiter(miter), fStyle(SkToU8(style)), fJoin(SkToU8(join)), fCap(SkToU8(cap))
87 if (miter < 0) // signal they want the default
  /external/stlport/test/unit/
hash_test.cpp 222 for (mapType::iterator mIter = m.begin(); mIter != m.end(); mIter++) {
224 if (mIter->first != lastKey) {
225 cout << endl << "Key : " << mIter->first << endl;
226 lastKey = mIter->first;
230 pair<hashType::iterator,hashType::iterator> range = h.equal_range(mIter->first);
239 cout << mIter->second << ", " ; // print all data for that key in Map
  /external/webkit/WebCore/platform/graphics/
GraphicsTypes.cpp 96 if (s == "miter") {
115 const char* const names[3] = { "miter", "round", "bevel" };
  /ndk/tests/device/test-gnustl-full/unit/
hash_test.cpp 222 for (mapType::iterator mIter = m.begin(); mIter != m.end(); mIter++) {
224 if (mIter->first != lastKey) {
225 cout << endl << "Key : " << mIter->first << endl;
226 lastKey = mIter->first;
230 pair<hashType::iterator,hashType::iterator> range = h.equal_range(mIter->first);
239 cout << mIter->second << ", " ; // print all data for that key in Map
  /ndk/tests/device/test-stlport/unit/
hash_test.cpp 222 for (mapType::iterator mIter = m.begin(); mIter != m.end(); mIter++) {
224 if (mIter->first != lastKey) {
225 cout << endl << "Key : " << mIter->first << endl;
226 lastKey = mIter->first;
230 pair<hashType::iterator,hashType::iterator> range = h.equal_range(mIter->first);
239 cout << mIter->second << ", " ; // print all data for that key in Map
  /external/webkit/WebCore/css/
SVGCSSValueKeywords.in 234 miter
SVGCSSParser.cpp 111 case CSSPropertyStrokeLinejoin: // miter | round | bevel | inherit
  /external/webkit/WebKit/android/plugins/
ANPPaintInterface.cpp 83 static void anp_setStrokeMiter(ANPPaint* paint, float miter) {
84 paint->setStrokeMiter(SkFloatToScalar(miter));
  /system/extras/tests/sdcard/
testcase.cpp 44 mChunkSize(mDataSize), mIter(20), mNproc(1),
144 mIter = iter;
testcase.h 57 size_t iter() const { return mIter; }
128 size_t mIter;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint_Delegate.java 139 * returns the value of stroke miter needed by the java api.
142 float miter = mStrokeMiter * mStrokeWidth; local
143 if (miter < 1.f) {
144 miter = 1.f;
146 return miter;
164 case MITER:
383 /*package*/ static void setStrokeMiter(Paint thisPaint, float miter) {
390 delegate.mStrokeMiter = miter;
1025 mJoin = Paint.Join.MITER.nativeInt;
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 50 Join.MITER, Join.ROUND, Join.BEVEL
134 * join on a stroked path. The default is MITER.
140 MITER (0),
520 * Return the paint's stroke miter value. Used to control the behavior
521 * of miter joins when the joins angle is sharp.
523 * @return the paint's miter limit, used whenever the paint's style is
529 * Set the paint's stroke miter value. This is used to control the behavior
530 * of miter joins when the joins angle is sharp. This value must be >= 0.
532 * @param miter set the miter limit on the paint, used whenever the paint'
    [all...]
  /external/skia/include/core/
SkPaint.h 351 /** Return the paint's stroke miter value. This is used to control the
352 behavior of miter joins when the joins angle is sharp.
353 @return the paint's miter limit, used whenever the paint's style is
358 /** Set the paint's stroke miter value. This is used to control the
359 behavior of miter joins when the joins angle is sharp. This value must
361 @param miter set the miter limit on the paint, used whenever the
364 void setStrokeMiter(SkScalar miter);
    [all...]
  /external/freetype/src/base/
ftstroke.c 943 /* process an outside corner, i.e. compute bevel/miter/round */
961 FT_Bool miter; local
965 miter = FT_BOOL( stroker->line_join == FT_STROKER_LINEJOIN_MITER );
984 miter = FALSE;
986 if ( miter ) /* this is a miter (broken angle) */
    [all...]
  /external/webkit/WebCore/rendering/
SVGRenderTreeAsText.cpp 245 ts << "MITER";
281 writeIfNotDefault(ts, "miter limit", svgStyle->strokeMiterLimit(), 4.0f);
  /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/sonivox/docs/JET_Authoring_Guidelines_files/
header.htm 136 <v:stroke joinstyle="miter"/>
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 178 static void setStrokeMiter(JNIEnv* env, jobject paint, jfloat miter) {
180 GraphicsJNI::getNativePaint(env, paint)->setStrokeMiter(SkFloatToScalar(miter));
  /external/freetype/include/freetype/
ftstroke.h 248 * The miter limit for the FT_STROKER_LINEJOIN_MITER style,
  /external/libvpx/examples/includes/geshi/geshi/
actionscript3.php 312 'MITER', 'MIN_VALUE', 'MICROPHONE', 'MENU_SELECT',
  /external/sonivox/docs/JET_Creator_User_Manual_files/
header.htm 146 <v:stroke joinstyle="miter"/>
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 981 void GraphicsContext::setMiterLimit(float miter)
986 cairo_set_miter_limit(m_data->cr, miter);
    [all...]

Completed in 974 milliseconds

1 2