Searched defs:start (Results 251 - 275 of 488) sorted by relevance

<<11121314151617181920

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewBasicTest.java320 void removeItems(int start, int count) { argument
322 notifyItemRangeRemoved(start, count);
325 void addItems(int start, int count) { argument
327 notifyItemRangeInserted(start, count);
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp229 status_t AacAdtsSource::start(MetaData *params) { function in class:android::AacAdtsSource
/frameworks/av/media/libmedia/
H A DIMediaRecorder.cpp252 status_t start() function in class:android::BpMediaRecorder
254 ALOGV("start");
339 reply->writeInt32(start());
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp52 mLooper->start(
188 // this is really just paused. handle as seek to start
213 // this is really just paused. handle as seek to start
224 status_t NuPlayerDriver::start() { function in class:android::NuPlayerDriver
225 ALOGD("start(%p)", this);
245 mPlayer->start();
H A DRTSPSource.cpp82 mLooper->start();
114 void NuPlayer::RTSPSource::start() { function in class:android::NuPlayer::RTSPSource
/frameworks/av/media/libstagefright/
H A DAudioPlayer.cpp79 status_t AudioPlayer::start(bool sourceAlreadyStarted) { function in class:android::AudioPlayer
85 err = mSource->start();
203 err = mAudioSink->start();
204 // do not alter behavior for non offloaded tracks: ignore start status.
254 mAudioTrack->start();
294 err = mAudioSink->start();
296 err = mAudioTrack->start();
782 // mSeekTimeUs is either seek time while seeking or 0 if playback did not start.
831 mAudioSink->start();
839 mAudioTrack->start();
[all...]
H A DMediaCodecSource.cpp43 status_t start(const sp<MetaData> &meta, const sp<AMessage> &notify);
114 status_t MediaCodecSource::Puller::start(const sp<MetaData> &meta, function in class:android::MediaCodecSource::Puller
116 ALOGV("puller (%s) start", mIsAudio ? "audio" : "video");
117 mLooper->start(
176 status_t err = mSource->start(static_cast<MetaData *>(obj.get()));
271 status_t MediaCodecSource::start(MetaData* params) { function in class:android::MediaCodecSource
380 mCodecLooper->start();
425 err = mEncoder->start();
670 // queued before start, and offset timeUs by start tim
[all...]
H A DWAVExtractor.cpp64 virtual status_t start(MetaData *params = NULL);
361 status_t WAVSource::start(MetaData * /* params */) { function in class:android::WAVSource
362 ALOGV("WAVSource::start");
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp762 static size_t StringSize(const uint8_t *start, uint8_t encoding) { argument
765 return strlen((const char *)start) + 1;
770 while (start[n] != '\0' || start[n + 1] != '\0') {
/frameworks/av/media/libstagefright/rtsp/
H A DAPacketSource.cpp130 size_t start = 0; local
132 ssize_t commaPos = val.find(",", start);
135 AString nalString(val, start, end - start);
162 start = commaPos + 1;
H A DARTPConnection.cpp121 unsigned start = (unsigned)((rand()* 1000ll)/RAND_MAX) + 15550; local
122 start &= ~1;
124 for (unsigned port = start; port < 65536; port += 2) {
H A DARTPWriter.cpp56 mLooper->start();
117 status_t ARTPWriter::start(MetaData * /* params */) { function in class:android::ARTPWriter
194 CHECK_EQ(mSource->start(), (status_t)OK);
781 // Signal start of talk-spurt.
/frameworks/av/media/libstagefright/webm/
H A DWebmFrameThread.cpp39 status_t WebmFrameThread::start() { function in class:android::WebmFrameThread
102 // list to hold child elements in a webm cluster (start timecode and
186 status_t WebmFrameSinkThread::start() { function in class:android::WebmFrameSinkThread
188 return WebmFrameThread::start();
268 * helps to align a/v start time at the beginning of a recording
272 * If client does not set the start time offset, we fall back to
284 status_t WebmFrameMediaSourceThread::start() { function in class:android::WebmFrameMediaSourceThread
287 status_t err = mSource->start(meta.get());
294 return WebmFrameThread::start();
H A DWebmWriter.cpp410 status_t WebmWriter::start(MetaData *params) { function in class:android::WebmWriter
510 // start threads
518 mStreams[kAudioIndex].mThread->start();
519 mStreams[kVideoIndex].mThread->start();
520 mSinkThread->start();
/frameworks/av/services/audioflinger/
H A Dtest-resample.cpp348 timespec start, end; local
349 clock_gettime(CLOCK_MONOTONIC, &start);
357 int64_t start_ns = start.tv_sec * 1000000000LL + start.tv_nsec;
368 clock_gettime(CLOCK_MONOTONIC, &start);
373 start_ns = start.tv_sec * 1000000000LL + start.tv_nsec;
409 timespec start, end; local
413 clock_gettime(CLOCK_MONOTONIC, &start);
419 int64_t start_ns = start
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java37 * its animations. For example, an animation a1 could be set up to start before animation a2, a2
106 * Indicates whether an AnimatorSet has been start()'d, whether or
111 // The amount of time in ms to delay starting the animation after start() is called
133 * start until that delay elapses, which means that if the first animator in the list
134 * supplied to this constructor has a startDelay, none of the other animators will start
395 * {@link #start()} is called.
406 * {@link #start()} is called.
496 * <p>Starting this <code>AnimatorSet</code> will, in turn, start the animations for which
502 public void start() { method in class:AnimatorSet
547 // start th
[all...]
/frameworks/base/core/java/android/app/
H A DLoaderManager.java68 * @return Return a new Loader instance that is ready to start loading.
248 void start() { method in class:LoaderManagerImpl.LoaderInfo
566 // The activity will start all existing loaders in it's onStart(),
567 // so only start them here if we're past that point of the activitiy's
569 info.start();
633 * actually start it until some previous loaders have completed.
769 // Call out to sub classes so they can start their loaders
772 mLoaders.valueAt(i).start();
/frameworks/base/core/java/android/provider/
H A DCallLog.java379 * @param start time stamp for the call in milliseconds
389 long start, int duration, Long dataUsage) {
391 start, duration, dataUsage, false);
407 * @param start time stamp for the call in milliseconds
420 long start, int duration, Long dataUsage, boolean addForAllUsers) {
458 values.put(DATE, Long.valueOf(start));
387 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage) argument
418 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, boolean addForAllUsers) argument
/frameworks/base/core/java/android/text/
H A DTextLine.java124 * @param start the start of the line relative to the text
131 void set(TextPaint paint, CharSequence text, int start, int limit, int dir, argument
135 mStart = start;
136 mLen = limit - start;
148 mReplacementSpanSpanSet.init(mSpanned, start, limit);
158 TextUtils.getChars(text, start, limit, mChars, 0);
166 for (int i = start, inext; i < limit; i = inext) {
170 chars[i - start] = '\ufffc';
171 for (int j = i - start
384 drawRun(Canvas c, int start, int limit, boolean runIsRtl, float x, int top, int y, int bottom, boolean needWidth) argument
412 measureRun(int start, int offset, int limit, boolean runIsRtl, FontMetricsInt fmi) argument
721 handleText(TextPaint wp, int start, int end, int contextStart, int contextEnd, boolean runIsRtl, Canvas c, float x, int top, int y, int bottom, FontMetricsInt fmi, boolean needWidth) argument
814 handleReplacement(ReplacementSpan replacement, TextPaint wp, int start, int limit, boolean runIsRtl, Canvas c, float x, int top, int y, int bottom, FontMetricsInt fmi, boolean needWidth) argument
879 handleRun(int start, int measureLimit, int limit, boolean runIsRtl, Canvas c, float x, int top, int y, int bottom, FontMetricsInt fmi, boolean needWidth) argument
976 drawTextRun(Canvas c, TextPaint wp, int start, int end, int contextStart, int contextEnd, boolean runIsRtl, float x, int y) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java94 public static void setComposingSpans(Spannable text, int start, int end) { argument
95 final Object[] sps = text.getSpans(start, end, Object.class);
115 text.setSpan(COMPOSING, start, end,
242 int start = a - beforeLength;
243 if (start < 0) start = 0;
244 content.delete(start, a);
245 deleted = a - start;
450 public boolean setComposingRegion(int start, int end) { argument
455 int a = start;
491 setSelection(int start, int end) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DDayPickerView.java140 private int getDiffMonths(Calendar start, Calendar end){ argument
141 final int diffYears = end.get(Calendar.YEAR) - start.get(Calendar.YEAR);
142 final int diffMonths = end.get(Calendar.MONTH) - start.get(Calendar.MONTH) + 12 * diffYears;
/frameworks/base/core/java/com/android/internal/view/
H A DInputConnectionWrapper.java314 public boolean setSelection(int start, int end) { argument
316 mIInputContext.setSelection(start, end);
341 public boolean setComposingRegion(int start, int end) { argument
343 mIInputContext.setComposingRegion(start, end);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java248 protected void onTextChanged(CharSequence text, int start, int before, int after) { argument
249 super.onTextChanged(text, start, before, after);
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java458 * The format of the files are sequential int's, in the range of: [start..end)
462 * @param start The first int expected to be found in the file
465 protected void doValidateIntContents(String path, String filename, int start, int end) { argument
472 for (int i = start; i < end; ++i) {
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java94 public void start() { method in class:AnimatedRotateDrawable

Completed in 606 milliseconds

<<11121314151617181920