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.java1487 * <p>If cursorOpt is CURSOR_AT and the offset is not a valid cursor position,
1495 * @param cursorOpt how to move the cursor, one of CURSOR_AFTER,
1504 int cursorOpt, Paint p) {
1511 dir, offset, cursorOpt);
1514 dir, offset + mGapLength, cursorOpt) - mGapLength;
1519 dir, offset - contextStart, cursorOpt) + contextStart;
1503 getTextRunCursor(int contextStart, int contextEnd, int dir, int offset, int cursorOpt, Paint p) argument
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp543 jint contextStart, jint contextCount, jint dir, jint offset, jint cursorOpt) {
547 offset, cursorOpt);
553 jint contextStart, jint contextEnd, jint dir, jint offset, jint cursorOpt) {
557 contextEnd - contextStart, dir, offset, cursorOpt);
542 getTextRunCursor___C(JNIEnv* env, jobject clazz, jlong paintHandle, jcharArray text, jint contextStart, jint contextCount, jint dir, jint offset, jint cursorOpt) argument
552 getTextRunCursor__String(JNIEnv* env, jobject clazz, jlong paintHandle, jstring text, jint contextStart, jint contextEnd, jint dir, jint offset, jint cursorOpt) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java1002 int contextStart, int contextLength, int flags, int offset, int cursorOpt) {
1011 int contextStart, int contextEnd, int flags, int offset, int cursorOpt) {
1001 nGetTextRunCursor(Paint thisPaint, long native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
1010 nGetTextRunCursor(Paint thisPaint, long native_object, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java2263 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
2272 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
2279 int dir, int offset, int cursorOpt) {
2283 | (text.length - contextEnd) | cursorOpt) < 0)
2284 || cursorOpt > CURSOR_OPT_MAX_VALUE) {
2289 contextStart, contextLength, dir, offset, cursorOpt);
2303 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
2312 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
2319 int contextEnd, int dir, int offset, int cursorOpt) {
2324 dir, offset, cursorOpt);
2278 getTextRunCursor(char[] text, int contextStart, int contextLength, int dir, int offset, int cursorOpt) argument
2318 getTextRunCursor(CharSequence text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
2365 getTextRunCursor(String text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
2687 nGetTextRunCursor(long paintPtr, char[] text, int contextStart, int contextLength, int dir, int offset, int cursorOpt) argument
2689 nGetTextRunCursor(long paintPtr, String text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java10186 int offset, int cursorOpt, Paint p) {
10189 contextCount, dir, offset + mStart, cursorOpt);
10185 getTextRunCursor(int contextStart, int contextEnd, int dir, int offset, int cursorOpt, Paint p) argument

Completed in 566 milliseconds