HomeSort by relevance Sort by last modified time
    Searched refs:oend (Results 1 - 13 of 13) 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 184 int oend = data[i * COLUMNS + END]; local
190 sendSpanChanged(what, ostart, oend, nstart, nend);
225 int oend = data[i * COLUMNS + END]; local
235 sendSpanRemoved(what, ostart, oend);
Selection.java 73 int oend = getSelectionEnd(text); local
75 if (ostart != start || oend != stop) {
SpannableStringBuilder.java 249 int oend = mSpanEnds[i]; local
253 if (oend > mGapStart)
254 oend -= mGapLength;
259 sendSpanRemoved(what, ostart, oend);
729 int oend = mSpanEnds[i]; local
733 if (oend > mGapStart)
734 oend -= mGapLength;
742 sendSpanChanged(what, ostart, oend, nstart, nend);
    [all...]
  /external/e2fsprogs/lib/ext2fs/
bitmaps.c 165 ext2_ino_t end, ext2_ino_t *oend)
173 if (oend)
174 *oend = tmp_oend;
179 blk_t end, blk_t *oend)
184 end, oend));
188 blk64_t end, blk64_t *oend)
192 end, oend));
ext2fsP.h 128 __u64 end, __u64 *oend);
gen_bitmap64.c 363 __u64 end, __u64 *oend)
374 if (oend)
375 *oend = tmp_oend;
384 if (oend)
385 *oend = bitmap->end;
gen_bitmap.c 290 ext2_ino_t end, ext2_ino_t *oend)
296 if (oend)
297 *oend = bitmap->end;
ext2fs.h 763 ext2_ino_t end, ext2_ino_t *oend);
765 blk_t end, blk_t *oend);
767 blk64_t end, blk64_t *oend);
    [all...]
  /external/lz4/programs/
frametest.c 229 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; local
246 size_t oSize = oend-op;
287 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; local
300 size_t oSize = oend-op;
449 BYTE* const oend = op + LZ4F_compressFrameBound(srcDataLength, NULL); local
451 result = LZ4F_compressBegin(cCtx, op, oend-op, prefsPtr);
470 result = LZ4F_flush(cCtx, op, oend-op, &cOptions);
475 result = LZ4F_compressEnd(cCtx, op, oend-op, &cOptions);
485 BYTE* const oend = op + srcDataLength; local
497 if (oSize > (size_t)(oend-op)) oSize = oend-op
    [all...]
  /external/lz4/lib/
lz4.c 962 BYTE* const oend = op + outputSize; local
    [all...]
lz4hc.c 293 BYTE* oend)
305 if ((limitedOutputBuffer) && ((*op + (length>>8) + length + (2 + 1 + LASTLITERALS)) > oend)) return 1; /* Check output limit */
318 if ((limitedOutputBuffer) && (*op + (length>>8) + (1 + LASTLITERALS) > oend)) return 1; /* Check output limit */
348 BYTE* const oend = op + maxOutputSize; local
387 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
441 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
443 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml2, ref2, limit, oend)) return 0;
465 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
506 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderSpanTest.java 441 public void onSpanChanged(Spannable text, Object span, int ostart, int oend, int nstart,
443 if (text == mSpannable) mChanged.add(new Changed(span, ostart, oend, nstart, nend));

Completed in 260 milliseconds