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

12345

/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/java/android/support/v4/content/
H A DContextCompat.java83 * @param options Additional options for how the Activity should be started.
88 Bundle options) {
91 ContextCompatJellybean.startActivities(context, intents, options);
87 startActivities(Context context, Intent[] intents, Bundle options) argument
/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/av/media/libstagefright/
H A DMediaAdapter.cpp78 MediaBuffer **buffer, const ReadOptions *options) {
77 read( MediaBuffer **buffer, const ReadOptions *options) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DActivityCompat.java31 * Invalidate the activity's options menu, if able.
34 * options menu was controlled primarily by the user's operation of
44 * <p>In Android 3.0+ the Action Bar forces the options menu to be built early
53 * activity state that should cause the options menu to be rebuilt. If the app
57 * If this method returns true the options menu was successfully invalidated.</p>
59 * @param activity Invalidate the options menu of this activity
73 * <p>In Android 4.1+ additional options were introduced to allow for more
81 * @param options Additional options for how the Activity should be started.
82 * May be null if there are no options
87 startActivity(Activity activity, Intent intent, Bundle options) argument
115 startActivityForResult(Activity activity, Intent intent, int requestCode, Bundle options) argument
[all...]
/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/cmds/stagefright/
H A DSineSource.cpp61 MediaBuffer **out, const ReadOptions *options) {
60 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/libvideoeditor/lvpp/
H A DDummyAudioSource.cpp119 MediaBuffer **out, const MediaSource::ReadOptions *options) {
126 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
118 read( MediaBuffer **out, const MediaSource::ReadOptions *options) argument
H A DDummyVideoSource.cpp120 const MediaSource::ReadOptions *options) {
128 if (options && options->getSeekTo(&seekTimeUs, &seekMode)) {
118 read( MediaBuffer **out, const MediaSource::ReadOptions *options) argument
H A DVideoEditorSRC.cpp113 MediaBuffer **buffer_out, const ReadOptions *options) {
125 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
179 status_t err = mSource->read(&aBuffer, options);
211 ReadOptions options; local
215 options.setSeekTo(mSeekTimeUs, mode);
221 status_t err = mSource->read(&mBuffer, &options);
112 read( MediaBuffer **buffer_out, const ReadOptions *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/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.cpp125 MediaSource::ReadOptions options; local
126 options.setSeekTo(
129 doRead(&options);
220 MediaSource::ReadOptions options; local
221 options.setSeekTo(seekTimeUs, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC);
222 doRead(&options);
225 void TimedTextPlayer::doRead(MediaSource::ReadOptions* options) { argument
231 &(parcelEvent->parcel), options);
234 if (options != NULL) {
238 CHECK(options
[all...]
/frameworks/base/core/java/android/app/
H A DTaskStackBuilder.java215 public void startActivities(Bundle options, UserHandle userHandle) { argument
221 mSourceContext.startActivitiesAsUser(getIntents(), options, userHandle);
227 * @param options Additional options for how the Activity should be started.
231 public void startActivities(Bundle options) { argument
232 startActivities(options, new UserHandle(UserHandle.myUserId()));
260 * @param options Additional options for how the Activity should be started.
266 public PendingIntent getPendingIntent(int requestCode, int flags, Bundle options) { argument
273 flags, options);
279 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.java62 public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) { argument
67 rect.right - rect.left, rect.bottom - rect.top, options);
124 BitmapFactory.Options options);
122 nativeDecodeRegion(int lbm, int start_x, int start_y, int width, int height, BitmapFactory.Options options) argument
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java83 String[] options, int defaultValue) {
92 return XmlUtils.convertValueToList(value, options, defaultValue);
175 String[] options, int defaultValue) {
177 getAttributeValue(index), options, defaultValue);
82 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
174 getAttributeListValue(int index, String[] options, int defaultValue) argument
/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.cpp109 MediaBuffer **buffer, const ReadOptions *options) {
112 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &seekMode));
108 read( MediaBuffer **buffer, const ReadOptions *options) argument
/frameworks/base/core/java/android/accounts/
H A DAbstractAccountAuthenticator.java119 String authTokenType, String[] features, Bundle options)
130 accountType, authTokenType, features, options);
144 Account account, Bundle options) throws RemoteException {
151 new AccountAuthenticatorResponse(response), account, options);
377 * @param options a Bundle of authenticator-specific options, may be null
391 String authTokenType, String[] requiredFeatures, Bundle options)
398 * @param options a Bundle of authenticator-specific options, may be null
411 Account account, Bundle options)
118 addAccount(IAccountAuthenticatorResponse response, String accountType, String authTokenType, String[] features, Bundle options) argument
143 confirmCredentials(IAccountAuthenticatorResponse response, Account account, Bundle options) argument
390 addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) argument
410 confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options) argument
431 getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
461 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

Completed in 465 milliseconds

12345