Searched defs:start (Results 176 - 200 of 488) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/
H A DDRMExtractor.cpp43 virtual status_t start(MetaData *params = NULL);
106 status_t DRMSource::start(MetaData *params) { function in class:android::DRMSource
115 return mOriginalMediaSource->start(params);
H A DJPEGSource.cpp72 status_t JPEGSource::start(MetaData *) { function in class:android::JPEGSource
H A DSurfaceMediaSource.cpp139 status_t SurfaceMediaSource::start(MetaData *params) function in class:android::SurfaceMediaSource
141 ALOGV("start");
320 // This frame predates start of record, discard
H A DTimedEventQueue.cpp60 void TimedEventQueue::start() { function in class:android::TimedEventQueue
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp136 status_t AACEncoder::start(MetaData *params) { function in class:android::AACEncoder
138 ALOGW("Call start() when encoder already started");
154 status_t err = mSource->start(params);
/frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
H A DAMRWB_E_SAMPLE.c107 clock_t start, finish; local
203 start = clock();
233 duration += finish - start;
/frameworks/av/media/libstagefright/foundation/
H A DAString.cpp156 void AString::erase(size_t start, size_t n) { argument
157 CHECK_LT(start, mSize);
158 CHECK_LE(start + n, mSize);
162 memmove(&mData[start], &mData[start + n], mSize - start - n);
262 ssize_t AString::find(const char *substring, size_t start) const {
263 CHECK_LE(start, size());
265 const char *match = strstr(mData + start, substring);
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp76 status_t AnotherPacketSource::start(MetaData * /* params */) { function in class:android::AnotherPacketSource
H A DMPEG2TSExtractor.cpp45 virtual status_t start(MetaData *params = NULL);
72 status_t MPEG2TSSource::start(MetaData *params) { function in class:android::MPEG2TSSource
73 return mImpl->start(params);
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.cpp47 status_t TimedTextSRTSource::start() { function in class:android::TimedTextSRTSource
143 // the start time format is: hours:minutes:seconds,milliseconds
/frameworks/av/services/audioflinger/tests/
H A Dresampler_tests.cpp146 double signalEnergy(T *start, T *end, unsigned stride) argument
150 for (T *p = start; p < end; p += stride) {
153 unsigned count = (end - start + stride - 1) / stride;
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp30 "Usage: app_process [java-options] cmd-dir start-class-name [options]\n");
64 * The easiest fix is to call FindClass here, early on before we start
131 // the start of the argument block (argv[0]) with the new name of
132 // the process, so we'd mysteriously start getting truncated process
134 uintptr_t start = reinterpret_cast<uintptr_t>(argv[0]); local
137 return (end - start);
212 // --start-system-server : Start the system server.
251 } else if (strcmp(arg, "--start-system-server") == 0) {
280 args.add(String8("start-system-server"));
307 runtime.start("co
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimator.java44 * Starts this animation. If the animation has a nonzero startDelay, the animation will start
56 public void start() { method in class:Animator
144 * after {@link #start()} is called.
152 * after {@link #start()} is called.
216 * animation, such as start, repeat, and end.
329 * and PropertyValuesHolder objects to get the start values for its properties.
341 * and PropertyValuesHolder objects to get the start values for its properties.
383 * <p>Notifies the start of the animation.</p>
H A DObjectAnimator.java295 * At least two <code>int[]</code> values must be provided, a start and end. More than two
335 * <p>At least two values must be provided, a start and end. More than two
490 * At least two <code>float[]</code> values must be provided, a start and end. More than two
531 * <p>At least two values must be provided, a start and end. More than two
788 public void start() { method in class:ObjectAnimator
829 super.start();
867 * <code>ObjectAnimator.ofInt(target, propertyName, 0, 10).setDuration(500).start()</code>.
/frameworks/base/core/java/android/bluetooth/le/
H A DScanRecord.java290 private static byte[] extractBytes(byte[] scanRecord, int start, int length) { argument
292 System.arraycopy(scanRecord, start, bytes, 0, length);
/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]);
356 int start, int end) {
359 if (start != 0 && start != len && buffer.charAt(start - 1) != '\n') {
360 for (start--; start > 0; start--) {
361 if (buffer.charAt(start
355 addParagraphSpan(Spannable buffer, Object what, int start, int end) argument
407 chooseHeight(CharSequence text, int start, int end, int spanstartv, int v, Paint.FontMetricsInt fm) argument
414 chooseHeight(CharSequence text, int start, int end, int spanstartv, int v, Paint.FontMetricsInt fm, TextPaint paint) argument
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDeviceConnection.java245 private static void checkBounds(byte[] buffer, int start, int length) { argument
247 if (start < 0 || start + length > bufferLength) {
248 throw new IllegalArgumentException("Buffer start or length out of bounds.");
/frameworks/base/core/java/android/net/
H A DDnsPinger.java105 long start = SystemClock.elapsedRealtime(); field in class:DnsPinger.ActivePing
197 (int) (SystemClock.elapsedRealtime() - curPing.start);
220 curPing.start + curPing.timeout) {
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java157 * that share the same start position and length.
343 public SentenceWordItem(TextInfo ti, int start, int end) { argument
345 mStart = start;
346 mLength = end - start;
373 final int start = 0;
377 int wordEnd = wordIterator.following(start);
380 Log.d(TAG, "iterator: break: ---- 1st word start = " + wordStart + ", end = "
385 if (wordEnd >= start && wordEnd > wordStart) {
/frameworks/base/core/java/android/speech/tts/
H A DFileSynthesisCallback.java105 public int start(int sampleRateInHz, int audioFormat, int channelCount) { method in class:FileSynthesisCallback
107 Log.d(TAG, "FileSynthesisRequest.start(" + sampleRateInHz + "," + audioFormat
226 // Write WAV header at start of file
/frameworks/base/core/java/android/text/
H A DBoringLayout.java403 public void ellipsized(int start, int end) { argument
404 mEllipsizedStart = start;
405 mEllipsizedCount = end - start;
H A DSelection.java24 * A cursor is a selection where the start and end are at the same offset.
64 * Set the selection anchor to <code>start</code> and the selection edge
67 public static void setSelection(Spannable text, int start, int stop) { argument
69 // start = pin(start, 0, len); XXX remove unless we really need it
75 if (ostart != start || oend != stop) {
76 text.setSpan(SELECTION_START, start, start,
120 * start, or return false if the cursor is already on the top line.
123 int start
[all...]
H A DSpannableStringInternal.java29 int start, int end) {
30 if (start == 0 && end == source.length())
33 mText = source.toString().substring(start, end);
40 Object[] spans = sp.getSpans(start, end, Object.class);
47 if (st < start)
48 st = start;
52 setSpan(spans[i], st - start, en - start, fl);
71 public final void getChars(int start, int end, char[] dest, int off) { argument
72 mText.getChars(start, en
28 SpannableStringInternal(CharSequence source, int start, int end) argument
75 setSpan(Object what, int start, int end, int flags) argument
287 nextSpanTransition(int start, int limit, Class kind) argument
309 sendSpanAdded(Object what, int start, int end) argument
318 sendSpanRemoved(Object what, int start, int end) argument
337 region(int start, int end) argument
341 checkRange(final String operation, int start, int end) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java70 public void beforeTextChanged(CharSequence s, int start, argument
75 public void onTextChanged(CharSequence s, int start, argument
107 sp.setSpan(new Visible(sp, this), start, start + count,
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;
[all...]
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

Completed in 3515 milliseconds

1234567891011>>