Searched defs:options (Results 26 - 50 of 113) sorted by relevance

12345

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java80 String[] options, int defaultValue) {
116 String[] options, int defaultValue) {
79 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
115 getAttributeListValue(int index, String[] options, int defaultValue) argument
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java37 /** Tunable parameter options for {@link #getNextTimeMillis}. */
76 * Parse scheduler options supplied in this string form:
86 * The default options: <code>backoff=0+5 max=86400 min=0 period=0</code><br>
90 * @param spec describing some or all scheduler options.
91 * @param options to update with parsed values.
92 * @return the options passed in (for convenience)
95 public static Options parseOptions(String spec, Options options) argument
102 options.backoffFixedMillis = parseSeconds(param.substring(8));
105 options.backoffFixedMillis = parseSeconds(param.substring(8, plus));
107 options
135 getNextTimeMillis(Options options) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DTaskStackBuilder.java74 int flags, Bundle options);
79 int flags, Bundle options) {
88 int flags, Bundle options) {
99 int flags, Bundle options) {
104 intents, flags, options);
301 * @param options Additional options for how the Activity should be started.
304 public void startActivities(Bundle options) { argument
314 if (!ContextCompat.startActivities(mSourceContext, intents, options)) {
345 * @param options Additiona
73 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
78 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
87 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
98 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
349 getPendingIntent(int requestCode, int flags, Bundle options) argument
[all...]
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp85 MediaBuffer **buffer, const MediaSource::ReadOptions *options) {
84 read( MediaBuffer **buffer, const MediaSource::ReadOptions *options) argument
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorMp3Reader.cpp668 MediaSource::ReadOptions options; local
687 options.setSeekTo(pReaderContext->mSeekTime);
690 pReaderContext->mMediaSource->read(&mAudioBuffer, &options);
739 options.clearSeekTo();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp190 MediaSource::ReadOptions options; local
195 options.setSeekTo(seekTimeUs);
201 status_t err = track->mSource->read(&mbuf, &options);
203 options.clearSeekTo();
/frameworks/av/media/libstagefright/
H A DAMRExtractor.cpp48 MediaBuffer **buffer, const ReadOptions *options = NULL);
251 MediaBuffer **out, const ReadOptions *options) {
256 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
250 read( MediaBuffer **out, const ReadOptions *options) argument
H A DAudioSource.cpp216 MediaBuffer **out, const ReadOptions *options) {
215 read( MediaBuffer **out, const ReadOptions *options) argument
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 DDRMExtractor.cpp47 MediaBuffer **buffer, const ReadOptions *options = NULL);
126 status_t DRMSource::read(MediaBuffer **buffer, const ReadOptions *options) { argument
129 if ((err = mOriginalMediaSource->read(buffer, options)) != OK) {
H A DJPEGSource.cpp111 MediaBuffer **out, const ReadOptions *options) {
116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
110 read( MediaBuffer **out, const ReadOptions *options) argument
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 DSurfaceMediaSource.cpp276 const ReadOptions *options)
275 read( MediaBuffer **buffer, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp216 MediaBuffer **out, const ReadOptions *options) {
223 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &mode));
245 if (mSource->read(&mInputBuffer, options) != OK) {
215 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2TSExtractor.cpp51 MediaBuffer **buffer, const ReadOptions *options = NULL);
94 MediaBuffer **out, const ReadOptions *options) {
99 if (mSeekable && options && options->getSeekTo(&seekTimeUs, &seekMode)) {
115 return mImpl->read(out, options);
93 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.cpp70 const MediaSource::ReadOptions *options) {
72 status_t err = getText(options, &text, startTimeUs, endTimeUs);
215 const MediaSource::ReadOptions *options,
223 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
66 read( int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel, const MediaSource::ReadOptions *options) argument
214 getText( const MediaSource::ReadOptions *options, AString *text, int64_t *startTimeUs, int64_t *endTimeUs) argument
/frameworks/base/core/java/android/app/
H A DActivityOptions.java28 * Helper class for building an options Bundle that can be used with
34 * The package name that created the options.
126 * supply these options as the options Bundle when starting an activity.
149 * supply these options as the options Bundle when starting an activity.
205 * supply these options as the options Bundle when starting an activity.
238 * supply these options as the options Bundl
393 abort(Bundle options) argument
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetManager.java381 * @param options The options to associate with this widget
383 public void updateAppWidgetOptions(int appWidgetId, Bundle options) { argument
385 sService.updateAppWidgetOptions(appWidgetId, options);
401 * @return The options associated with the given widget instance.
637 * @param options Bundle containing options for the AppWidget. See also
642 public void bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options) { argument
644 sService.bindAppWidgetId(appWidgetId, provider, options);
688 * @param options Bundl
693 bindAppWidgetIdIfAllowed(int appWidgetId, ComponentName provider, Bundle options) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java52 convertValueToList(CharSequence value, String[] options, int defaultValue) argument
55 for (int i = 0; i < options.length; i++) {
56 if (value.equals(options[i]))
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp184 int start_x, int start_y, int width, int height, jobject options) {
192 if (NULL != options) {
193 sampleSize = env->GetIntField(options, gOptions_sampleSizeFieldID);
195 env->SetIntField(options, gOptions_widthFieldID, -1);
196 env->SetIntField(options, gOptions_heightFieldID, -1);
197 env->SetObjectField(options, gOptions_mimeFieldID, 0);
199 jobject jconfig = env->GetObjectField(options, gOptions_configFieldID);
201 doDither = env->GetBooleanField(options, gOptions_ditherFieldID);
202 preferQualityOverSpeed = env->GetBooleanField(options,
205 tileBitmap = env->GetObjectField(options, gOptions_bitmapFieldI
183 nativeDecodeRegion(JNIEnv* env, jobject, SkBitmapRegionDecoder *brd, int start_x, int start_y, int width, int height, jobject options) argument
[all...]
/frameworks/base/media/java/android/media/
H A DThumbnailUtils.java111 BitmapFactory.Options options = new BitmapFactory.Options();
112 options.inSampleSize = 1;
113 options.inJustDecodeBounds = true;
114 BitmapFactory.decodeFileDescriptor(fd, null, options);
115 if (options.mCancel || options.outWidth == -1
116 || options.outHeight == -1) {
119 options.inSampleSize = computeSampleSize(
120 options, targetSize, maxPixels);
121 options
218 extractThumbnail( Bitmap source, int width, int height, int options) argument
256 computeSampleSize(BitmapFactory.Options options, int minSideLength, int maxNumOfPixels) argument
274 computeInitialSampleSize(BitmapFactory.Options options, int minSideLength, int maxNumOfPixels) argument
308 makeBitmap(int minSideLength, int maxNumOfPixels, Uri uri, ContentResolver cr, ParcelFileDescriptor pfd, BitmapFactory.Options options) argument
362 transform(Matrix scaler, Bitmap source, int targetWidth, int targetHeight, int options) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardViewManager.java96 public synchronized void show(Bundle options) { argument
101 maybeCreateKeyguardLocked(enableScreenRotation, false, options);
178 Bundle options) {
225 inflateKeyguardView(options);
234 private void inflateKeyguardView(Bundle options) { argument
260 if (options != null) {
261 int widgetToShow = options.getInt(LockPatternUtils.KEYGUARD_SHOW_APPWIDGET,
323 public synchronized void reset(Bundle options) { argument
327 maybeCreateKeyguardLocked(shouldEnableScreenRotation(), true, options);
177 maybeCreateKeyguardLocked(boolean enableScreenRotation, boolean force, Bundle options) argument
/frameworks/base/services/java/com/android/server/
H A DAppWidgetService.java171 public void bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options) argument
174 options);
179 String packageName, int appWidgetId, ComponentName provider, Bundle options)
182 packageName, appWidgetId, provider, options);
290 public void updateAppWidgetOptions(int appWidgetId, Bundle options) { argument
291 getImplForUser(getCallingOrCurrentUserId()).updateAppWidgetOptions(appWidgetId, options);
178 bindAppWidgetIdIfAllowed( String packageName, int appWidgetId, ComponentName provider, Bundle options) argument
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java52 final Bundle options; field in class:PendingIntentRecord.Key
73 options = _o;
199 int flagsMask, int flagsValues, Bundle options) {
230 if (options == null) {
231 options = key.options;
232 } else if (key.options != null) {
233 Bundle opts = new Bundle(key.options);
234 opts.putAll(options);
235 options
196 sendInner(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
[all...]
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp259 MediaBuffer **out, const ReadOptions *options) {
264 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
258 read( MediaBuffer **out, const ReadOptions *options) argument

Completed in 6621 milliseconds

12345