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 dir, int offset, int cursorOpt, Paint p) argument
H A DSpannableStringBuilder.java1312 * <p>If cursorOpt is CURSOR_AT and the offset is not a valid cursor position,
1320 * @param cursorOpt how to move the cursor, one of CURSOR_AFTER,
1329 int cursorOpt, Paint p) {
1336 dir, offset, cursorOpt);
1339 dir, offset + mGapLength, cursorOpt) - mGapLength;
1344 dir, offset - contextStart, cursorOpt) + contextStart;
1328 getTextRunCursor(int contextStart, int contextEnd, int dir, int offset, int cursorOpt, Paint p) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java1034 int contextStart, int contextLength, int flags, int offset, int cursorOpt) {
1043 int contextStart, int contextEnd, int flags, int offset, int cursorOpt) {
1033 native_getTextRunCursor(Paint thisPaint, long native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
1042 native_getTextRunCursor(Paint thisPaint, long native_object, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp772 jint contextStart, jint contextCount, jint dir, jint offset, jint cursorOpt) {
776 offset, cursorOpt);
782 jint contextStart, jint contextEnd, jint dir, jint offset, jint cursorOpt) {
786 contextEnd - contextStart, dir, offset, cursorOpt);
771 getTextRunCursor___C(JNIEnv* env, jobject clazz, jlong paintHandle, jcharArray text, jint contextStart, jint contextCount, jint dir, jint offset, jint cursorOpt) argument
781 getTextRunCursor__String(JNIEnv* env, jobject clazz, jlong paintHandle, jstring text, jint contextStart, jint contextEnd, jint dir, jint offset, jint cursorOpt) argument
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java2052 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
2061 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
2068 int dir, int offset, int cursorOpt) {
2072 | (text.length - contextEnd) | cursorOpt) < 0)
2073 || cursorOpt > CURSOR_OPT_MAX_VALUE) {
2078 contextStart, contextLength, dir, offset, cursorOpt);
2092 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
2101 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
2108 int contextEnd, int dir, int offset, int cursorOpt) {
2113 dir, offset, cursorOpt);
2067 getTextRunCursor(char[] text, int contextStart, int contextLength, int dir, int offset, int cursorOpt) argument
2107 getTextRunCursor(CharSequence text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
2154 getTextRunCursor(String text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
2493 native_getTextRunCursor(long native_object, char[] text, int contextStart, int contextLength, int dir, int offset, int cursorOpt) argument
2495 native_getTextRunCursor(long native_object, String text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java9974 int offset, int cursorOpt, Paint p) {
9977 contextCount, dir, offset + mStart, cursorOpt);
9973 getTextRunCursor(int contextStart, int contextEnd, int dir, int offset, int cursorOpt, Paint p) argument

Completed in 181 milliseconds