Searched refs:en (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/docs/html/resources/
H A Dresources-data.js49 en: 'Avoiding Memory Leaks'
52 en: 'Mobile devices often have limited memory, and memory leaks can cause your application to waste this valuable resource without your knowledge. This article provides tips to help you avoid common causes of memory leaks on the Android platform.'
59 en: 'Backward Compatibility'
62 en: 'The Android platform strives to ensure backwards compatibility. However, sometimes you want to use new features which aren\'t supported on older platforms. This article discusses strategies for selectively using these features based on availability, allowing you to keep your applications portable across a wide range of devices.'
69 en: 'Can I Use this Intent?'
72 en: 'Android offers a very powerful and yet easy-to-use message type called an intent. You can use intents to turn applications into high-level libraries and make code modular and reusable. While it is nice to be able to make use of a loosely coupled API, there is no guarantee that the intent you send will be received by another application. This article describes a technique you can use to find out whether the system contains any application capable of responding to the intent you want to use.'
79 en: 'Creating an Input Method'
82 en: 'Input Method Editors (IMEs) provide the mechanism for entering text into text fields and other Views. Android devices come bundled with at least one IME, but users can install additional IMEs. This article covers the basics of developing an IME for the Android platform.'
89 en: 'Drawable Mutations'
92 en
[all...]
/frameworks/base/core/java/android/text/
H A DEditable.java29 * Replaces the specified range (<code>st&hellip;en</code>) of text in this
48 public Editable replace(int st, int en, CharSequence source, int start, int end); argument
51 * Convenience for replace(st, en, text, 0, text.length())
54 public Editable replace(int st, int en, CharSequence text); argument
69 * Convenience for replace(st, en, "", 0, 0)
72 public Editable delete(int st, int en); argument
H A DSpannableStringInternal.java42 int en = sp.getSpanEnd(spans[i]);
47 if (en > end)
48 en = end;
50 setSpan(spans[i], st - start, en - start, fl);
296 int en = data[i * COLUMNS + END];
300 if (en > start && en < limit && kind.isInstance(spans[i]))
301 limit = en;
325 private void sendSpanChanged(Object what, int s, int e, int st, int en) { argument
326 SpanWatcher[] recip = getSpans(Math.min(s, st), Math.max(e, en),
[all...]
H A DSpannableStringBuilder.java77 int en = sp.getSpanEnd(spans[i]) - start;
85 if (en < 0)
86 en = 0;
87 if (en > end - start)
88 en = end - start;
90 setSpan(spans[i], st, en, fl);
285 int en = mSpanEnds[i];
286 if (en > mGapStart)
287 en -= mGapLength;
290 int oen = en;
922 sendSpanChanged(Object what, int s, int e, int st, int en) argument
[all...]
H A DDynamicLayout.java235 int en = sp.getSpanEnd(force[i]);
246 if (en > where + after) {
249 int diff = en - (where + after);
H A DTextUtils.java984 int en = source.getSpanEnd(spans[i]);
989 if (en > end)
990 en = end;
992 dest.setSpan(spans[i], st - start + destoff, en - start + destoff,
H A DLayout.java1322 int en = Math.min(end, there);
1324 if (st != en) {
1326 float h2 = getHorizontal(en, true, line);
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java155 int en = sp.getSpanEnd(TextKeyListener.ACTIVE);
157 if (i >= st && i < en) {
166 en = sp.getSpanEnd(visible[a]);
168 if (i >= st && i < en) {
192 int st = -1, en = -1;
200 en = sp.getSpanEnd(TextKeyListener.ACTIVE);
216 if (! (i >= st && i < en)) {
H A DMultiTapKeyListener.java267 int en = Selection.getSelectionEnd(buf);
272 if (st == start && en == end) {
H A DTextKeyListener.java176 int st, int en) {
175 onSpanChanged(Spannable s, Object what, int start, int end, int st, int en) argument
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
H A Dset_sign.cpp370 Word16 en[L_CODE]; // correlation vector
412 en[i] = cor;
422 cor = en[j];
505 Word16 en[L_CODE]; /* correlation vector */ local
538 p_en = &en[L_CODE-1];
571 cor = en[j];
/frameworks/base/opengl/libagl/
H A Dlight.cpp218 uint32_t en = c->lighting.enabledLights; local
220 while (en) {
221 const int i = 31 - gglClz(en);
222 en &= ~(1<<i);
247 uint32_t en = c->lighting.enabledLights; local
248 while (en) {
249 const int i = 31 - gglClz(en);
250 en &= ~(1<<i);
319 uint32_t en = c->lighting.enabledLights; local
320 while (en) {
350 uint32_t en = c->lighting.enabledLights; local
[all...]
/frameworks/base/services/audioflinger/
H A DAudioMixer.cpp392 uint32_t en = state->enabledTracks; local
393 while (en) {
394 const int i = 31 - __builtin_clz(en);
395 en &= ~(1<<i);
476 uint32_t en = state->enabledTracks; local
477 while (en) {
478 const int i = 31 - __builtin_clz(en);
479 en &= ~(1<<i);
1141 uint32_t en = state->enabledTracks; local
1143 i = 31 - __builtin_clz(en);
[all...]
/frameworks/base/core/tests/coretests/src/android/text/
H A DSpannedTest.java165 int st, int en) { }
164 onSpanChanged(Spannable b, Object o, int s, int e, int st, int en) argument
/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Dadj_thr.c631 Word32 en[4]; local
672 en[enIdx] = fixmul(avgEn, pow2_xy(L_negate(enFac),7*4));
695 if (ahFlag[ch][sfb] != NO_AH && psyOutChan->sfbEnergy[sfb] < en[enIdx]){
/frameworks/base/core/java/android/widget/
H A DTextView.java8065 Object what, int s, int e, int st, int en) {
8067 + " st=" + st + " en=" + en + " what=" + what + ": " + buf);
8068 TextView.this.spanChange(buf, what, s, st, e, en);
8064 onSpanChanged(Spannable buf, Object what, int s, int e, int st, int en) argument

Completed in 2283 milliseconds