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

123456789

/frameworks/av/media/libstagefright/timedtext/
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...]
H A DTimedTextSRTSource.h42 const MediaSource::ReadOptions *options = NULL);
68 const MediaSource::ReadOptions *options,
78 // called with seek options. Note that timeUs within gap ranges, such as
H A DTimedText3GPPSource.h39 const MediaSource::ReadOptions *options = NULL);
/frameworks/webview/chromium/tools/
H A Dmerge_to_master.py182 parser = optparse.OptionParser(usage='%prog [options]')
203 (options, args) = parser.parse_args()
211 if options.push:
212 Push(options.target)
213 elif options.repo_prop:
214 return _MergeWithRepoProp(os.path.expanduser(options.repo_prop),
215 options.target)
216 elif options.svn_revision:
217 _MergeProjects(options.svn_revision, options
[all...]
H A Dmerge_from_chromium.py509 parser = optparse.OptionParser(usage='%prog [options]')
563 (options, args) = parser.parse_args()
575 if options.get_lkgr:
577 elif options.get_head:
580 elif options.push:
581 if options.release:
582 Push(options.release, options.target)
583 elif options.svn_revision:
584 Push(options
[all...]
/frameworks/compile/mclinker/tools/mcld/lib/Support/
H A DTargetLinkerConfigs.cpp33 // set up target-dependent options
46 // set up target dependent options
51 if (!getLDConfig()->options().hasDyld()) {
52 getLDConfig()->options().setDyld(gDefaultDyld);
75 // set up target-dependent options
88 // set up target dependent options
93 if (!getLDConfig()->options().hasDyld()) {
94 getLDConfig()->options().setDyld(gDefaultDyld);
108 // set up target-dependent options
121 // set up target dependent options
[all...]
/frameworks/av/cmds/stagefright/
H A DSineSource.h20 MediaBuffer **out, const ReadOptions *options = NULL);
/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
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
/frameworks/support/v4/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);
312 * @param options Additional options for how the Activity should be started.
315 public void startActivities(Bundle options) { argument
325 if (!ContextCompat.startActivities(mSourceContext, intents, options)) {
356 * @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
360 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/base/core/java/android/accounts/
H A DIAccountManager.aidl51 in Bundle options);
54 in Bundle options);
56 String authTokenType, boolean expectActivityLaunch, in Bundle options);
60 in Bundle options, boolean expectActivityLaunch, int userId);
/frameworks/base/tools/aidl/
H A DAndroid.mk16 options.cpp \
/frameworks/compile/mclinker/include/mcld/
H A DLinkerConfig.h29 * options() - the general options
31 * attribute() - the attribute options
75 const GeneralOptions& options() const { return m_Options; } function in class:mcld::LinkerConfig
76 GeneralOptions& options() { return m_Options; } function in class:mcld::LinkerConfig
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticInfos.cpp117 if (m_Config.options().hasMulDefs()) {
127 if (m_Config.options().isNoUndefined())
133 if (m_Config.options().isNoUndefined())
139 if (m_Config.options().isNoUndefined())
155 if (m_Config.options().isFatalWarnings()) {
H A DTextDiagnosticPrinter.cpp80 if (0 <= m_Config.options().verbose()) {
90 if (1 <= m_Config.options().verbose()) {
100 if (2 <= m_Config.options().verbose()) {
130 int16_t error_limit = m_Config.options().maxErrorNum();
143 int16_t warning_limit = m_Config.options().maxWarnNum();
/frameworks/av/libvideoeditor/lvpp/
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
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 DDummyVideoSource.h43 const MediaSource::ReadOptions *options = NULL);
/frameworks/base/graphics/java/android/graphics/
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(int lbm, int start_x, int start_y, int width, int height, BitmapFactory.Options options) argument
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java52 final Bundle options; field in class:PendingIntentRecord.Key
73 options = _o;
199 int flagsMask, int flagsValues, Bundle options) {
230 if (options == null) {
231 options = key.options;
232 } else if (key.options != null) {
233 Bundle opts = new Bundle(key.options);
234 opts.putAll(options);
235 options
196 sendInner(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DJPEGSource.h36 MediaBuffer **buffer, const ReadOptions *options = NULL);
H A DMediaAdapter.h43 MediaBuffer **buffer, const ReadOptions *options = NULL);
/frameworks/base/core/java/com/android/internal/appwidget/
H A DIAppWidgetService.aidl56 void bindAppWidgetId(int appWidgetId, in ComponentName provider, in Bundle options, int userId);
58 in ComponentName provider, in Bundle options, int userId);
/frameworks/compile/mclinker/lib/Target/
H A DELFEmulation.cpp79 if (!pConfig.options().nostdlib()) {

Completed in 600 milliseconds

123456789