Searched defs:hasGlyph (Results 1 - 6 of 6) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/graphics/
H A DPaintCompat.java44 public static boolean hasGlyph(@NonNull Paint paint, @NonNull String string) { method in class:PaintCompat
46 return paint.hasGlyph(string);
75 // glyphs instead of a single ligature glyph. (hasGlyph returns false in this case.)
/frameworks/support/emoji/core/src/main/java/androidx/emoji/text/
H A DEmojiMetadata.java191 * @param hasGlyph {@code true} if system can render the emoji
193 public void setHasGlyph(boolean hasGlyph) { argument
194 mHasGlyph = hasGlyph ? HAS_GLYPH_EXISTS : HAS_GLYPH_ABSENT;
H A DEmojiProcessor.java244 if (replaceAll || !hasGlyph(charSequence, start, currentOffset,
262 if (replaceAll || !hasGlyph(charSequence, start, currentOffset,
453 private boolean hasGlyph(final CharSequence charSequence, int start, final int end, method in class:EmojiProcessor
464 final boolean hasGlyph = mGlyphChecker.hasGlyph(charSequence, start, end);
465 metadata.setHasGlyph(hasGlyph);
797 * {@link PaintCompat#hasGlyph(android.graphics.Paint, String)}.
802 * TextPaint used during {@link PaintCompat#hasGlyph(android.graphics.Paint, String)} check.
820 public boolean hasGlyph(final CharSequence charSequence, int start, final int end) { method in class:EmojiProcessor.GlyphChecker
829 return PaintCompat.hasGlyph(mTextPain
[all...]
/frameworks/minikin/libs/minikin/
H A DFontFamily.cpp173 bool FontFamily::hasGlyph(uint32_t codepoint, uint32_t variationSelector) const { function in class:minikin::FontFamily
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp424 static jboolean hasGlyph(JNIEnv *env, jclass, jlong paintHandle, jint bidiFlags, function in namespace:android::PaintGlue
1049 {"nHasGlyph", "(JILjava/lang/String;)Z", (void*) PaintGlue::hasGlyph },
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java2672 public boolean hasGlyph(String string) { method in class:Paint

Completed in 121 milliseconds