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

/frameworks/base/core/java/android/text/
H A DGraphicsOperations.java65 int cursorOpt, Paint p);
64 getTextRunCursor(int contextStart, int contextEnd, int flags, int offset, int cursorOpt, Paint p) argument
H A DSpannableStringBuilder.java1238 * <p>If cursorOpt is CURSOR_AT and the offset is not a valid cursor position,
1246 * @param cursorOpt how to move the cursor, one of CURSOR_AFTER,
1255 int cursorOpt, Paint p) {
1262 flags, offset, cursorOpt);
1265 flags, offset + mGapLength, cursorOpt) - mGapLength;
1270 flags, offset - contextStart, cursorOpt) + contextStart;
1254 getTextRunCursor(int contextStart, int contextEnd, int flags, int offset, int cursorOpt, Paint p) argument
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp648 jint contextStart, jint contextCount, jint flags, jint offset, jint cursorOpt) {
651 offset, cursorOpt);
657 jint contextStart, jint contextEnd, jint flags, jint offset, jint cursorOpt) {
660 contextEnd - contextStart, flags, offset, cursorOpt);
647 getTextRunCursor___C(JNIEnv* env, jobject clazz, SkPaint* paint, jcharArray text, jint contextStart, jint contextCount, jint flags, jint offset, jint cursorOpt) argument
656 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.java1016 int contextStart, int contextLength, int flags, int offset, int cursorOpt) {
1025 int contextStart, int contextEnd, int flags, int offset, int cursorOpt) {
1015 native_getTextRunCursor(Paint thisPaint, int native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
1024 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.java2002 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
2011 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
2018 int flags, int offset, int cursorOpt) {
2022 | (text.length - contextEnd) | cursorOpt) < 0)
2023 || cursorOpt > CURSOR_OPT_MAX_VALUE) {
2028 contextStart, contextLength, flags, offset, cursorOpt);
2042 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
2051 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
2058 int contextEnd, int flags, int offset, int cursorOpt) {
2063 flags, offset, cursorOpt);
2017 getTextRunCursor(char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
2057 getTextRunCursor(CharSequence text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2104 getTextRunCursor(String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2260 native_getTextRunCursor(int native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
2262 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.java9015 int offset, int cursorOpt, Paint p) {
9018 contextCount, flags, offset + mStart, cursorOpt);
9014 getTextRunCursor(int contextStart, int contextEnd, int flags, int offset, int cursorOpt, Paint p) argument

Completed in 703 milliseconds