Home
last modified time | relevance | path

Searched refs:after (Results 1 – 25 of 237) sorted by relevance

12345678910

/frameworks/base/core/java/android/text/
DDynamicLayout.java188 private void reflow(CharSequence s, int where, int before, int after) { in reflow() argument
206 after += diff; in reflow()
212 int look = TextUtils.indexOf(text, '\n', where + after); in reflow()
218 int change = look - (where + after); in reflow()
220 after += change; in reflow()
231 Object[] force = sp.getSpans(where, where + after, in reflow()
243 after += diff; in reflow()
247 if (en > where + after) { in reflow()
250 int diff = en - (where + after); in reflow()
252 after += diff; in reflow()
[all …]
DPackedObjectVector.java116 int after = mRows - (mRowGapStart + mRowGapLength); in growBuffer() local
119 …System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, aft… in growBuffer()
DPackedIntVector.java262 int after = mRows - (rowgapstart + mRowGapLength); in growBuffer() local
266 System.arraycopy(mValues, (mRows - after) * columns, in growBuffer()
267 newvalues, (newsize - after) * columns, in growBuffer()
268 after * columns); in growBuffer()
DTextWatcher.java32 int count, int after); in beforeTextChanged() argument
DSpannableStringBuilder.java138 final int after = oldLength - (mGapStart + mGapLength); in resizeFor() local
139 System.arraycopy(mText, oldLength - after, newText, newLength - after, after); in resizeFor()
950 private void sendBeforeTextChanged(TextWatcher[] watchers, int start, int before, int after) { in sendBeforeTextChanged() argument
954 watchers[i].beforeTextChanged(this, start, before, after); in sendBeforeTextChanged()
958 private void sendTextChanged(TextWatcher[] watchers, int start, int before, int after) { in sendTextChanged() argument
962 watchers[i].onTextChanged(this, start, before, after); in sendTextChanged()
DTextLine.java613 boolean runIsRtl, int offset, boolean after) { in getOffsetBeforeAfter() argument
615 if (runIndex < 0 || offset == (after ? mLen : 0)) { in getOffsetBeforeAfter()
619 if (after) { in getOffsetBeforeAfter()
633 int target = after ? offset + 1 : offset; in getOffsetBeforeAfter()
662 return after ? spanLimit : spanStart; in getOffsetBeforeAfter()
668 int cursorOpt = after ? Paint.CURSOR_AFTER : Paint.CURSOR_BEFORE; in getOffsetBeforeAfter()
/frameworks/compile/slang/tests/F_bad_pragmas/
Dstderr.txt.expect2 bad_pragmas.rs:8:18: error: expected value after '#pragma onlyLeft('
3 bad_pragmas.rs:9:27: error: missing ')' after '#pragma missingRight(paren'
4 bad_pragmas.rs:10:16: error: missing ')' after '#pragma ok(not'
/frameworks/base/core/tests/coretests/src/android/net/
DNetworkStatsTest.java123 final NetworkStats after = new NetworkStats(TEST_START, 2) in testSubtractIdenticalData() local
127 final NetworkStats result = after.subtract(before); in testSubtractIdenticalData()
139 final NetworkStats after = new NetworkStats(TEST_START, 2) in testSubtractIdenticalRows() local
143 final NetworkStats result = after.subtract(before); in testSubtractIdenticalRows()
155 final NetworkStats after = new NetworkStats(TEST_START, 3) in testSubtractNewRows() local
160 final NetworkStats result = after.subtract(before); in testSubtractNewRows()
173 final NetworkStats after = new NetworkStats(TEST_START, 1) in testSubtractMissingRows() local
176 final NetworkStats result = after.subtract(before); in testSubtractMissingRows()
290 final NetworkStats after = before.withoutUids(new int[] { 100 }); in testWithoutUid() local
292 assertEquals(2, after.size()); in testWithoutUid()
[all …]
DNetworkStatsHistoryTest.java392 final NetworkStatsHistory after = new NetworkStatsHistory(new DataInputStream(in)); in testSerialize() local
396 assertFullValues(after, 5 * MINUTE_IN_MILLIS, 1034L, 30L, 2078L, 60L, 54L); in testSerialize()
455 NetworkStatsHistory stats, int before, int after, long time) { in assertIndexBeforeAfter() argument
457 assertEquals("unexpected after", after, stats.getIndexAfter(time)); in assertIndexBeforeAfter()
/frameworks/av/media/libmedia/
DSingleStateQueue.cpp80 int32_t after = android_atomic_release_load(&shared->mSequence); in poll() local
81 if (after == before) { in poll()
90 before = after; in poll()
/frameworks/base/tools/preload/
DRecord.java154 String after = result.substring(offset+6); in decode() local
156 result = String.format("%s%c%s", before, Integer.parseInt(escaped, 16), after); in decode()
/frameworks/base/services/java/com/android/server/
DDiskStatsService.java67 long after = SystemClock.uptimeMillis(); in dump() local
75 pw.print(after - before); in dump()
/frameworks/wilhelm/tools/mphtogen/
DREADME.txt2 You need to do this after modifying any of the MPH-related files.
/frameworks/base/docs/html/training/design-navigation/
Dancestral-temporal.jd49 you back at the Launcher, after which the <em>Back</em> button will do nothing.</p>
53 alt="The Back button behavior after entering the Email app from the People (or Contacts) app"
56 <p class="img-caption"><strong>Figure 1.</strong> The <em>Back</em> button behavior after entering
94 …alt="Example behavior for UP navigation after entering the Email app from the People app" id="figu…
96 <p class="img-caption"><strong>Figure 2.</strong> Example behavior for up navigation after entering…
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
DKeyguardAbsKeyInputView.java118 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in onFinishInflate()
228 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() argument
/frameworks/wilhelm/tools/hashgen/
DREADME.txt2 You need to do this after modifying either OpenSLES_IID.c or MPH.c.
/frameworks/base/core/java/com/android/internal/view/menu/
DIconMenuItemView.java245 protected void onTextChanged(CharSequence text, int start, int before, int after) { in onTextChanged() argument
246 super.onTextChanged(text, start, before, after); in onTextChanged()
/frameworks/ex/common/java/com/android/ex/editstyledtext/
DEditStyledText.java346 protected void onTextChanged(CharSequence text, int start, int before, int after) { in onTextChanged() argument
349 mManager.updateSpanNextToCursor(getText(), start, before, after); in onTextChanged() local
350 mManager.updateSpanPreviousFromCursor(getText(), start, before, after); in onTextChanged() local
351 if (after > before) { in onTextChanged()
352 mManager.setTextComposingMask(start, start + after); in onTextChanged()
353 } else if (before < after) { in onTextChanged()
357 if (after > before) { in onTextChanged()
360 } else if (after < before) { in onTextChanged()
365 super.onTextChanged(text, start, before, after); in onTextChanged()
1321 updateSpanPreviousFromCursor(Editable txt, int start, int before, int after) { in updateSpanPreviousFromCursor() argument
[all …]
/frameworks/rs/scriptc/
Drs_time.rsh36 * tm_sec - Seconds after the minute. This ranges from 0 to 59, but possibly
38 * tm_min - Minutes after the hour. This ranges from 0 to 59.
/frameworks/base/docs/html/tools/help/
Dzipalign.jd20 will automatically zipalign your .apk after it signs it with your private key.
28 <strong>after</strong> the .apk file has been signed with your private key.
/frameworks/native/opengl/specs/
DEGL_ANDROID_blob_cache.txt45 implementations may cache shader binaries after they are compiled. It may
100 Add a new subsection after Section 3.8, page 50
150 the cache after the set call. If a different value has been associated
152 associated with the key after the set call. Note that while there are no
/frameworks/base/core/java/android/widget/
DGridLayout.java2183 public int after;
2192 after = Integer.MIN_VALUE;
2196 protected void include(int before, int after) {
2198 this.after = max(this.after, after);
2207 return before + after;
2228 ", after=" + after +
2691 protected void include(int before, int after) {
2692 super.include(before, after);
2693 size = max(size, before + after);
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
DGridLayout.java2117 public int after;
2126 after = Integer.MIN_VALUE;
2130 protected void include(int before, int after) {
2132 this.after = max(this.after, after);
2141 return before + after;
2161 ", after=" + after +
2609 protected void include(int before, int after) {
2610 super.include(before, after);
2611 size = max(size, before + after);
/frameworks/base/telephony/java/android/telephony/
DPhoneNumberFormattingTextWatcher.java78 int after) { in beforeTextChanged() argument
/frameworks/base/services/tests/servicestests/src/com/android/server/
DDropBoxTest.java66 long after = System.currentTimeMillis(); in testAddText() local
77 assertTrue(e2.getTimeMillis() < after); in testAddText()
93 long after = System.currentTimeMillis();
733 int after = countOpenFiles(); in testDropBoxEntrySerializationDoesntLeakFileDescriptors() local
734 assertTrue(after > 0); in testDropBoxEntrySerializationDoesntLeakFileDescriptors()
735 assertTrue(after < before + 20); in testDropBoxEntrySerializationDoesntLeakFileDescriptors()

12345678910