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

/frameworks/base/core/java/android/text/
H A DGraphicsOperations.java62 int cursorOpt, Paint p);
61 getTextRunCursor(int contextStart, int contextEnd, int dir, int offset, int cursorOpt, Paint p) argument
H A DSpannableStringBuilder.java1533 * <p>If cursorOpt is CURSOR_AT and the offset is not a valid cursor position,
1541 * @param cursorOpt how to move the cursor, one of CURSOR_AFTER,
1550 int cursorOpt, Paint p) {
1557 dir, offset, cursorOpt);
1560 dir, offset + mGapLength, cursorOpt) - mGapLength;
1565 dir, offset - contextStart, cursorOpt) + contextStart;
1549 getTextRunCursor(int contextStart, int contextEnd, int dir, int offset, int cursorOpt, Paint p) argument
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp256 jint offset, jint cursorOpt) {
261 contextStart, contextCount, dir, offset, cursorOpt);
268 jint offset, jint cursorOpt) {
273 contextStart, contextEnd - contextStart, dir, offset, cursorOpt);
254 getTextRunCursor___C(JNIEnv* env, jobject clazz, jlong paintHandle, jlong typefaceHandle, jcharArray text, jint contextStart, jint contextCount, jint dir, jint offset, jint cursorOpt) argument
266 getTextRunCursor__String(JNIEnv* env, jobject clazz, jlong paintHandle, jlong typefaceHandle, 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.java969 int cursorOpt) {
978 String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) {
967 nGetTextRunCursor(Paint paint, long native_object, long typefacePtr, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
977 nGetTextRunCursor(Paint paint, long native_object, long typefacePtr, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java2349 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
2358 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
2365 int dir, int offset, int cursorOpt) {
2369 | (text.length - contextEnd) | cursorOpt) < 0)
2370 || cursorOpt > CURSOR_OPT_MAX_VALUE) {
2375 contextStart, contextLength, dir, offset, cursorOpt);
2389 * <p>If cursorOpt is {@link #CURSOR_AT} and the offset is not a valid
2398 * @param cursorOpt how to move the cursor, one of {@link #CURSOR_AFTER},
2405 int contextEnd, int dir, int offset, int cursorOpt) {
2410 dir, offset, cursorOpt);
2364 getTextRunCursor(char[] text, int contextStart, int contextLength, int dir, int offset, int cursorOpt) argument
2404 getTextRunCursor(CharSequence text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
2451 getTextRunCursor(String text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
2766 nGetTextRunCursor(long paintPtr, long typefacePtr, char[] text, int contextStart, int contextLength, int dir, int offset, int cursorOpt) argument
2768 nGetTextRunCursor(long paintPtr, long typefacePtr, String text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java11721 int offset, int cursorOpt, Paint p) {
11724 contextCount, dir, offset + mStart, cursorOpt);
11720 getTextRunCursor(int contextStart, int contextEnd, int dir, int offset, int cursorOpt, Paint p) argument

Completed in 159 milliseconds