OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:linearText
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/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/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/chromium_org/third_party/skia/include/core/
SkPaint.h
162
@return true if the
lineartext
bit is set in the paint's flags
169
@param
linearText
true to set the
linearText
bit in the paint's flags,
172
void setLinearText(bool
linearText
);
175
@return true if the
lineartext
bit is set in the paint's flags
[
all
...]
/external/skia/include/core/
SkPaint.h
162
@return true if the
lineartext
bit is set in the paint's flags
169
@param
linearText
true to set the
linearText
bit in the paint's flags,
172
void setLinearText(bool
linearText
);
175
@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
330
/*package*/ static void setLinearText(Paint thisPaint, boolean
linearText
) {
331
setFlag(thisPaint, Paint.LINEAR_TEXT_FLAG,
linearText
);
[
all
...]
/frameworks/base/core/jni/android/graphics/
Paint.cpp
124
static void setLinearText(JNIEnv* env, jobject paint, jboolean
linearText
) {
126
GraphicsJNI::getNativePaint(env, paint)->setLinearText(
linearText
);
[
all
...]
/frameworks/base/graphics/java/android/graphics/
Paint.java
656
* @return true if the
lineartext
bit is set in the paint's flags
665
* @param
linearText
true to set the
linearText
bit in the paint's flags,
668
public native void setLinearText(boolean
linearText
);
[
all
...]
Completed in 189 milliseconds