Searched refs:options (Results 126 - 150 of 189) sorted by relevance

12345678

/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp192 MediaBuffer **buffer, const ReadOptions *options) {
195 mLastReadStatus = CameraSource::read(buffer, options);
191 read( MediaBuffer **buffer, const ReadOptions *options) argument
H A DStagefrightMetadataRetriever.cpp175 MediaSource::ReadOptions options; local
192 options.setSeekTo(thumbNailTime, mode);
195 options.setSeekTo(frameTimeUs, mode);
204 err = decoder->read(&buffer, &options);
205 options.clearSeekTo();
H A DNuMediaExtractor.cpp350 MediaSource::ReadOptions options; local
352 options.setSeekTo(seekTimeUs, mode);
354 status_t err = info->mSource->read(&info->mSample, &options);
H A DFLACExtractor.cpp51 MediaBuffer **buffer, const ReadOptions *options = NULL);
704 MediaBuffer **outBuffer, const ReadOptions *options)
710 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) {
703 read( MediaBuffer **outBuffer, const ReadOptions *options) argument
H A DMP3Extractor.cpp225 MediaBuffer **buffer, const ReadOptions *options = NULL);
473 MediaBuffer **out, const ReadOptions *options) {
480 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
472 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/core/java/android/app/
H A DActionBar.java41 * the left, followed by the activity title. If your activity has an options menu, you can make
332 * Set display options. This changes all display option bits at once. To change
333 * a limited subset of display options, see {@link #setDisplayOptions(int, int)}.
335 * @param options A combination of the bits defined by the DISPLAY_ constants
338 public abstract void setDisplayOptions(int options); argument
341 * Set selected display options. Only the options specified by mask will be changed.
349 * @param options A combination of the bits defined by the DISPLAY_ constants
351 * @param mask A bit mask declaring which display options should be changed.
353 public abstract void setDisplayOptions(int options, in argument
[all...]
H A DFragment.java945 * the options menu by receiving a call to {@link #onCreateOptionsMenu}
1036 * @param options Additional options for how the Activity should be started.
1040 public void startActivity(Intent intent, Bundle options) { argument
1044 if (options != null) {
1045 mActivity.startActivityFromFragment(this, intent, -1, options);
1065 public void startActivityForResult(Intent intent, int requestCode, Bundle options) { argument
1069 if (options != null) {
1070 mActivity.startActivityFromFragment(this, intent, requestCode, options);
1074 mActivity.startActivityFromFragment(this, intent, requestCode, options);
[all...]
H A DWallpaperManager.java278 BitmapFactory.Options options = new BitmapFactory.Options();
280 fd.getFileDescriptor(), null, options);
307 BitmapFactory.Options options = new BitmapFactory.Options();
308 Bitmap bm = BitmapFactory.decodeStream(is, null, options);
/frameworks/compile/libbcc/runtime/make/
H A Dlib_info.mk46 # The names of all the available options.
H A Dlib_platforms.mk37 include make/options.mk
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditor3gpReader.cpp973 MediaSource::ReadOptions options; local
993 options.setSeekTo(pC->mAudioSeekTime);
994 pC->mAudioSource->read(&mMediaBuffer, &options);
998 options.clearSeekTo();
1003 pC->mAudioSource->read(&mMediaBuffer, &options);
1015 options.setSeekTo(pC->mVideoSeekTime,
1023 error = pC->mVideoSource->read(&mMediaBuffer, &options);
1041 options.clearSeekTo();
1049 pC->mVideoSource->read(&mMediaBuffer, &options);
1134 options
1923 MediaSource::ReadOptions options; local
[all...]
H A DVideoEditorMp3Reader.cpp668 MediaSource::ReadOptions options; local
687 options.setSeekTo(pReaderContext->mSeekTime);
690 pReaderContext->mMediaSource->read(&mAudioBuffer, &options);
739 options.clearSeekTo();
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java242 * AppWidget options and causes a callback to the AppWidgetProvider.
245 * @param newOptions The bundle of options, in addition to the size information,
283 // We get the old options to see if the sizes have changed
307 * @param options The bundle of options information.
309 public void updateAppWidgetOptions(Bundle options) { argument
310 AppWidgetManager.getInstance(mContext).updateAppWidgetOptions(mAppWidgetId, options);
550 Bundle options = manager.getAppWidgetOptions(mAppWidgetId);
553 if (options.containsKey(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY)) {
554 int category = options
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java258 public void startActivity(Intent intent, Bundle options) { argument
268 public void startActivities(Intent[] intents, Bundle options) { argument
282 Bundle options) throws IntentSender.SendIntentException {
280 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingActivity.java338 final BitmapFactory.Options options = new BitmapFactory.Options();
339 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
340 return copyBitmap(BitmapFactory.decodeResource(getResources(), resource, options));
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A DImageProcessingActivity2.java333 final BitmapFactory.Options options = new BitmapFactory.Options();
334 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
335 return copyBitmap(BitmapFactory.decodeResource(getResources(), resource, options));
/frameworks/av/include/media/stagefright/
H A DCameraSource.h84 MediaBuffer **buffer, const ReadOptions *options = NULL);
/frameworks/av/media/libstagefright/chromium_http/
H A Dsupport.h116 const net::CookieOptions &options,
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl172 * Determine the preferred edge of the screen to pin the compact options menu against.
173 * @return a Gravity value for the options menu panel
214 * Lock the device immediately with the specified options (can be null).
216 void lockNow(in Bundle options);
/frameworks/base/core/java/android/provider/
H A DContacts.java630 * @param options the decoding options, can be set to null
635 int placeholderImageResource, BitmapFactory.Options options) {
637 return loadPlaceholderPhoto(placeholderImageResource, context, options);
641 Bitmap bm = stream != null ? BitmapFactory.decodeStream(stream, null, options) : null;
643 bm = loadPlaceholderPhoto(placeholderImageResource, context, options);
649 BitmapFactory.Options options) {
654 placeholderImageResource, options);
634 loadContactPhoto(Context context, Uri person, int placeholderImageResource, BitmapFactory.Options options) argument
648 loadPlaceholderPhoto(int placeholderImageResource, Context context, BitmapFactory.Options options) argument
/frameworks/base/services/input/
H A DInputDispatcher.h167 * Specifies various options that modify the behavior of the input dispatcher.
715 Vector<EventEntry*>& outEvents, const CancelationOptions& options);
778 const CancelationOptions& options);
780 const CancelationOptions& options);
1046 const CancelationOptions& options);
1048 const CancelationOptions& options);
1050 const CancelationOptions& options);
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java100 ActivityOptions pendingOptions; // most recently given options
596 void updateOptionsLocked(Bundle options) { argument
597 if (options != null) {
601 pendingOptions = new ActivityOptions(options);
605 void updateOptionsLocked(ActivityOptions options) { argument
606 if (options != null) {
610 pendingOptions = options;
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java74 * Display options applied by default
79 * Display options that require re-layout as opposed to a simple invalidate
572 public void setDisplayOptions(int options) { argument
573 final int flagsChanged = mDisplayOptions == -1 ? -1 : options ^ mDisplayOptions;
574 mDisplayOptions = options;
577 final boolean showHome = (options & ActionBar.DISPLAY_SHOW_HOME) != 0;
582 final boolean setUp = (options & ActionBar.DISPLAY_HOME_AS_UP) != 0;
595 final boolean logoVis = mLogo != null && (options & ActionBar.DISPLAY_USE_LOGO) != 0;
600 if ((options & ActionBar.DISPLAY_SHOW_TITLE) != 0) {
616 if ((options
[all...]
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp616 MediaSource::ReadOptions options; local
642 options.setSeekTo(
645 if (seekSource->read(&buffer, &options) != OK) {
664 err = codec->read(&buffer, &options);
665 options.clearSeekTo();
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java390 public void setDisplayOptions(int options) { argument
391 if ((options & DISPLAY_HOME_AS_UP) != 0) {
394 mActionView.setDisplayOptions(options);
397 public void setDisplayOptions(int options, int mask) { argument
402 mActionView.setDisplayOptions((options & mask) | (current & ~mask));

Completed in 436 milliseconds

12345678