Searched refs:options (Results 26 - 50 of 316) sorted by relevance

1234567891011>>

/frameworks/base/tools/aapt2/
H A DDebug.h33 static void printTable(ResourceTable* table, const DebugPrintTableOptions& options = {});
/frameworks/base/tools/aapt2/compile/
H A DPng.h39 const PngOptions& options);
H A DCompile.cpp136 static bool loadInputFilesFromDir(IAaptContext* context, const CompileOptions& options, argument
138 const std::string& rootDir = options.resDir.value();
184 static bool compileTable(IAaptContext* context, const CompileOptions& options, argument
200 parserOptions.errorOnPositionalArguments = !options.legacyMode;
214 if (options.pseudolocalize) {
326 static bool compileXml(IAaptContext* context, const CompileOptions& options, argument
372 static bool compilePng(IAaptContext* context, const CompileOptions& options, argument
401 static bool compileFile(IAaptContext* context, const CompileOptions& options, argument
468 CompileOptions options; local
472 .requiredFlag("-o", "Output path", &options
[all...]
/frameworks/base/core/java/android/app/backup/
H A DWallpaperBackupHelper.java147 BitmapFactory.Options options = new BitmapFactory.Options();
148 options.inJustDecodeBounds = true;
149 BitmapFactory.decodeFile(STAGE_FILE, options);
151 if (DEBUG) Slog.d(TAG, "Restoring wallpaper image w=" + options.outWidth
152 + " h=" + options.outHeight);
162 final double heightRatio = mDesiredMinHeight / options.outHeight;
163 if (options.outWidth < mDesiredMinWidth
164 || options.outHeight < mDesiredMinWidth
172 + options.outWidth + ", h=" + options
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DShadowOverlayHelper.java30 * on options user choose and current platform version.
78 private Options options = Options.DEFAULT; field in class:ShadowOverlayHelper.Builder
139 * @param options The Options object to create ShadowOverlayHelper.
141 public Builder options(Options options) { argument
142 this.options = options;
158 helper.setupRoundedCornerRadius(options, context);
172 helper.setupDynamicShadowZ(options, context);
422 void setupDynamicShadowZ(Options options, Contex argument
433 setupRoundedCornerRadius(Options options, Context context) argument
[all...]
/frameworks/base/telephony/java/com/android/ims/internal/uce/options/
H A DIOptionsService.aidl17 package com.android.ims.internal.uce.options;
19 import com.android.ims.internal.uce.options.IOptionsListener;
20 import com.android.ims.internal.uce.options.OptionsCapInfo;
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp126 jint inputY, jint inputWidth, jint inputHeight, jobject options) {
128 // Set default options.
134 // Update the default options with any options supplied by the client.
135 if (NULL != options) {
136 sampleSize = env->GetIntField(options, gOptions_sampleSizeFieldID);
137 jobject jconfig = env->GetObjectField(options, gOptions_configFieldID);
139 requireUnpremul = !env->GetBooleanField(options, gOptions_premultipliedFieldID);
140 javaBitmap = env->GetObjectField(options, gOptions_bitmapFieldID);
141 // The Java options o
125 nativeDecodeRegion(JNIEnv* env, jobject, jlong brdHandle, jint inputX, jint inputY, jint inputWidth, jint inputHeight, jobject options) argument
[all...]
H A DBitmapFactory.cpp227 static jobject doDecode(JNIEnv* env, SkStreamRewindable* stream, jobject padding, jobject options) { argument
234 // Set default values for the options parameters.
243 // Update with options supplied by the client.
244 if (options != NULL) {
245 sampleSize = env->GetIntField(options, gOptions_sampleSizeFieldID);
247 // options object, which is strange.
252 if (env->GetBooleanField(options, gOptions_justBoundsFieldID)) {
257 env->SetIntField(options, gOptions_widthFieldID, -1);
258 env->SetIntField(options, gOptions_heightFieldID, -1);
259 env->SetObjectField(options, gOptions_mimeFieldI
543 nativeDecodeStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage, jobject padding, jobject options) argument
607 nativeDecodeAsset(JNIEnv* env, jobject clazz, jlong native_asset, jobject padding, jobject options) argument
617 nativeDecodeByteArray(JNIEnv* env, jobject, jbyteArray byteArray, jint offset, jint length, jobject options) argument
[all...]
/frameworks/base/core/java/android/app/
H A DIAppTask.aidl29 in Intent intent, String resolvedType, in Bundle options);
H A DTaskStackBuilder.java216 public void startActivities(Bundle options, UserHandle userHandle) { argument
222 mSourceContext.startActivitiesAsUser(getIntents(), options, userHandle);
228 * @param options Additional options for how the Activity should be started.
232 public void startActivities(Bundle options) { argument
233 startActivities(options, new UserHandle(UserHandle.myUserId()));
261 * @param options Additional options for how the Activity should be started.
268 Bundle options) {
275 flags, options);
267 getPendingIntent(int requestCode, @PendingIntent.Flags int flags, Bundle options) argument
281 getPendingIntent(int requestCode, int flags, Bundle options, UserHandle user) argument
[all...]
/frameworks/base/core/java/android/service/trust/
H A DITrustAgentService.aidl30 oneway void onConfigure(in List<PersistableBundle> options, IBinder token);
/frameworks/base/telephony/java/com/android/ims/internal/uce/uceservice/
H A DIUceService.aidl21 import com.android.ims.internal.uce.options.IOptionsListener;
23 import com.android.ims.internal.uce.options.IOptionsService;
60 * Creates a options service for Capability Discovery.
121 * Query the UCE Service for options service object.
/frameworks/base/graphics/java/android/graphics/
H A DLargeBitmap.java52 public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) { argument
57 rect.right - rect.left, rect.bottom - rect.top, options);
114 BitmapFactory.Options options);
112 nativeDecodeRegion(long nativeLbm, int start_x, int start_y, int width, int height, BitmapFactory.Options options) argument
/frameworks/base/tools/aapt2/split/
H A DTableSplitter.h51 const TableSplitterOptions& options) :
52 mSplitConstraints(splits), mPreferredDensity(options.preferredDensity),
53 mConfigFilter(options.configFilter) {
50 TableSplitter(const std::vector<SplitConstraints>& splits, const TableSplitterOptions& options) argument
/frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/
H A DHelloComputeNDK.java57 final BitmapFactory.Options options = new BitmapFactory.Options();
58 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
59 return BitmapFactory.decodeResource(getResources(), resource, options);
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticInfos.cpp124 if (m_Config.options().isMulDefs()) {
136 if (m_Config.options().isNoUndefined())
142 if (m_Config.options().isNoUndefined())
154 if (!m_Config.options().getPrintGCSections())
163 if (m_Config.options().isFatalWarnings()) {
/frameworks/support/media-compat/api24/android/support/v4/media/
H A DMediaBrowserServiceCompatApi24.java47 public static void notifyChildrenChanged(Object serviceObj, String parentId, Bundle options) { argument
48 ((MediaBrowserService) serviceObj).notifyChildrenChanged(parentId, options);
56 void onLoadChildren(String parentId, ResultWrapper result, Bundle options); argument
101 Bundle options) {
103 parentId, new ResultWrapper(result), options);
100 onLoadChildren(String parentId, Result<List<MediaBrowser.MediaItem>> result, Bundle options) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java66 final Bundle options; field in class:PendingIntentRecord.Key
87 options = _o;
198 String requiredPermission, Bundle options) {
200 requiredPermission, null, null, 0, 0, 0, options, null);
204 IIntentReceiver finishedReceiver, String requiredPermission, Bundle options) {
206 requiredPermission, null, null, 0, 0, 0, options, null);
211 int flagsMask, int flagsValues, Bundle options, IActivityContainer container) {
213 if (options != null) options.setDefusable(true);
268 if (options
197 send(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, Bundle options) argument
203 sendWithResult(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, Bundle options) argument
209 sendInner(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options, IActivityContainer container) argument
[all...]
/frameworks/base/tools/aapt2/link/
H A DLink.cpp178 XmlFlattenerOptions options = {}; local
179 options.keepRawValues = keepRawValues;
180 options.maxSdkLevel = maxSdkLevel;
181 XmlFlattener flattener(&buffer, options);
290 ResourceFileFlattener(const ResourceFileFlattenerOptions& options, argument
292 mOptions(options), mContext(context), mKeepSet(keepSet) {
521 LinkCommand(LinkContext* context, const LinkOptions& options) : argument
522 mOptions(options), mContext(context), mFinalTable(),
1301 JavaClassGeneratorOptions options; local
1302 options
1375 LinkOptions options; local
[all...]
/frameworks/base/core/java/android/util/
H A DXmlPullAttributes.java58 String[] options, int defaultValue) {
60 getAttributeValue(namespace, attribute), options, defaultValue);
97 String[] options, int defaultValue) {
99 getAttributeValue(index), options, defaultValue);
57 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
96 getAttributeListValue(int index, String[] options, int defaultValue) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DForcedResizableInfoActivityController.java113 ActivityOptions options = ActivityOptions.makeBasic();
114 options.setLaunchTaskId(mPendingTaskIds.valueAt(i));
115 options.setTaskOverlay(true);
116 mContext.startActivityAsUser(intent, options.toBundle(), UserHandle.CURRENT);
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DStartVoiceInteractionActivity.java77 VoiceInteractor.PickOptionRequest.Option[] options =
79 options[0] = new VoiceInteractor.PickOptionRequest.Option("One");
80 options[1] = new VoiceInteractor.PickOptionRequest.Option("Two");
81 options[2] = new VoiceInteractor.PickOptionRequest.Option("Three");
82 options[3] = new VoiceInteractor.PickOptionRequest.Option("Four");
83 options[4] = new VoiceInteractor.PickOptionRequest.Option("Five");
84 VoiceInteractor.PickOptionRequest req = new TestPickOption(options);
181 public TestPickOption(Option[] options) { argument
182 super(new VoiceInteractor.Prompt("Need to pick something"), options, null);
/frameworks/support/core-utils/java/android/support/v4/app/
H A DTaskStackBuilder.java78 int flags, Bundle options);
83 int flags, Bundle options) {
92 int flags, Bundle options) {
103 int flags, Bundle options) {
108 intents, flags, options);
315 * @param options Additional options for how the Activity should be started.
318 public void startActivities(Bundle options) { argument
328 if (!ContextCompat.startActivities(mSourceContext, intents, options)) {
359 * @param options Additiona
77 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
82 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
91 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
102 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
363 getPendingIntent(int requestCode, int flags, Bundle options) argument
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dengine.c86 SLEngineOption options[2]; local
87 options[0].feature = 0x12345;
88 options[0].data = 0;
91 result = slCreateEngine(&engineObject, 1, options, 0, NULL, NULL);
103 printf("Create an engine and politely request a non-sensical interface with options\n");
105 options[0].feature = SL_ENGINEOPTION_THREADSAFE;
106 options[0].data = (SLuint32) SL_BOOLEAN_TRUE;
107 options[1].feature = SL_ENGINEOPTION_LOSSOFCONTROL;
108 options[1].data = (SLuint32) SL_BOOLEAN_FALSE;
109 result = slCreateEngine(&engineObject, 2, options, numSupportedInterface
[all...]
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp272 config_.options().setColor(res);
278 config_.options().setTrace(args.hasArg(kOpt_Trace));
289 config_.options().setVerbose(level);
301 config_.options().setMaxErrorNum(num);
313 config_.options().setMaxWarnNum(num);
317 config_.options().setWarnSharedTextrel(args.hasArg(kOpt_WarnSharedTextrel));
395 config_.options().setBsymbolic(args.hasArg(kOpt_Bsymbolic));
398 config_.options().setBgroup(args.hasArg(kOpt_Bgroup));
402 config_.options().setSOName(arg->getValue());
407 config_.options()
[all...]

Completed in 491 milliseconds

1234567891011>>