Searched defs:end (Results 151 - 175 of 387) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.h64 dataPointArray *end; /*quantization levels for the past (20) frames */ member in struct:__anon488
/frameworks/av/media/libstagefright/foundation/
H A DParsedMessage.cpp70 char *end; local
71 *value = strtol(stringValue.c_str(), &end, 10);
73 if (end == stringValue.c_str() || *end != '\0') {
213 char *end; local
214 *statusCode = strtol(statusCodeString.c_str(), &end, 10);
216 if (*end != '\0' || end == statusCodeString.c_str()
290 char *end; local
291 *value = strtol(stringValue.c_str(), &end, 1
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4ElementaryAssembler.cpp77 char *end; local
78 unsigned y = strtoul(s, &end, 10);
80 if (end == s || *end != '\0') {
216 while (it != queue->end()) {
346 it != headers.end(); ++it) {
H A DASessionDescription.cpp207 char *end; local
208 unsigned long x = strtoul(lastSpacePos + 1, &end, 10);
209 CHECK_GT(end, lastSpacePos + 1);
210 CHECK_EQ(*end, '\0');
239 char *end; local
240 *width = strtoul(s, &end, 10);
241 CHECK_GT(end, s);
242 CHECK_EQ(*end, '-');
244 s = end + 1;
245 *height = strtoul(s, &end, 1
283 char *end; local
312 char *end; local
[all...]
/frameworks/av/services/audioflinger/tests/
H A Dresampler_tests.cpp149 double signalEnergy(T *start, T *end, unsigned stride) argument
153 for (T *p = start; p < end; p += stride) {
156 unsigned count = (end - start + stride - 1) / stride;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegProcessor.cpp321 * naievely scanning until the end.
327 * the end of the image stream there is an End of Image (EOI) marker, which is
367 // First check for JPEG transport header at the end of the buffer
375 uint8_t *end = jpegBuffer + offset; local
376 if (checkJpegStart(jpegBuffer) && checkJpegEnd(end)) {
422 ALOGE("Could not find end of JPEG marker");
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3ZslStream.cpp157 List<sp<RingBufferConsumer::PinnedBufferItem> >::iterator it, end; local
159 end = mInputBufferQueue.end();
162 if (it == end) {
209 Vector<sp<PinnedBufferItem> >::iterator it, end; local
210 for (it = mBuffersInFlight.begin(), end = mBuffersInFlight.end();
211 it != end;
304 // TODO: this is problematic, we'll end up with using wrong result for this pinned buffer.
/frameworks/av/services/camera/libcameraservice/gui/
H A DRingBufferConsumer.cpp69 List<RingBufferItem>::iterator it, end, accIt; local
75 for (it = mBufferItemList.begin(), end = mBufferItemList.end();
76 it != end;
106 } // end scope of mMutex autolock
165 List<RingBufferItem>::iterator it, end; local
167 for (it = mBufferItemList.begin(), end = mBufferItemList.end();
168 it != end;
178 if (it == end) {
190 List<RingBufferItem>::iterator it, end, accIt; local
328 List<RingBufferItem>::iterator it, end, accIt; local
[all...]
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp133 uintptr_t end = reinterpret_cast<uintptr_t>(argv[argc - 1]); local
134 end += strlen(argv[argc - 1]) + 1;
135 return (end - start);
/frameworks/base/core/java/android/animation/
H A DAnimator.java80 * Cancels the animation. Unlike {@link #end()}, <code>cancel()</code> causes the animation to
92 * Ends the animation. This causes the animation to assign the end value of the property being
99 public void end() { method in class:Animator
257 * animation, such as start, repeat, and end.
469 * Notifications indicate animation related events, such as the end or the
481 * <p>Notifies the end of the animation. This callback is not invoked
484 * @param animation The animation which reached its end.
544 * {@link Animator.AnimatorListener#onAnimationRepeat(Animator)} may end up delayed
548 * <li>State change requests ({@link #cancel()}, {@link #end()}, {@link #reverse()}, etc...)
554 * after a call to {@link #end()}
[all...]
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java92 // the style array is a flat array of <type, start, end> hence
175 + ", start=" + style[i+1] + ", end=" + style[i+2]);
360 int start, int end) {
371 if (end != 0 && end != len && buffer.charAt(end - 1) != '\n') {
372 for (end++; end < len; end++) {
373 if (buffer.charAt(end
359 addParagraphSpan(Spannable buffer, Object what, int start, int end) argument
411 chooseHeight(CharSequence text, int start, int end, int spanstartv, int v, Paint.FontMetricsInt fm) argument
418 chooseHeight(CharSequence text, int start, int end, int spanstartv, int v, Paint.FontMetricsInt fm, TextPaint paint) argument
[all...]
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java343 public SentenceWordItem(TextInfo ti, int start, int end) { argument
346 mLength = end - start;
374 final int end = originalText.length();
380 Log.d(TAG, "iterator: break: ---- 1st word start = " + wordStart + ", end = "
383 while (wordStart <= end && wordEnd != BreakIterator.DONE
/frameworks/base/core/java/android/text/
H A DBoringLayout.java257 final int end = Math.min(start + MAX_BUF_LEN, textLength);
261 TextUtils.getChars(text, start, end, buffer, 0);
263 final int len = end - start;
414 public void ellipsized(int start, int end) { argument
416 mEllipsizedCount = end - start;
H A DSpannableStringInternal.java29 int start, int end) {
30 if (start == 0 && end == source.length())
33 mText = source.toString().substring(start, end);
40 copySpans((SpannableStringInternal) source, start, end);
42 copySpans((Spanned) source, start, end);
48 * Copies another {@link Spanned} object's spans between [start, end] into this object.
52 * @param end End index in the source object.
54 private final void copySpans(Spanned src, int start, int end) { argument
55 Object[] spans = src.getSpans(start, end, Object.class);
64 if (en > end)
28 SpannableStringInternal(CharSequence source, int start, int end) argument
79 copySpans(SpannableStringInternal src, int start, int end) argument
124 isOutOfCopyRange(int start, int end, int spanStart, int spanEnd) argument
146 getChars(int start, int end, char[] dest, int off) argument
150 setSpan(Object what, int start, int end, int flags) argument
385 sendSpanAdded(Object what, int start, int end) argument
394 sendSpanRemoved(Object what, int start, int end) argument
413 region(int start, int end) argument
417 checkRange(final String operation, int start, int end) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DBaseMovementMethod.java234 return end(widget, buffer);
353 * Performs a line-end movement action.
354 * Moves the cursor or scrolls to the end of the line.
389 * Performs an end movement action.
398 protected boolean end(TextView widget, Spannable buffer) { method in class:BaseMovementMethod
656 * Performs a scroll to line end action.
657 * Scrolls to the end of the line.
H A DPasswordTransformationMethod.java88 * something strange is going on. (We might still end up with
177 public CharSequence subSequence(int start, int end) { argument
178 char[] buf = new char[end - start];
180 getChars(start, end, buf, 0);
188 public void getChars(int start, int end, char[] dest, int off) { argument
189 TextUtils.getChars(mSource, start, end, dest, off);
214 for (int i = start; i < end; i++) {
H A DTextKeyListener.java176 public void onSpanAdded(Spannable s, Object what, int start, int end) { } argument
177 public void onSpanRemoved(Spannable s, Object what, int start, int end) { } argument
179 public void onSpanChanged(Spannable s, Object what, int start, int end, argument
/frameworks/base/core/java/android/text/util/
H A DLinkify.java117 public final boolean acceptMatch(CharSequence s, int start, int end) {
135 public final boolean acceptMatch(CharSequence s, int start, int end) {
138 for (int i = start; i < end; i++) {
183 * @param end The index of the last character in s that was
188 boolean acceptMatch(CharSequence s, int start, int end); argument
264 applyLink(link.url, link.start, link.end, text);
458 int end = m.end();
462 allowed = matchFilter.acceptMatch(spannable, start, end);
468 applyLink(url, start, end, spannabl
476 applyLink(String url, int start, int end, Spannable text) argument
644 int end; field in class:LinkSpec
[all...]
/frameworks/base/core/java/android/util/
H A DMathUtils.java160 * Returns an interpolated angle in degrees between a set of start and end
164 * travel is determined by the shortest angle between the start and end
170 * @param end the ending angle in degrees
171 * @param amount the position between start and end in the range [0,1]
175 public static float lerpDeg(float start, float end, float amount) { argument
176 final float minAngle = (((end - start) + 180) % 360) - 180;
/frameworks/base/core/java/android/util/jar/
H A DStrictJarVerifier.java452 chunk.start, chunk.end, createdBySigntool, false)) {
473 int start, int end, boolean ignoreSecondEndline, boolean ignorable) {
487 if (ignoreSecondEndline && data[end - 1] == '\n' && data[end - 2] == '\n') {
488 md.update(data, start, end - 1 - start);
490 md.update(data, start, end - start);
472 verify(Attributes attributes, String entry, byte[] data, int start, int end, boolean ignoreSecondEndline, boolean ignorable) argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnection.java104 * acting "after the cursor" would act after the end of the
204 * the cursor is really at the end of the text.</p>
363 * the end of the text, then this method does not fail but deletes all the characters in
390 * the end of the text, then this method does not fail but deletes all the characters in
443 * > 0, this is relative to the end of the text - 1; if <= 0, this
464 * The order of start and end is not important. In effect, the
465 * region from start to end and the region from end to start is
467 * greater than end.</p>
481 * @param end th
486 setComposingRegion(int start, int end) argument
626 setSelection(int start, int end) argument
[all...]
H A DInputConnectionWrapper.java141 public boolean setComposingRegion(int start, int end) { argument
142 return mTarget.setComposingRegion(start, end);
181 public boolean setSelection(int start, int end) { argument
182 return mTarget.setSelection(start, end);
/frameworks/base/core/java/android/widget/
H A DSpellChecker.java194 private void addSpellCheckSpan(Editable editable, int start, int end) { argument
197 editable.setSpan(spellCheckSpan, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
216 public void spellCheck(int start, int end) { argument
218 Log.d(TAG, "Start spell-checking: " + start + ", " + end);
226 end = mTextView.getText().length();
242 spellParser.parse(start, end);
257 spellParser.parse(start, end);
275 final int end = editable.getSpanEnd(spellCheckSpan);
284 final boolean apostrophe = (selectionStart == end + 1 && editable.charAt(end)
505 parse(int start, int end) argument
528 setRangeSpan(Editable editable, int start, int end) argument
753 haveWordBoundariesChanged(final Editable editable, final int start, final int end, final int spanStart, final int spanEnd) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java83 * even though they don't end in a line break
129 int end = start + count;
130 while (start < end) {
132 // way, if we end with a partial character we don't lose it.
133 int numBytes = Math.min(encodedBytes.remaining(), end - start);
340 CharSequence csq, int start, int end) {
341 builder.append(csq, start, end);
339 append( CharSequence csq, int start, int end) argument
/frameworks/base/core/java/com/android/internal/util/
H A DFastPrintWriter.java294 final int end = i + length;
295 while (i < end) {
297 appendLocked(str, i, next < end ? BUFFER_LEN : (end - i));
314 final int end = i + length;
315 while (i < end) {
317 appendLocked(buf, i, next < end ? BUFFER_LEN : (end - i));
659 * PrintWriter.print(csq.subsequence(start, end).toString())}. If {@code
668 * @param end
678 append(CharSequence csq, int start, int end) argument
[all...]

Completed in 393 milliseconds

1234567891011>>