Searched defs:tb (Results 1 - 2 of 2) sorted by relevance

/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicLUT.cpp68 const uchar *tb = &tg[256]; local
69 const uchar *ta = &tb[256];
73 uchar4 o = {tr[p.x], tg[p.y], tb[p.z], ta[p.w]};
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java201 public SpannableStringBuilder insert(int where, CharSequence tb, int start, int end) { argument
202 return replace(where, where, tb, start, end);
206 public SpannableStringBuilder insert(int where, CharSequence tb) { argument
207 return replace(where, where, tb, 0, tb.length());
434 public SpannableStringBuilder replace(int start, int end, CharSequence tb) { argument
435 return replace(start, end, tb, 0, tb.length());
440 CharSequence tb, int tbstart, int tbend) {
445 CharSequence repl = mFilters[i].filter(tb, tbstar
439 replace(final int start, final int end, CharSequence tb, int tbstart, int tbend) argument
[all...]

Completed in 251 milliseconds