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

123456

/frameworks/base/tools/aidl/
H A Doptions.cpp2 #include "options.h"
35 parse_options(int argc, const char* const* argv, Options *options) argument
43 options->outputFileName = argv[2];
45 options->filesToPreprocess.push_back(argv[i]);
47 options->task = PREPROCESS_AIDL;
51 options->task = COMPILE_AIDL;
52 options->failOnParcelable = false;
53 options->autoDepFile = false;
64 options->importPaths.push_back(s+2);
72 options
[all...]
H A Doptions_test.cpp2 #include "options.h"
66 Options options; local
67 int result = parse_options(argc, answer.argv, &options);
82 if (!match_arrays(answer.systemSearchPath, options.systemSearchPath)) {
84 print_array(" ", options.systemSearchPath);
91 if (!match_arrays(answer.localSearchPath, options.localSearchPath)) {
93 print_array(" ", options.localSearchPath);
100 if (answer.inputFileName != options.inputFileName) {
101 cout << "mismatch: inputFileName: got " << options.inputFileName
107 if (answer.nativeLanguage != options
[all...]
/frameworks/support/v4/jellybean/android/support/v4/content/
H A DContextCompatJellybean.java25 public static void startActivities(Context context, Intent[] intents, Bundle options) { argument
26 context.startActivities(intents, options);
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DActivityCompatJB.java25 public static void startActivity(Context context, Intent intent, Bundle options) { argument
26 context.startActivity(intent, options);
29 public static void startActivityForResult(Activity activity, Intent intent, int requestCode, Bundle options) { argument
30 activity.startActivityForResult(intent, requestCode, options);
H A DTaskStackBuilderJellybean.java27 Intent[] intents, int flags, Bundle options) {
28 return PendingIntent.getActivities(context, requestCode, intents, flags, options);
26 getActivitiesPendingIntent(Context context, int requestCode, Intent[] intents, int flags, 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/av/media/libstagefright/rtsp/
H A DVideoSource.h58 MediaBuffer **buffer, const MediaSource::ReadOptions *options) {
57 read( MediaBuffer **buffer, const MediaSource::ReadOptions *options) argument
/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.cpp43 const MediaSource::ReadOptions *options) {
45 status_t err = mSource->read(&textBuffer, options);
41 read( int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel, const MediaSource::ReadOptions *options) argument
H A DTimedTextPlayer.cpp126 MediaSource::ReadOptions options; local
127 options.setSeekTo(
130 doRead(&options);
221 MediaSource::ReadOptions options; local
222 options.setSeekTo(seekTimeUs, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC);
223 doRead(&options);
226 void TimedTextPlayer::doRead(MediaSource::ReadOptions* options) { argument
232 &(parcelEvent->parcel), options);
235 if (options != NULL) {
239 CHECK(options
[all...]
/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...]
H A DActivityTransitionState.java152 public void setEnterActivityOptions(Activity activity, ActivityOptions options) { argument
154 && options != null && mEnterActivityOptions == null
156 && options.getAnimationType() == ActivityOptions.ANIM_SCENE_TRANSITION) {
157 mEnterActivityOptions = options;
301 public void startExitOutTransition(Activity activity, Bundle options) { argument
305 ActivityOptions activityOptions = new ActivityOptions(options);
/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
H A DBitmapRegionDecoder.java177 * @param options null-ok; Options that control downsampling.
182 public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) { argument
189 rect.right - rect.left, rect.bottom - rect.top, options);
259 BitmapFactory.Options options);
257 nativeDecodeRegion(long lbm, int start_x, int start_y, int width, int height, BitmapFactory.Options options) argument
/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.java84 String[] options, int defaultValue) {
93 return XmlUtils.convertValueToList(value, options, defaultValue);
176 String[] options, int defaultValue) {
178 getAttributeValue(index), options, defaultValue);
83 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
175 getAttributeListValue(int index, String[] options, int defaultValue) argument
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A DVrPipline1.java33 Script.LaunchOptions options = new Script.LaunchOptions(); field in class:VrPipline1
112 options.setX(0,state.mImgWidth);
113 options.setY(i*state.mImgHeight/blocks, (i+1)*state.mImgHeight/blocks);
114 scriptC_vr.forEach_draw_z_buffer(state.mzRangeFullAllocation, state.mScrAllocation, options);
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp150 MediaSource::ReadOptions options; local
151 options.setSeekTo(500, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC);
152 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
159 MediaSource::ReadOptions options; local
160 options.setSeekTo(7 * kSecToUsec, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC);
161 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
164 options.setSeekTo(8 * kSecToUsec, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC);
165 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
171 MediaSource::ReadOptions options; local
172 options
186 MediaSource::ReadOptions options; local
200 MediaSource::ReadOptions options; local
[all...]
/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.cpp110 MediaBuffer **buffer, const ReadOptions *options) {
113 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &seekMode));
109 read( MediaBuffer **buffer, const ReadOptions *options) argument
/frameworks/base/core/java/android/accounts/
H A DAbstractAccountAuthenticator.java128 String authTokenType, String[] features, Bundle options)
139 accountType, authTokenType, features, options);
156 Account account, Bundle options) throws RemoteException {
163 new AccountAuthenticatorResponse(response), account, options);
406 * @param options a Bundle of authenticator-specific options, may be null
420 String authTokenType, String[] requiredFeatures, Bundle options)
427 * @param options a Bundle of authenticator-specific options, may be null
440 Account account, Bundle options)
127 addAccount(IAccountAuthenticatorResponse response, String accountType, String authTokenType, String[] features, Bundle options) argument
155 confirmCredentials(IAccountAuthenticatorResponse response, Account account, Bundle options) argument
419 addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) argument
439 confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options) argument
481 getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
511 updateCredentials(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DCharacterPickerDialog.java51 * <code>options</code> for insertion or replacement (depending on
55 Editable text, String options,
61 mOptions = options;
54 CharacterPickerDialog(Context context, View view, Editable text, String options, boolean insert) argument
/frameworks/base/tools/aapt2/
H A DJavaClassGenerator.cpp36 Options options) :
37 mTable(table), mOptions(options) {
35 JavaClassGenerator(const std::shared_ptr<const ResourceTable>& table, Options options) argument
/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/compile/mclinker/include/mcld/
H A DLinkerConfig.h25 * options() - the general options
27 * attribute() - the attribute options
63 const GeneralOptions& options() const { return m_Options; } function in class:mcld::LinkerConfig
64 GeneralOptions& options() { return m_Options; } function in class:mcld::LinkerConfig

Completed in 558 milliseconds

123456