Searched defs:options (Results 76 - 100 of 149) sorted by relevance

123456

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParser.java440 public int getAttributeListValue(int index, String[] options, int defaultValue) { argument
441 return mAttrib.getAttributeListValue(index, options, defaultValue);
446 String[] options, int defaultValue) {
447 return mAttrib.getAttributeListValue(namespace, attribute, options, defaultValue);
445 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
/frameworks/data-binding/compiler/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/gradlePlugin/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/developmentPlugins/bintrayPlugin/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/developmentPlugins/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp228 MediaSource::ReadOptions options; local
231 err = rawSource->read(&buffer, &options);
232 options.clearSeekTo();
288 options.setSeekTo(seekTimeUs);
304 MediaSource::ReadOptions options; local
318 status_t err = rawSource->read(&buffer, &options);
321 options.clearSeekTo();
360 options.setSeekTo(0x7fffffffL);
363 options.setSeekTo(5000000);
370 options
472 read( MediaBuffer **buffer, const ReadOptions *options) argument
549 MediaSource::ReadOptions options; local
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp1510 MediaSource::ReadOptions options; local
1515 options.setSeekTo(seekTimeUs, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC);
1520 options.setNonBlocking();
1525 status_t err = track->mSource->read(&mbuf, &options);
1527 options.clearSeekTo();
/frameworks/av/media/libstagefright/
H A DAVIExtractor.cpp47 MediaBuffer **buffer, const ReadOptions *options);
140 MediaBuffer **buffer, const ReadOptions *options) {
147 if (options && options->getSeekTo(&seekTimeUs, &seekMode)) {
139 read( MediaBuffer **buffer, const ReadOptions *options) argument
H A DFLACExtractor.cpp51 MediaBuffer **buffer, const ReadOptions *options = NULL);
755 MediaBuffer **outBuffer, const ReadOptions *options)
761 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) {
754 read( MediaBuffer **outBuffer, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp130 MediaBuffer **buffer, const ReadOptions *options);
549 MediaBuffer **out, const ReadOptions *options) {
556 if (options && options->getSeekTo(&seekTimeUs, &mode)
548 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/core/java/android/app/
H A DActionBar.java67 * the left, followed by the activity title. If your activity has an options menu, you can make
426 * Set display options. This changes all display option bits at once. To change
427 * a limited subset of display options, see {@link #setDisplayOptions(int, int)}.
429 * @param options A combination of the bits defined by the DISPLAY_ constants
432 public abstract void setDisplayOptions(@DisplayOptions int options); argument
435 * Set selected display options. Only the options specified by mask will be changed.
443 * @param options A combination of the bits defined by the DISPLAY_ constants
445 * @param mask A bit mask declaring which display options should be changed.
447 public abstract void setDisplayOptions(@DisplayOptions int options, argument
[all...]
H A DActivityOptions.java35 * Helper class for building an options Bundle that can be used with
56 * The package name that created the options.
195 * supply these options as the options Bundle when starting an activity.
218 * supply these options as the options Bundle when starting an activity.
241 * supply these options as the options Bundle when running an in-place animation.
299 * supply these options as the options Bundl
772 abort(Bundle options) argument
[all...]
H A DApplicationThreadNative.java627 ActivityOptions options = new ActivityOptions(data.readBundle());
628 scheduleOnNewActivityOptions(token, options);
1331 public void scheduleOnNewActivityOptions(IBinder token, ActivityOptions options) argument
1336 data.writeBundle(options == null ? null : options.toBundle());
/frameworks/base/core/java/android/content/
H A DContextWrapper.java342 String who, Intent intent, int requestCode, Bundle options) {
343 mBase.startActivityForResult(who, intent, requestCode, options);
352 public void startActivity(Intent intent, Bundle options) { argument
353 mBase.startActivity(intent, options);
358 public void startActivityAsUser(Intent intent, Bundle options, UserHandle user) { argument
359 mBase.startActivityAsUser(intent, options, user);
368 public void startActivities(Intent[] intents, Bundle options) { argument
369 mBase.startActivities(intents, options);
374 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
375 mBase.startActivitiesAsUser(intents, options, userHandl
341 startActivityForResult( String who, Intent intent, int requestCode, Bundle options) argument
387 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
413 sendBroadcast(Intent intent, String receiverPermission, Bundle options) argument
442 sendOrderedBroadcast( Intent intent, String receiverPermission, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
499 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java315 String[] options, int defaultValue) {
318 return getAttributeListValue(idx, options, defaultValue);
365 String[] options, int defaultValue) {
370 mStrings.get(v), options, defaultValue);
314 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
364 getAttributeListValue(int idx, String[] options, int defaultValue) argument
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java246 public void setDisplayOptions(@DisplayOptions int options) { argument
247 setDisplayOptions(options, 0xffffffff);
251 public void setDisplayOptions(@DisplayOptions int options, @DisplayOptions int mask) { argument
253 mDecorToolbar.setDisplayOptions(options & mask | currentOptions & ~mask);
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp82 static bool optionsJustBounds(JNIEnv* env, jobject options) { argument
83 return options != NULL && env->GetBooleanField(options, gOptions_justBoundsFieldID);
200 static jobject doDecode(JNIEnv* env, SkStreamRewindable* stream, jobject padding, jobject options) { argument
215 if (options != NULL) {
216 sampleSize = env->GetIntField(options, gOptions_sampleSizeFieldID);
217 if (optionsJustBounds(env, options)) {
222 env->SetIntField(options, gOptions_widthFieldID, -1);
223 env->SetIntField(options, gOptions_heightFieldID, -1);
224 env->SetObjectField(options, gOptions_mimeFieldI
452 nativeDecodeStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage, jobject padding, jobject options) argument
511 nativeDecodeAsset(JNIEnv* env, jobject clazz, jlong native_asset, jobject padding, jobject options) argument
521 nativeDecodeByteArray(JNIEnv* env, jobject, jbyteArray byteArray, jint offset, jint length, jobject options) argument
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_FlpHardwareProvider.cpp405 GeofenceOptions* options = geofence.options; local
410 options->monitor_transitions = env->CallIntMethod(
418 options->unknown_timer_ms = env->CallIntMethod(geofenceRequestObject, getUnknownTimer);
424 options->notification_responsivenes_ms = env->CallIntMethod(
432 options->last_transition = env->CallIntMethod(geofenceRequestObject, getLastTransition);
436 options->sources_to_use = env->CallIntMethod(geofenceRequestObject, getSourceTechnologies);
803 FlpBatchOptions options; local
804 TranslateFromObject(env, optionsObject, options);
805 int result = sFlpInterface->start_batching(id, &options);
818 FlpBatchOptions options; local
1007 GeofenceOptions options = { local
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java282 public void startActivity(Intent intent, Bundle options) { argument
292 public void startActivities(Intent[] intents, Bundle options) { argument
306 Bundle options) throws IntentSender.SendIntentException {
329 public void sendBroadcast(Intent intent, String receiverPermission, Bundle options) { argument
356 Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData,
405 String receiverPermission, int appOp, Bundle options, BroadcastReceiver resultReceiver,
304 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
355 sendOrderedBroadcast(Intent intent, String receiverPermission, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
404 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
/frameworks/base/tools/aapt2/
H A DMain.cpp357 bool compileXml(const AaptOptions& options, const std::shared_ptr<ResourceTable>& table, argument
376 if (!xml::flatten(root.get(), options.appInfo.package, &outBuffer)) {
384 Logger::error(options.output) << "failed to write compiled '" << item.source
422 bool linkXml(const AaptOptions& options, const std::shared_ptr<ResourceTable>& table, argument
433 if (options.packageType == AaptOptions::PackageType::StaticLibrary) {
437 if (options.versionStylesAndLayouts) {
443 if (options.generateProguardRules) {
469 Logger::error(options.output) << "failed to add auto-versioned resource '"
478 Logger::error(options.output) << "failed to write linked file '"
485 bool compilePng(const AaptOptions& options, cons argument
509 copyFile(const AaptOptions& options, const CompileItem& item, ZipFile* outApk) argument
519 compileManifest(const AaptOptions& options, const std::shared_ptr<IResolver>& resolver, const std::map<std::shared_ptr<ResourceTable>, StaticLibraryData>& libApks, const android::ResTable& table, ZipFile* outApk, proguard::KeepSet* keepSet) argument
668 writeResourceTable(const AaptOptions& options, const std::shared_ptr<ResourceTable>& table, const TableFlattener::Options& flattenerOptions, ZipFile* outApk) argument
731 link(const AaptOptions& options, const std::shared_ptr<ResourceTable>& outTable, const std::shared_ptr<IResolver>& resolver) argument
950 compile(const AaptOptions& options, const std::shared_ptr<ResourceTable>& table, const std::shared_ptr<IResolver>& resolver) argument
1069 AaptOptions options; local
1168 doDump(const AaptOptions& options) argument
1208 AaptOptions options = prepareArgs(argc, argv); local
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DIWindowManagerImpl.java482 public void lockNow(Bundle options) { argument
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java64 * <p>If your activity has an options menu, you can make select items accessible directly from the
416 * Set display options. This changes all display option bits at once. To change
417 * a limited subset of display options, see {@link #setDisplayOptions(int, int)}.
419 * @param options A combination of the bits defined by the DISPLAY_ constants
422 public abstract void setDisplayOptions(@DisplayOptions int options); argument
425 * Set selected display options. Only the options specified by mask will be changed.
433 * @param options A combination of the bits defined by the DISPLAY_ constants
435 * @param mask A bit mask declaring which display options should be changed.
437 public abstract void setDisplayOptions(@DisplayOptions int options, argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DToolbarActionBar.java251 public void setDisplayOptions(@DisplayOptions int options) { argument
252 setDisplayOptions(options, 0xffffffff);
256 public void setDisplayOptions(@DisplayOptions int options, @DisplayOptions int mask) { argument
258 mDecorToolbar.setDisplayOptions(options & mask | currentOptions & ~mask);

Completed in 2146 milliseconds

123456