HomeSort by relevance Sort by last modified time
    Searched refs:oend (Results 1 - 17 of 17) sorted by null

  /frameworks/base/core/java/android/text/
SpanWatcher.java 37 * has been relocated from the range <code>ostart&hellip;oend</code>
40 public void onSpanChanged(Spannable text, Object what, int ostart, int oend,
SpannableStringInternal.java 218 int oend = data[i * COLUMNS + END]; local
224 sendSpanChanged(what, ostart, oend, nstart, nend);
266 int oend = data[i * COLUMNS + END]; local
277 sendSpanRemoved(what, ostart, oend);
Selection.java 90 int oend = getSelectionEnd(text); local
92 if (ostart != start || oend != stop) {
SpannableStringBuilder.java 248 int oend = mSpanEnds[i]; local
252 if (oend > mGapStart)
253 oend -= mGapLength;
258 sendSpanRemoved(what, ostart, oend);
737 int oend = mSpanEnds[i]; local
741 if (oend > mGapStart)
742 oend -= mGapLength;
750 sendSpanChanged(what, ostart, oend, nstart, nend);
    [all...]
  /external/e2fsprogs/lib/ext2fs/
bitmaps.c 166 ext2_ino_t end, ext2_ino_t *oend)
174 if (oend)
175 *oend = tmp_oend;
180 blk_t end, blk_t *oend)
185 end, oend));
189 blk64_t end, blk64_t *oend)
193 end, oend));
ext2fsP.h 152 __u64 end, __u64 *oend);
gen_bitmap64.c 365 __u64 end, __u64 *oend)
376 if (oend)
377 *oend = tmp_oend;
386 if (oend)
387 *oend = bitmap->end;
gen_bitmap.c 291 ext2_ino_t end, ext2_ino_t *oend)
297 if (oend)
298 *oend = bitmap->end;
ext2fs.h 828 ext2_ino_t end, ext2_ino_t *oend);
830 blk_t end, blk_t *oend);
832 blk64_t end, blk64_t *oend);
    [all...]
  /external/lz4/tests/
frametest.c 248 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; local
261 oSize = (size_t)(oend-op);
265 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; }
302 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; local
304 size_t oSize = oend-op;
346 BYTE* const oend = ostart + COMPRESSIBLE_NOISE_LENGTH; local
357 size_t oSize = oend-op;
467 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; local
482 size_t oSize = oend-op;
502 size_t oSize = oend-op
631 BYTE* const oend = op + (neverFlush ? LZ4F_compressFrameBound(srcSize, prefsPtr) : compressedBufferSize); \/* when flushes are possible, can't guarantee a max compressed size *\/ local
669 BYTE* const oend = op + srcDataLength; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/
SpannableTest.java 80 public void onSpanChanged(Spannable text, Object what, int ostart, int oend, int nstart,
  /external/lz4/lib/
lz4hc.c 265 BYTE* oend)
277 if ((limitedOutputBuffer) && ((*op + (length>>8) + length + (2 + 1 + LASTLITERALS)) > oend)) return 1; /* Check output limit */
290 if ((limitedOutputBuffer) && (*op + (length>>8) + (1 + LASTLITERALS) > oend)) return 1; /* Check output limit */
327 BYTE* const oend = op + maxOutputSize; local
359 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
407 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
409 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml2, ref2, limit, oend)) return 0;
427 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
463 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
lz4.c 738 BYTE* const oend = op + targetDstSize; local
852 if (op + 1 /* token */ + ((lastRunSize+240)/255) /* litLength */ + lastRunSize /* literals */ > oend) {
854 lastRunSize = (oend-op) - 1;
1109 BYTE* const oend = op + outputSize; local
    [all...]
lz4opt.h 228 BYTE* const oend = op + maxOutputSize; local
347 res = LZ4HC_encodeSequence(&ip, &op, &anchor, (int)mlen, ip - offset, limit, oend);
  /frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
SpannableBuilder.java 414 public void onSpanChanged(Spannable text, Object what, int ostart, int oend, int nstart,
419 ((SpanWatcher) mObject).onSpanChanged(text, what, ostart, oend, nstart, nend);
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderSpanTest.java 454 public void onSpanChanged(Spannable text, Object span, int ostart, int oend, int nstart,
456 if (text == mSpannable) mChanged.add(new Changed(span, ostart, oend, nstart, nend));
SelectionTest.java     [all...]

Completed in 402 milliseconds