Searched defs:end (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/frameworks/base/sax/java/android/sax/
H A DEndElementListener.java20 * Listens for the end of elements.
25 * Invoked at the end of an element.
27 void end(); method in interface:EndElementListener
H A DEndTextElementListener.java20 * Listens for the end of text elements.
25 * Invoked at the end of a text element with the body of the element.
29 void end(String body); method in interface:EndTextElementListener
/frameworks/base/core/java/android/text/
H A DGetChars.java29 * through <code>end - 1</code> from this CharSequence into <code>dest</code>
32 public void getChars(int start, int end, char[] dest, int destoff); argument
H A DSpannedString.java33 private SpannedString(CharSequence source, int start, int end) { argument
34 super(source, start, end);
37 public CharSequence subSequence(int start, int end) { argument
38 return new SpannedString(this, start, end);
H A DInputFilter.java28 * with the new text from the range <code>start &hellip; end</code>
42 public CharSequence filter(CharSequence source, int start, int end, argument
50 public CharSequence filter(CharSequence source, int start, int end, argument
52 for (int i = start; i < end; i++) {
54 char[] v = new char[end - start];
55 TextUtils.getChars(source, start, end, v, 0);
61 start, end, null, sp, 0);
84 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, argument
89 } else if (keep >= end - start) {
H A DSpanWatcher.java29 public void onSpanAdded(Spannable text, Object what, int start, int end); argument
34 public void onSpanRemoved(Spannable text, Object what, int start, int end); argument
H A DSpannable.java28 * Attach the specified markup object to the range <code>start&hellip;end</code>
39 public void setSpan(Object what, int start, int end, int flags); argument
H A DSpannableString.java33 private SpannableString(CharSequence source, int start, int end) { argument
34 super(source, start, end);
45 public void setSpan(Object what, int start, int end, int flags) { argument
46 super.setSpan(what, start, end, flags);
53 public final CharSequence subSequence(int start, int end) { argument
54 return new SpannableString(this, start, end);
/frameworks/rs/api/
H A DGenerator.cpp57 * end:
71 * end:
85 * end:
99 * end:
112 * end:
136 * end:
163 char* end; local
164 *maxApiLevel = strtol(argv[i], &end, 10);
165 if (*end != '\0') {
/frameworks/av/media/libeffects/loudness/dsp/core/
H A Dbasic-inl.h32 int end = end_index; local
33 while (end > start + 1) {
34 int i = (end + start) / 2;
36 end = i;
/frameworks/base/core/java/android/text/style/
H A DLineBackgroundSpan.java28 CharSequence text, int start, int end,
25 drawBackground(Canvas c, Paint p, int left, int right, int top, int baseline, int bottom, CharSequence text, int start, int end, int lnum) argument
H A DLineHeightSpan.java25 public void chooseHeight(CharSequence text, int start, int end, argument
30 public void chooseHeight(CharSequence text, int start, int end, argument
/frameworks/base/libs/androidfw/tests/
H A DAttributeFinder_test.cpp58 const int end = sizeof(sortedAttributes) / sizeof(*sortedAttributes); local
59 MockAttributeFinder finder(sortedAttributes, end);
68 EXPECT_EQ(end, finder.find(0x7f010002));
72 const int end = sizeof(sortedAttributes) / sizeof(*sortedAttributes); local
73 MockAttributeFinder finder(sortedAttributes, end);
76 EXPECT_EQ(end, finder.find(0x7f010002));
86 const int end = sizeof(sortedAttributes) / sizeof(*sortedAttributes); local
87 MockAttributeFinder finder(sortedAttributes, end);
92 EXPECT_EQ(end, finder.find(0x01010003));
94 EXPECT_EQ(end, finde
101 const int end = sizeof(packageUnsortedAttributes) / sizeof(*packageUnsortedAttributes); local
118 const int end = sizeof(singlePackageAttributes) / sizeof(*singlePackageAttributes); local
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegmentFactory.h33 const_iterator end() const { return m_Segments.end(); } function in class:mcld::ELFSegmentFactory
34 iterator end() { return m_Segments.end(); } function in class:mcld::ELFSegmentFactory
/frameworks/compile/mclinker/include/mcld/MC/
H A DAttributeSet.h41 const_iterator end() const { return m_AttrSet.end(); } function in class:mcld::AttributeSet
42 iterator end() { return m_AttrSet.end(); } function in class:mcld::AttributeSet
H A DSearchDirs.h61 const_iterator end() const { return m_DirList.end(); } function in class:mcld::SearchDirs
62 iterator end() { return m_DirList.end(); } function in class:mcld::SearchDirs
/frameworks/compile/mclinker/include/mcld/Script/
H A DOutputFormatCmd.h40 const_iterator end() const { return m_FormatList.end(); } function in class:mcld::OutputFormatCmd
41 iterator end() { return m_FormatList.end(); } function in class:mcld::OutputFormatCmd
H A DRpnExpr.h42 const_iterator end() const { return m_TokenQueue.end(); } function in class:mcld::RpnExpr
43 iterator end() { return m_TokenQueue.end(); } function in class:mcld::RpnExpr
H A DStringList.h42 const_iterator end() const { return m_Tokens.end(); } function in class:mcld::StringList
43 iterator end() { return m_Tokens.end(); } function in class:mcld::StringList
/frameworks/compile/mclinker/lib/LD/
H A DMergedStringTable.cpp19 string_map_iterator it, end = m_StringMap.end(); local
21 for (it = m_StringMap.begin(); it != end; ++it) {
30 string_map_iterator it, end = m_StringMap.end(); local
31 for (it = m_StringMap.begin(); it != end; ++it) {
38 assert(m_StringMap.find(pStr) != m_StringMap.end());
/frameworks/ex/common/java/com/android/common/
H A DRfc822InputFilter.java33 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, argument
37 if (end-start != 1 || source.charAt(start) != ' ') {
/frameworks/minikin/include/minikin/
H A DFontCollection.h37 int end; member in struct:android::FontCollection::Run
56 size_t end; member in struct:android::FontCollection::Range
/frameworks/support/v4/jellybean-mr1/android/support/v4/widget/
H A DTextViewCompatJbMr1.java28 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
31 textView.setCompoundDrawables(rtl ? end : start, top, rtl ? start : end, bottom);
35 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
38 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top, rtl ? start : end,
43 int start, int top, int end, int bottom) {
45 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top, rtl ? start : end,
27 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
34 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
42 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
/frameworks/support/v4/jellybean-mr2/android/support/v4/widget/
H A DTextViewCompatJbMr2.java27 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
29 textView.setCompoundDrawablesRelative(start, top, end, bottom);
33 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
35 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(start, top, end, bottom);
39 int start, int top, int end, int bottom) {
40 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(start, top, end, bottom);
26 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
32 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
38 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
/frameworks/wilhelm/src/ut/
H A DOpenSLESUT.c109 const Pair *end = &pairs[sizeof(pairs)/sizeof(pairs[0])]; local
110 for (p = pairs; p != end; ++p) {

Completed in 1804 milliseconds

1234567891011>>