Searched defs:end (Results 1 - 25 of 293) 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/rs/cpu_ref/linkloader/utils/
H A Dhelper.cpp26 size_t size, size_t begin, size_t end) {
27 if (end <= begin) {
33 size_t upper = (end & (~0xfUL)) ? end : ((end + 16UL) & (~0xfUL));
47 if (j == end) {
25 dump_hex(unsigned char const *data, size_t size, size_t begin, size_t end) argument
/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);
H A DSpanSet.java50 // These arrays may end up being too large because of the discarded empty spans
78 * @param end must be strictly greater than start
80 public boolean hasSpansIntersecting(int start, int end) { argument
83 if (spanStarts[i] >= end || spanEnds[i] <= start) continue;
/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/compile/mclinker/include/mcld/LD/
H A DELFSegmentFactory.h34 const_iterator end() const { return m_Segments.end(); } function in class:mcld::ELFSegmentFactory
35 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.h41 const_iterator end() const { return m_FormatList.end(); } function in class:mcld::OutputFormatCmd
42 iterator end() { return m_FormatList.end(); } function in class:mcld::OutputFormatCmd
H A DRpnExpr.h43 const_iterator end() const { return m_TokenQueue.end(); } function in class:mcld::RpnExpr
44 iterator end() { return m_TokenQueue.end(); } function in class:mcld::RpnExpr
H A DStringList.h43 const_iterator end() const { return m_Tokens.end(); } function in class:mcld::StringList
44 iterator end() { return m_Tokens.end(); } function in class:mcld::StringList
/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/wilhelm/src/ut/
H A DOpenSLESUT.c109 const Pair *end = &pairs[sizeof(pairs)/sizeof(pairs[0])]; local
110 for (p = pairs; p != end; ++p) {
/frameworks/av/media/img_utils/src/
H A DEndianUtils.cpp22 EndianOutput::EndianOutput(Output* out, Endianness end) argument
23 : mOffset(0), mOutput(out), mEndian(end) {}
36 void EndianOutput::setEndianness(Endianness end) { argument
37 mEndian = end;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode_inline.h26 UInt end, match; local
33 end = 1;
35 end = 1 << (32 - nc);
37 while (match >= end)
73 end = 1 << (32 - nc);
74 while (match >= end)
117 UInt end, match; local
135 mov end, #0x80000000 local
136 mov end, end, ls local
176 mov end, #0x80000000 local
177 mov end, end, lsr run /* mask*/ local
231 UInt end = 0, match; local
[all...]
/frameworks/av/services/audioflinger/
H A DStateQueue.cpp83 template<typename T> void StateQueue<T>::end(bool didModify) function in class:android::StateQueue
85 ALOG_ASSERT(mInMutation, "end() called when not in a mutation");
86 ALOG_ASSERT(mIsInitialized || didModify, "first end() must modify for initialization");
/frameworks/av/services/camera/libcameraservice/utils/
H A DCameraTraces.cpp55 pcsList.erase(--pcsList.end());
84 List<ProcessCallStack>::iterator it, end; local
85 for (it = pcsList.begin(), end = pcsList.end(); it != end; ++it) {

Completed in 8594 milliseconds

1234567891011>>