Searched defs:end (Results 51 - 75 of 230) sorted by relevance

12345678910

/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOTPLT.cpp48 assert((it != m_SectionData.end()) &&
71 X86GOTPLT::iterator X86GOTPLT::end() function in class:mcld::X86GOTPLT
73 return m_SectionData.end();
76 X86GOTPLT::const_iterator X86GOTPLT::end() const function in class:mcld::X86GOTPLT
78 return m_SectionData.end();
109 for (; it != end() ; ++it) {
129 assert(m_GOTPLTIterator != m_SectionData.getFragmentList().end()
138 } //end mcld namespace
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DPatternScanner.java57 updateLineCount(mOffset, matcher.end());
58 mOffset = matcher.end();
59 result = mInput.substring(matcher.start(), matcher.end());
96 updateLineCount(mOffset, matcher.end());
97 mOffset = matcher.end();
115 public void updateLineCount(int start, int end) { argument
116 for (int i = start; i < end; ++i) {
/frameworks/base/media/mca/filterfw/native/base/
H A Dutilities.h50 ForwardIterator end) {
51 while (begin != end) {
64 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
78 if (it == collection.end()) {
117 if (iter != items_.end())
132 if (it == collection.end()) {
142 return collection.find(key) != collection.end();
49 STLDeleteContainerPointers(ForwardIterator begin, ForwardIterator end) argument
/frameworks/base/media/mca/filterpacks/native/base/
H A Dutilities.h50 ForwardIterator end) {
51 while (begin != end) {
64 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
78 if (it == collection.end()) {
117 if (iter != items_.end())
132 if (it == collection.end()) {
142 return collection.find(key) != collection.end();
49 STLDeleteContainerPointers(ForwardIterator begin, ForwardIterator end) argument
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp266 uint8_t* end = (uint8_t*)mBuffer->data() + mBuffer->range_offset() local
268 memcpy((uint8_t*)pBuffer->raw + done, end - mLeftover, todo);
/frameworks/av/media/libmedia/
H A DMetadata.cpp73 const size_t end = mData->dataPosition(); local
76 mData->writeInt32(end - mBegin);
77 mData->setDataPosition(end);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.cpp1212 UChar *end; local
1217 end = pred + (16 << 3);
1231 while (pred < end) ;
1249 UChar *end; local
1255 end = cur + (width << 3);
1272 while (cur < end) ;
/frameworks/av/media/libstagefright/rtsp/
H A DARTPSession.cpp218 char *end; local
219 unsigned long x = strtoul(portString.c_str(), &end, 10);
220 if (end == portString.c_str() || *end != '\0') {
/frameworks/av/media/libstagefright/wifi-display/
H A DParsedMessage.cpp69 char *end; local
70 *value = strtol(stringValue.c_str(), &end, 10);
72 if (end == stringValue.c_str() || *end != '\0') {
153 // Found the end of headers.
195 char *end; local
196 *statusCode = strtol(statusCodeString.c_str(), &end, 10);
198 if (*end != '\0' || end == statusCodeString.c_str()
272 char *end; local
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimator.java50 * Cancels the animation. Unlike {@link #end()}, <code>cancel()</code> causes the animation to
62 * Ends the animation. This causes the animation to assign the end value of the property being
69 public void end() { method in class:Animator
138 * animation, such as start, repeat, and end.
242 * Notifications indicate animation related events, such as the end or the
254 * <p>Notifies the end of the animation. This callback is not invoked
257 * @param animation The animation which reached its end.
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditText.java168 protected void deleteText_internal(int start, int end) { argument
171 mIME.onExtractedDeleteText(start, end);
179 protected void replaceText_internal(int start, int end, CharSequence text) { argument
182 mIME.onExtractedReplaceText(start, end, text);
190 protected void setSpan_internal(Object span, int start, int end, int flags) { argument
193 mIME.onExtractedSetSpan(span, start, end, flags);
201 protected void setCursorPosition_internal(int start, int end) { argument
204 mIME.onExtractedSelectionChanged(start, end);
/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java66 public <T> T[] getSpans(int start, int end, Class<T> kind) { argument
67 return mSpanned.getSpans(start, end, kind);
82 public int nextSpanTransition(int start, int end, Class kind) { argument
83 return mSpanned.nextSpanTransition(start, end, kind);
100 public CharSequence subSequence(int start, int end) { argument
101 return AlteredCharSequence.make(mSource.subSequence(start, end),
105 public void getChars(int start, int end, char[] dest, int off) { argument
106 TextUtils.getChars(mSource, start, end, dest, off);
109 end = Math.min(mEnd, end);
[all...]
H A DAutoText.java109 public static String get(CharSequence src, final int start, final int end, argument
111 return getInstance(view).lookup(src, start, end);
132 private String lookup(CharSequence src, final int start, final int end) { argument
135 for (int i = start; i < end; i++) {
140 if ((i == end - 1)
226 // end, so fill in the right hand side fields.
253 // If this is the end of the word, fill in the offset.
H A DMeasuredText.java92 void setPara(CharSequence text, int start, int end, TextDirectionHeuristic textDir) { argument
96 int len = end - start;
106 TextUtils.getChars(text, start, end, mChars, 0);
110 ReplacementSpan[] spans = spanned.getSpans(start, end,
116 // The span interval may be larger and must be restricted to [start, end[
H A DSpanned.java40 * Depending on whether the insertion happens at the beginning or the end of a span, the span
42 * its beginning or a POINT at its end) or it will be <i>excluded</i>.
74 * (SPAN_MARK_MARK), except that if either end of the span is
75 * at the end of the buffer, that end behaves like _POINT
77 * middle and ends at the end, or SPAN_EXCLUSIVE_INCLUSIVE
78 * if it both starts and ends at the end).
80 * Its endpoints must be the start or end of the buffer or
83 * next \n that follows in the buffer (or to the end of
168 public <T> T[] getSpans(int start, int end, Clas argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DArrowKeyMovementMethod.java220 protected boolean end(TextView widget, Spannable buffer) { method in class:ArrowKeyMovementMethod
H A DMultiTapKeyListener.java274 int end = buf.getSpanEnd(TextKeyListener.ACTIVE);
276 if (st == start && en == end) {
287 public void onSpanAdded(Spannable s, Object what, int start, int end) { } argument
288 public void onSpanRemoved(Spannable s, Object what, int start, int end) { } argument
H A DQwertyKeyListener.java329 // only cancel the autocomplete if the cursor is at the end of
359 private String getReplacement(CharSequence src, int start, int end, argument
361 int len = end - start;
364 String replacement = AutoText.get(src, start, end, view);
367 String key = TextUtils.substring(src, start, end).toLowerCase();
368 replacement = AutoText.get(key, 0, end - start, view);
378 for (int j = start; j < end; j++) {
412 * @param end the end of the replaced region; the location of the cursor
415 public static void markAsReplaced(Spannable content, int start, int end, argument
[all...]
H A DReplacementTransformationMethod.java136 public CharSequence subSequence(int start, int end) { argument
137 char[] c = new char[end - start];
139 getChars(start, end, c, 0);
150 public void getChars(int start, int end, char[] dest, int off) { argument
151 TextUtils.getChars(mSource, start, end, dest, off);
152 int offend = end - start + off;
179 public CharSequence subSequence(int start, int end) { argument
180 return new SpannedString(this).subSequence(start, end);
183 public <T> T[] getSpans(int start, int end, Class<T> type) { argument
184 return mSpanned.getSpans(start, end, typ
199 nextSpanTransition(int start, int end, Class type) argument
[all...]
/frameworks/base/core/java/android/text/style/
H A DBulletSpan.java82 CharSequence text, int start, int end,
80 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout l) argument
H A DLeadingMarginSpan.java60 * @param end the end of the line
67 CharSequence text, int start, int end,
140 CharSequence text, int start, int end,
64 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
137 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
H A DQuoteSpan.java68 CharSequence text, int start, int end,
66 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
/frameworks/base/core/java/android/view/
H A DAccessibilityIterators.java59 protected int[] getRange(int start, int end) { argument
60 if (start < 0 || end < 0 || start == end) {
64 mSegment[1] = end;
115 final int end = mImpl.following(start);
116 if (end == BreakIterator.DONE) {
119 return getRange(start, end);
131 int end = offset;
132 if (end > textLegth) {
133 end
[all...]
H A DHardwareLayer.java165 abstract void end(Canvas currentCanvas); method in class:HardwareLayer
/frameworks/base/core/jni/
H A Dandroid_os_SystemProperties.cpp72 char* end; local
84 result = strtol(buf, &end, 0);
85 if (end == buf) {
102 char* end; local
114 result = strtoll(buf, &end, 0);
115 if (end == buf) {

Completed in 7681 milliseconds

12345678910