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

  /external/skia/legacy/src/animator/
SkDrawPaint.h 49 SkBool linearText;
SkDrawPaint.cpp 44 SK_MEMBER(linearText, Boolean),
70 linearText(-1), maskFilter((SkDrawMaskFilter*) -1), pathEffect((SkDrawPathEffect*) -1),
229 if (linearText != -1)
230 paint->setLinearText(SkToBool(linearText));
  /external/skia/src/animator/
SkDrawPaint.h 49 SkBool linearText;
SkDrawPaint.cpp 44 SK_MEMBER(linearText, Boolean),
70 linearText(-1), maskFilter((SkDrawMaskFilter*) -1), pathEffect((SkDrawPathEffect*) -1),
229 if (linearText != -1)
230 paint->setLinearText(SkToBool(linearText));
  /external/skia/include/core/
SkPaint.h 153 @return true if the lineartext bit is set in the paint's flags
160 @param linearText true to set the linearText bit in the paint's flags,
163 void setLinearText(bool linearText);
166 @return true if the lineartext bit is set in the paint's flags
    [all...]
  /external/skia/legacy/include/core/
SkPaint.h 152 @return true if the lineartext bit is set in the paint's flags
159 @param linearText true to set the linearText bit in the paint's flags,
162 void setLinearText(bool linearText);
165 @return true if the lineartext bit is set in the paint's flags
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint_Delegate.java 331 /*package*/ static void setLinearText(Paint thisPaint, boolean linearText) {
332 setFlag(thisPaint, Paint.LINEAR_TEXT_FLAG, linearText);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 120 static void setLinearText(JNIEnv* env, jobject paint, jboolean linearText) {
122 GraphicsJNI::getNativePaint(env, paint)->setLinearText(linearText);
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 554 * @return true if the lineartext bit is set in the paint's flags
563 * @param linearText true to set the linearText bit in the paint's flags,
566 public native void setLinearText(boolean linearText);
    [all...]

Completed in 469 milliseconds