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

/frameworks/base/core/java/android/text/
H A DGraphicsOperations.java72 int cursorOpt, Paint p);
71 getTextRunCursor(int contextStart, int contextEnd, int flags, int offset, int cursorOpt, Paint p) argument
H A DSpannableStringBuilder.java1267 * <p>If cursorOpt is CURSOR_AT and the offset is not a valid cursor position,
1275 * @param cursorOpt how to move the cursor, one of CURSOR_AFTER,
1284 int cursorOpt, Paint p) {
1291 flags, offset, cursorOpt);
1294 flags, offset + mGapLength, cursorOpt) - mGapLength;
1299 flags, offset - contextStart, cursorOpt) + contextStart;
1283 getTextRunCursor(int contextStart, int contextEnd, int flags, int offset, int cursorOpt, Paint p) argument
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp673 jint contextStart, jint contextCount, jint flags, jint offset, jint cursorOpt) {
676 offset, cursorOpt);
682 jint contextStart, jint contextEnd, jint flags, jint offset, jint cursorOpt) {
685 contextEnd - contextStart, flags, offset, cursorOpt);
672 getTextRunCursor___C(JNIEnv* env, jobject clazz, SkPaint* paint, jcharArray text, jint contextStart, jint contextCount, jint flags, jint offset, jint cursorOpt) argument
681 getTextRunCursor__String(JNIEnv* env, jobject clazz, SkPaint* paint, jstring text, jint contextStart, jint contextEnd, jint flags, jint offset, jint cursorOpt) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java1036 int contextStart, int contextLength, int flags, int offset, int cursorOpt) {
1045 int contextStart, int contextEnd, int flags, int offset, int cursorOpt) {
1035 native_getTextRunCursor(Paint thisPaint, int native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
1044 native_getTextRunCursor(Paint thisPaint, int native_object, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1977 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
1986 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
1993 int flags, int offset, int cursorOpt) {
1997 | (text.length - contextEnd) | cursorOpt) < 0)
1998 || cursorOpt > CURSOR_OPT_MAX_VALUE) {
2003 contextStart, contextLength, flags, offset, cursorOpt);
2017 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
2026 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
2033 int contextEnd, int flags, int offset, int cursorOpt) {
2038 flags, offset, cursorOpt);
1992 getTextRunCursor(char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
2032 getTextRunCursor(CharSequence text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2079 getTextRunCursor(String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2235 native_getTextRunCursor(int native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
2237 native_getTextRunCursor(int native_object, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java8622 int offset, int cursorOpt, Paint p) {
8625 contextCount, flags, offset + mStart, cursorOpt);
8621 getTextRunCursor(int contextStart, int contextEnd, int flags, int offset, int cursorOpt, Paint p) argument

Completed in 80 milliseconds