Home
last modified time | relevance | path

Searched refs:hyphen (Results 1 – 8 of 8) sorted by relevance

/frameworks/minikin/include/minikin/
DMinikinFont.h35 HyphenEdit() : hyphen(0) { } in HyphenEdit()
36 HyphenEdit(uint32_t hyphenInt) : hyphen(hyphenInt) { } in HyphenEdit()
37 bool hasHyphen() const { return hyphen != 0; } in hasHyphen()
38 bool operator==(const HyphenEdit &other) const { return hyphen == other.hyphen; }
40 uint32_t hyphen;
/frameworks/base/libs/hwui/hwui/
DPaint.h75 void setHyphenEdit(uint32_t hyphen) { in setHyphenEdit() argument
76 mHyphenEdit = hyphen; in setHyphenEdit()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardUtils.java504 final int hyphen = '-'; in containsOnlyAlphaDigitHyphen() local
515 (codepoint == hyphen))) { in containsOnlyAlphaDigitHyphen()
/frameworks/minikin/libs/minikin/
DLayout.cpp620 HyphenEdit hyphen = ctx->paint.hyphenEdit; in doLayoutRunCached() local
630 ctx->paint.hyphenEdit = wordend >= start + count ? hyphen : HyphenEdit(); in doLayoutRunCached()
645 ctx->paint.hyphenEdit = iter == end ? hyphen : HyphenEdit(); in doLayoutRunCached()
/frameworks/base/graphics/java/android/graphics/
DPaint.java1552 public void setHyphenEdit(int hyphen) { in setHyphenEdit() argument
1553 nSetHyphenEdit(mNativePaint, hyphen); in setHyphenEdit()
2712 private static native void nSetHyphenEdit(long paintPtr, int hyphen); in nSetHyphenEdit() argument
/frameworks/base/docs/html/training/basics/supporting-devices/
Dlanguages.jd42 <code>res/</code> that include a hyphen and the ISO language code at the end of the
/frameworks/base/core/jni/android/graphics/
DPaint.cpp387 static jint getHyphenEdit(JNIEnv* env, jobject clazz, jlong paintHandle, jint hyphen) { in getHyphenEdit() argument
392 static void setHyphenEdit(JNIEnv* env, jobject clazz, jlong paintHandle, jint hyphen) { in setHyphenEdit() argument
394 paint->setHyphenEdit((uint32_t)hyphen); in setHyphenEdit()
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DPaint_Delegate.java1104 /*package*/ static void nSetHyphenEdit(long nativePaint, int hyphen) { in nSetHyphenEdit() argument
1109 delegate.mHyphenEdit = hyphen; in nSetHyphenEdit()