Searched refs:after (Results 1 - 25 of 50) sorted by relevance

12

/frameworks/base/core/java/android/text/
H A DTextWatcher.java27 * are about to be replaced by new text with length <code>after</code>.
32 int count, int after);
31 beforeTextChanged(CharSequence s, int start, int count, int after) argument
H A DDynamicLayout.java188 private void reflow(CharSequence s, int where, int before, int after) { argument
206 after += diff;
212 int look = TextUtils.indexOf(text, '\n', where + after);
216 look++; // we want the index after the \n
218 int change = look - (where + after);
220 after += change;
231 Object[] force = sp.getSpans(where, where + after,
243 after += diff;
247 if (en > where + after) {
250 int diff = en - (where + after);
640 reflow(CharSequence s, int where, int before, int after) argument
649 beforeTextChanged(CharSequence s, int where, int before, int after) argument
653 onTextChanged(CharSequence s, int where, int before, int after) argument
[all...]
H A DPackedObjectVector.java116 int after = mRows - (mRowGapStart + mRowGapLength);
119 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
H A DPackedIntVector.java262 int after = mRows - (rowgapstart + mRowGapLength);
266 System.arraycopy(mValues, (mRows - after) * columns,
267 newvalues, (newsize - after) * columns,
268 after * columns);
H A DBidiFormatter.java48 * string. Without "reset" after the string, the string will "stick" to a number or logically
52 * "reset" the direction only after each string, on the theory that if the preceding opposite-
53 * direction text is itself bidi-wrapped, the "reset" after it will prevent the sticking. (Doing
61 * would not bidi-wrap anyway. Thus, "reset" only after the string is the current default. In an
176 * a string being bidi-wrapped, not just after it. The default is false.
279 * bidi-wrapped, not just after it.
288 * Putting this after the string (including its directionality declaration wrapping) prevents it
289 * from "sticking" to other opposite-directionality text or a number appearing after it inline
294 * @param str String after which the mark may need to appear.
364 * surroundings. Currently, this is done by "resetting" the directionality after th
[all...]
H A DSpannableStringBuilder.java138 final int after = oldLength - (mGapStart + mGapLength);
139 System.arraycopy(mText, oldLength - after, newText, newLength - after, after);
499 // Span watchers need to be called after text watchers, which may update the layout
809 // Expensive test, should be performed after the previous tests
866 * Return the next offset after <code>start</code> but less than or
950 private void sendBeforeTextChanged(TextWatcher[] watchers, int start, int before, int after) { argument
954 watchers[i].beforeTextChanged(this, start, before, after);
958 private void sendTextChanged(TextWatcher[] watchers, int start, int before, int after) { argument
[all...]
H A DTextLine.java608 * @param after true if the new offset should logically follow the provided
613 boolean runIsRtl, int offset, boolean after) {
615 if (runIndex < 0 || offset == (after ? mLen : 0)) {
619 if (after) {
633 int target = after ? offset + 1 : offset;
662 return after ? spanLimit : spanStart;
668 int cursorOpt = after ? Paint.CURSOR_AFTER : Paint.CURSOR_BEFORE;
1023 * @return the (unsigned) tab position after this offset
612 getOffsetBeforeAfter(int runIndex, int runStart, int runLimit, boolean runIsRtl, int offset, boolean after) argument
/frameworks/av/media/libmedia/
H A DSingleStateQueue.cpp80 int32_t after = android_atomic_release_load(&shared->mSequence); local
81 if (after == before) {
90 before = after;
H A DAudioTrackShared.cpp78 TIMEOUT_CONTINUE, // additional chances after TIMEOUT_FINITE
218 struct timespec after; local
219 clock_gettime(CLOCK_MONOTONIC, &after);
220 total.tv_sec += after.tv_sec - before.tv_sec;
221 long deltaNs = after.tv_nsec - before.tv_nsec;
230 before = after;
366 TIMEOUT_CONTINUE, // additional chances after TIMEOUT_FINITE
829 mEnd = mFrameCount; // this is what allows playback to continue after the loop
/frameworks/base/tools/preload/
H A DRecord.java154 String after = result.substring(offset+6);
156 result = String.format("%s%c%s", before, Integer.parseInt(escaped, 16), after);
/frameworks/base/services/java/com/android/server/
H A DDiskStatsService.java67 long after = SystemClock.uptimeMillis();
75 pw.print(after - before);
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
H A DSyncOperationTest.java119 long after = 1500;
124 // Interval disjoint from and after op1.
126 "authority1", b1, after, afterFlex, unimportant, unimportant, true);
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkStatsTest.java123 final NetworkStats after = new NetworkStats(TEST_START, 2)
127 final NetworkStats result = after.subtract(before);
139 final NetworkStats after = new NetworkStats(TEST_START, 2)
143 final NetworkStats result = after.subtract(before);
155 final NetworkStats after = new NetworkStats(TEST_START, 3)
160 final NetworkStats result = after.subtract(before);
173 final NetworkStats after = new NetworkStats(TEST_START, 1)
176 final NetworkStats result = after.subtract(before);
290 final NetworkStats after = before.withoutUids(new int[] { 100 });
292 assertEquals(2, after
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberFormattingTextWatcher.java78 int after) {
115 // The text could be changed by other TextWatcher after we changed it. If we found the
77 beforeTextChanged(CharSequence s, int start, int count, int after) argument
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java191 * after a layout.
245 protected void onTextChanged(CharSequence text, int start, int before, int after) { argument
246 super.onTextChanged(text, start, before, after);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardAbsKeyInputView.java122 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
232 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
H A DKeyguardPasswordView.java114 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
166 // We can return true immediately after we find two or more filtered IMEs.
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java346 protected void onTextChanged(CharSequence text, int start, int before, int after) { argument
349 mManager.updateSpanNextToCursor(getText(), start, before, after);
350 mManager.updateSpanPreviousFromCursor(getText(), start, before, after);
351 if (after > before) {
352 mManager.setTextComposingMask(start, start + after);
353 } else if (before < after) {
357 if (after > before) {
360 } else if (after < before) {
365 super.onTextChanged(text, start, before, after);
1321 updateSpanPreviousFromCursor(Editable txt, int start, int before, int after) { argument
1374 updateSpanNextToCursor(Editable txt, int start, int before, int after) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DRestrictionsPinActivity.java144 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSaveFragment.java104 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
/frameworks/compile/slang/tests/
H A Dtest.py178 ' -n, --no-cleanup Don\'t clean up after running tests\n'
/frameworks/base/core/java/android/widget/
H A DGridLayout.java61 * (after padding is taken into account).
73 * overlap after the layout operation completes.
1893 * If an assignment is made to this field after a measurement or layout operation
1907 * If an assignment is made to this field after a measurement or layout operation
2224 before the alignment point and the amount of space required after it. One side of this
2235 public int after; field in class:GridLayout.Bounds
2244 after = Integer.MIN_VALUE;
2248 protected void include(int before, int after) { argument
2250 this.after = max(this.after, afte
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java62 * (after padding is taken into account).
74 * overlap after the layout operation completes.
1780 * If an assignment is made to this field after a measurement or layout operation
1794 * If an assignment is made to this field after a measurement or layout operation
2107 before the alignment point and the amount of space required after it. One side of this
2118 public int after; field in class:GridLayout.Bounds
2127 after = Integer.MIN_VALUE;
2131 protected void include(int before, int after) { argument
2133 this.after = max(this.after, afte
[all...]
/frameworks/support/v4/java/android/support/v4/text/
H A DBidiFormatter.java44 * string. Without "reset" after the string, the string will "stick" to a number or logically
48 * "reset" the direction only after each string, on the theory that if the preceding opposite-
49 * direction text is itself bidi-wrapped, the "reset" after it will prevent the sticking. (Doing
57 * would not bidi-wrap anyway. Thus, "reset" only after the string is the current default. In an
172 * a string being bidi-wrapped, not just after it. The default is false.
275 * bidi-wrapped, not just after it.
284 * Putting this after the string (including its directionality declaration wrapping) prevents it
285 * from "sticking" to other opposite-directionality text or a number appearing after it inline
290 * @param str String after which the mark may need to appear.
356 * surroundings. Currently, this is done by "resetting" the directionality after th
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java26 * can be set up to play together, in sequence, or after a specified delay.
111 // The amount of time in ms to delay starting the animation after start() is called
172 * @param items The animations that will be started one after another.
191 * @param items The animations that will be started one after another.
269 * <code>play(a1).after(a2)</code> sets up the AnimatorSet to play
392 * The amount of time, in milliseconds, to delay starting the animation after
403 * The amount of time, in milliseconds, to delay starting the animation after
506 // insert "play-after" delays
1042 * s.play(anim4).after(anim3);
1046 * Builder#after(Animato
1146 public Builder after(Animator anim) { method in class:AnimatorSet.Builder
1166 public Builder after(long delay) { method in class:AnimatorSet.Builder
[all...]

Completed in 434 milliseconds

12