/frameworks/base/core/java/android/text/method/ |
D | PasswordTransformationMethod.java | 154 int en = sp.getSpanEnd(TextKeyListener.ACTIVE); in charAt() local 156 if (i >= st && i < en) { in charAt() 165 en = sp.getSpanEnd(visible[a]); in charAt() 167 if (i >= st && i < en) { in charAt() 191 int st = -1, en = -1; in getChars() local 199 en = sp.getSpanEnd(TextKeyListener.ACTIVE); in getChars() 215 if (! (i >= st && i < en)) { in getChars()
|
D | QwertyKeyListener.java | 330 int en = content.getSpanEnd(repl[0]); in onKeyDown() local 339 if (selStart >= en) { in onKeyDown() 341 en, en, Spannable.SPAN_POINT_POINT); in onKeyDown() 342 content.replace(st, en, old); in onKeyDown() 344 en = content.getSpanStart(TextKeyListener.INHIBIT_REPLACEMENT); in onKeyDown() 345 if (en - 1 >= 0) { in onKeyDown() 347 en - 1, en, in onKeyDown()
|
D | MultiTapKeyListener.java | 274 int en = Selection.getSelectionEnd(buf); in run() local 279 if (st == start && en == end) { in run()
|
D | TextKeyListener.java | 185 int st, int en) { in onSpanChanged()
|
/frameworks/base/core/java/android/text/ |
D | Editable.java | 52 public Editable replace(int st, int en, CharSequence source, int start, int end); in replace() argument 58 public Editable replace(int st, int en, CharSequence text); in replace() argument 76 public Editable delete(int st, int en); in delete() argument
|
D | SpannableStringInternal.java | 60 int en = src.getSpanEnd(spans[i]); in copySpans() local 65 if (en > end) in copySpans() 66 en = end; in copySpans() 68 setSpan(spans[i], st - start, en - start, fl, false/*enforceParagraph*/); in copySpans() 383 int en = data[i * COLUMNS + END]; in nextSpanTransition() local 387 if (en > start && en < limit && kind.isInstance(spans[i])) in nextSpanTransition() 388 limit = en; in nextSpanTransition() 412 private void sendSpanChanged(Object what, int s, int e, int st, int en) { in sendSpanChanged() argument 413 SpanWatcher[] recip = getSpans(Math.min(s, st), Math.max(e, en), in sendSpanChanged() 418 recip[i].onSpanChanged((Spannable) this, what, s, e, st, en); in sendSpanChanged() local
|
D | SpannableStringBuilder.java | 88 int en = sp.getSpanEnd(spans[i]) - start; in SpannableStringBuilder() local 96 if (en < 0) in SpannableStringBuilder() 97 en = 0; in SpannableStringBuilder() 98 if (en > end - start) in SpannableStringBuilder() 99 en = end - start; in SpannableStringBuilder() 101 setSpan(false, spans[i], st, en, fl, false/*enforceParagraph*/); in SpannableStringBuilder() 423 int en = sp.getSpanEnd(spans[i]); in change() local 426 if (en > csEnd) en = csEnd; in change() 431 int copySpanEnd = en - csStart + start; in change() 1165 int en = resolveGap(mSpanEnds[i]); in nextSpanTransitionRec() local [all …]
|
D | DynamicLayout.java | 247 int en = sp.getSpanEnd(force[i]); in reflow() local 258 if (en > where + after) { in reflow() 261 int diff = en - (where + after); in reflow()
|
D | TextUtils.java | 1062 int en = source.getSpanEnd(spans[i]); in copySpansFrom() local 1067 if (en > end) in copySpansFrom() 1068 en = end; in copySpansFrom() 1070 dest.setSpan(spans[i], st - start + destoff, en - start + destoff, in copySpansFrom()
|
D | Layout.java | 1677 int en = Math.min(end, there); in addSelection() local 1679 if (st != en) { in addSelection() 1681 float h2 = getHorizontal(en, true, line, false /* not clamped */); in addSelection()
|
/frameworks/base/core/java/android/security/net/config/ |
D | KeyStoreCertificateSource.java | 59 for (Enumeration<String> en = mKeyStore.aliases(); en.hasMoreElements();) { in ensureInitialized() 60 String alias = en.nextElement(); in ensureInitialized()
|
/frameworks/native/opengl/libagl/ |
D | light.cpp | 218 uint32_t en = c->lighting.enabledLights; in validate_light_mvi() local 220 while (en) { in validate_light_mvi() 221 const int i = 31 - gglClz(en); in validate_light_mvi() 222 en &= ~(1<<i); in validate_light_mvi() 247 uint32_t en = c->lighting.enabledLights; in validate_light() local 248 while (en) { in validate_light() 249 const int i = 31 - gglClz(en); in validate_light() 250 en &= ~(1<<i); in validate_light() 319 uint32_t en = c->lighting.enabledLights; in lightVertexMaterial() local 320 while (en) { in lightVertexMaterial() [all …]
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
D | set_sign.cpp | 505 Word16 en[L_CODE]; /* correlation vector */ in set_sign12k2() local 538 p_en = &en[L_CODE-1]; in set_sign12k2() 571 cor = en[j]; in set_sign12k2()
|
/frameworks/av/media/libaudioprocessing/ |
D | AudioMixer.cpp | 946 uint32_t en = state->enabledTracks; in process__validate() local 947 while (en) { in process__validate() 948 const int i = 31 - __builtin_clz(en); in process__validate() 949 en &= ~(1<<i); in process__validate() 1053 uint32_t en = state->enabledTracks; in process__validate() local 1054 while (en) { in process__validate() 1055 const int i = 31 - __builtin_clz(en); in process__validate() 1056 en &= ~(1<<i); in process__validate()
|
/frameworks/base/core/tests/coretests/src/android/text/ |
D | SpannedTest.java | 172 public void onSpanChanged(Spannable b, Object o, int s, int e, int st, int en) { } in onSpanChanged() argument
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
D | adj_thr.c | 635 Word32 en[4]; in allowMoreHoles() local 676 en[enIdx] = fixmul(avgEn, pow2_xy(L_negate(enFac),7*4)); in allowMoreHoles() 699 if (ahFlag[ch][sfb] != NO_AH && psyOutChan->sfbEnergy[sfb] < en[enIdx]){ in allowMoreHoles()
|
/frameworks/rs/script_api/ |
D | rs_matrix.spec | 321 See https://en.wikipedia.org/wiki/Orthographic_projection . 354 See http://en.wikipedia.org/wiki/Rotation_matrix .
|
/frameworks/rs/script_api/include/ |
D | rs_matrix.rsh | 338 * See https://en.wikipedia.org/wiki/Orthographic_projection . 372 * See http://en.wikipedia.org/wiki/Rotation_matrix .
|
/frameworks/av/media/libaaudio/ |
D | Doxyfile.orig | 79 # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), 80 # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, 669 # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. 1086 # http://en.wikipedia.org/wiki/Hue for more information. For instance the value 1189 # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on 1414 # http://docs.mathjax.org/en/latest/output.html) for more details. 1444 # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an 1675 # http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
|
D | Doxyfile | 79 # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), 80 # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, 669 # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. 1095 # http://en.wikipedia.org/wiki/Hue for more information. For instance the value 1198 # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on 1423 # http://docs.mathjax.org/en/latest/output.html) for more details. 1453 # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an 1684 # http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
|
/frameworks/base/tools/layoutlib/create/ |
D | README.txt | 261 http://en.wikipedia.org/wiki/Java_bytecode_instruction_listings
|
/frameworks/native/docs/ |
D | Doxyfile | 72 # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English 73 # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, 613 # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style 984 # see http://en.wikipedia.org/wiki/Hue for more information. 1421 # http://en.wikipedia.org/wiki/BibTeX for more info.
|
/frameworks/wilhelm/doc/ |
D | Doxyfile | 58 # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English 59 # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, 815 # see http://en.wikipedia.org/wiki/Hue for more information.
|
/frameworks/base/core/java/android/widget/ |
D | TextView.java | 11924 public void onSpanChanged(Spannable buf, Object what, int s, int e, int st, int en) { in onSpanChanged() argument 11927 + " st=" + st + " en=" + en + " what=" + what + ": " + buf); in onSpanChanged() 11929 TextView.this.spanChange(buf, what, s, st, e, en); in onSpanChanged()
|
/frameworks/data-binding/prebuilds/1.0-rc0/ |
D | databinding-studio-bundle.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/databinding/
android/ ... |