Searched defs:hyphen (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/hwui/
H A DPaint.h80 void setHyphenEdit(uint32_t hyphen) { mHyphenEdit = hyphen; } argument
/frameworks/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java1112 /*package*/ static void nSetHyphenEdit(long nativePaint, int hyphen) { argument
1117 delegate.mHyphenEdit = hyphen;
/frameworks/minikin/libs/minikin/
H A DLayout.cpp313 // Only apply hyphen to the first or last word in the string.
330 // Only apply hyphen to the first (rightmost) or last (leftmost)
452 // The original hyphen requested was not supported. Let's try and see if the
453 // Unicode hyphen is supported.
458 // Fallback to ASCII HYPHEN-MINUS if the font didn't have a glyph for the preferred hyphen.
470 HyphenEdit hyphen, uint32_t cluster) {
473 std::tie(chars, size) = getHyphenString(hyphen);
494 // hyphen edit at that end. This is not absolutely necessary, since HarfBuzz uses
508 // A cluster value of zero guarantees that the inserted hyphen will be in the same
551 // Add the hyphen a
469 addHyphenToHbBuffer(const HbBufferUniquePtr& buffer, const HbFontUniquePtr& font, HyphenEdit hyphen, uint32_t cluster) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp937 static jint getHyphenEdit(jlong paintHandle, jint hyphen) { argument
942 static void setHyphenEdit(jlong paintHandle, jint hyphen) { argument
944 paint->setHyphenEdit((uint32_t)hyphen);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java347 * Mask for hyphen edits that happen at the end of a line. Keep in sync with the definition in
354 * Mask for hyphen edits that happen at the start of a line. Keep in sync with the definition in
1702 * Get the current value of hyphen edit.
1704 * @return the current hyphen edit value
1713 * Set a hyphen edit on the paint (causes a hyphen to be added to text when
1716 * @param hyphen 0 for no edit, 1 for adding a hyphen at the end, etc.
1721 public void setHyphenEdit(int hyphen) { argument
1722 nSetHyphenEdit(mNativePaint, hyphen);
2946 nSetHyphenEdit(long paintPtr, int hyphen) argument
[all...]

Completed in 174 milliseconds