Searched defs:options (Results 1 - 25 of 207) sorted by relevance

123456789

/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionManagerInternal.java33 * @param options
35 public abstract void startLocalVoiceInteraction(IBinder callingActivity, Bundle options); argument
/frameworks/base/tools/aapt2/flatten/
H A DXmlFlattener.h37 XmlFlattener(BigBuffer* buffer, XmlFlattenerOptions options) argument
38 : buffer_(buffer), options_(options) {}
H A DTableFlattener.h42 explicit TableFlattener(const TableFlattenerOptions& options, BigBuffer* buffer) argument
43 : options_(options), buffer_(buffer) {}
/frameworks/base/tools/aapt2/link/
H A DManifestFixer_test.cpp63 const StringPiece& str, const ManifestFixerOptions& options) {
65 ManifestFixer fixer(options);
111 ManifestFixerOptions options = {std::string("8"), std::string("22")};
118 options);
140 options);
159 options);
176 options);
192 ManifestFixerOptions options = {std::string("8"), std::string("22")};
198 options);
236 ManifestFixerOptions options;
62 VerifyWithOptions( const StringPiece& str, const ManifestFixerOptions& options) argument
[all...]
H A DManifestFixer.h46 explicit ManifestFixer(const ManifestFixerOptions& options) argument
47 : options_(options) {}
H A DTableMerger_test.cpp91 TableMergerOptions options; local
92 options.auto_add_overlay = false;
93 TableMerger merger(context_.get(), &final_table, options);
111 TableMergerOptions options; local
112 options.auto_add_overlay = false;
113 TableMerger merger(context_.get(), &final_table, options);
166 TableMergerOptions options; local
167 options.auto_add_overlay = false;
168 TableMerger merger(context_.get(), &final_table, options);
193 TableMergerOptions options; local
216 TableMergerOptions options; local
239 TableMergerOptions options; local
258 TableMergerOptions options; local
276 TableMergerOptions options; local
294 TableMergerOptions options; local
336 TableMergerOptions options; local
[all...]
/frameworks/base/tools/aapt2/split/
H A DTableSplitter_test.cpp41 TableSplitterOptions options; local
42 options.preferred_densities.push_back(ConfigDescription::DENSITY_XHIGH);
43 TableSplitter splitter({}, options);
79 TableSplitterOptions options; local
80 options.preferred_densities.push_back(ConfigDescription::DENSITY_LOW);
81 options.preferred_densities.push_back(ConfigDescription::DENSITY_XXXHIGH);
82 TableSplitter splitter({}, options);
H A DTableSplitter.h52 const TableSplitterOptions& options)
53 : split_constraints_(splits), options_(options) {
51 TableSplitter(const std::vector<SplitConstraints>& splits, const TableSplitterOptions& options) argument
/frameworks/base/tools/aapt2/
H A DLoadedApk.cpp58 bool LoadedApk::WriteToArchive(IAaptContext* context, const TableFlattenerOptions& options, argument
97 TableFlattener flattener(options, &buffer);
/frameworks/base/tools/aapt2/java/
H A DJavaClassGenerator_test.cpp156 JavaClassGeneratorOptions options; local
157 options.types = JavaClassGeneratorOptions::SymbolTypes::kPublic;
159 JavaClassGenerator generator(context.get(), table.get(), options);
169 options.types = JavaClassGeneratorOptions::SymbolTypes::kPublicPrivate;
171 JavaClassGenerator generator(context.get(), table.get(), options);
182 options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
184 JavaClassGenerator generator(context.get(), table.get(), options);
319 JavaClassGeneratorOptions options; local
320 options.use_final = false;
321 JavaClassGenerator generator(context.get(), table.get(), options);
348 JavaClassGeneratorOptions options; local
382 JavaClassGeneratorOptions options; local
[all...]
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/jdwp/
H A DPreloadDebugeeWrapper.java27 public PreloadDebugeeWrapper(JPDATestOptions options, LogWriter writer) { argument
28 super(options, writer);
/frameworks/support/fragment/java/android/support/v4/app/
H A DBaseFragmentActivityApi16.java46 @Nullable Bundle options) {
54 super.startActivityForResult(intent, requestCode, options);
61 Bundle options) throws IntentSender.SendIntentException {
70 extraFlags, options);
45 startActivityForResult(Intent intent, int requestCode, @Nullable Bundle options) argument
59 startIntentSenderForResult(IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
/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/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DWorkLockActivityController.java62 final ActivityOptions options = ActivityOptions.makeBasic();
63 options.setLaunchTaskId(taskId);
64 options.setTaskOverlay(true, false /* canResume */);
66 final int result = startActivityAsUser(intent, options.toBundle(), UserHandle.USER_CURRENT);
80 private int startActivityAsUser(Intent intent, Bundle options, int userId) { argument
92 options /*options*/,
/frameworks/support/media-compat/api24/android/support/v4/media/
H A DMediaBrowserCompatApi24.java32 public static void subscribe(Object browserObj, String parentId, Bundle options, argument
34 ((MediaBrowser) browserObj).subscribe(parentId, options,
45 void onChildrenLoaded(@NonNull String parentId, List<?> children, @NonNull Bundle options); argument
46 void onError(@NonNull String parentId, @NonNull Bundle options); argument
57 List<MediaBrowser.MediaItem> children, @NonNull Bundle options) {
58 mSubscriptionCallback.onChildrenLoaded(parentId, children, options);
62 public void onError(@NonNull String parentId, @NonNull Bundle options) { argument
63 mSubscriptionCallback.onError(parentId, options);
56 onChildrenLoaded(@onNull String parentId, List<MediaBrowser.MediaItem> children, @NonNull Bundle options) argument
/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h58 MediaBuffer **buffer, const MediaSource::ReadOptions *options) {
57 read( MediaBuffer **buffer, const MediaSource::ReadOptions *options) argument
/frameworks/base/core/java/android/app/
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/util/
H A DAttributeSet.java125 * Return the index of the value of 'attribute' in the list 'options'.
129 * @param options List of strings whose values we are checking against.
133 * @return Index in to 'options' or defaultValue.
136 String[] options, int defaultValue);
208 * 'options'.
211 * @param options List of strings whose values we are checking against.
215 * @return Index in to 'options' or defaultValue.
217 public int getAttributeListValue(int index, String[] options, int defaultValue); argument
135 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
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/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/telephony/java/com/android/ims/internal/uce/options/
H A DOptionsCapInfo.java16 package com.android.ims.internal.uce.options;
H A DOptionsCmdId.java17 package com.android.ims.internal.uce.options;
/frameworks/base/tests/Camera2Tests/CameraToo/tests/src/com/example/android/camera2/cameratoo/
H A DCameraTooTest.java96 private void assertOptimalSize(Size[] options, int minWidth, int minHeight, Size expected) { argument
97 Size verdict = CameraTooActivity.chooseBigEnoughSize(options, minWidth, minHeight);
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java104 String[] options, int defaultValue) {
113 return XmlUtils.convertValueToList(value, options, defaultValue);
214 String[] options, int defaultValue) {
216 getAttributeValue(index), options, defaultValue);
103 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
213 getAttributeListValue(int index, String[] options, int defaultValue) argument
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DRenderScriptTask.java19 * {@code DepthOfFieldOptions options;}
21 * {@code Bitmap result = renderScriptTask.applyRefocusFilter(options);}
82 * @param options an object contains color image, depth map, focal depth, and
86 public Bitmap applyRefocusFilter(DepthOfFieldOptions options) { argument
88 prepareRefocusFilter(options);
117 * @param options an object contains color image, depth map, focal depth, and
120 private void prepareRefocusFilter(DepthOfFieldOptions options) { argument
122 options.rgbz.getDepthTransform(), options.focalDepth,
123 options
[all...]

Completed in 8513 milliseconds

123456789