HomeSort by relevance Sort by last modified time
    Searched defs:options (Results 226 - 250 of 1602) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smali/baksmali/src/test/java/org/jf/baksmali/
AnalysisTest.java 90 baksmaliOptions options = new baksmaliOptions(); local
92 options.registerInfo = baksmaliOptions.ALL | baksmaliOptions.FULLMERGE;
93 options.classPath = new ClassPath();
95 options.useImplicitReferences = false;
100 ClassDefinition classDefinition = new ClassDefinition(options, classDef);
  /external/toybox/
toys.h 114 char *options; member in struct:toy_list
  /external/v8/test/cctest/
test-deoptimization.cc 122 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
139 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
162 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
180 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
204 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
230 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
256 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
285 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
300 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
324 AlwaysOptimizeAllowNativesSyntaxNoInlining options; local
351 AllowNativesSyntaxNoInlining options; local
426 AllowNativesSyntaxNoInlining options; local
569 AllowNativesSyntaxNoInlining options; local
628 AllowNativesSyntaxNoInlining options; local
719 AllowNativesSyntaxNoInlining options; local
    [all...]
  /external/vboot_reference/futility/
futility.c 183 "Usage: " MYNAME " [options] COMMAND [args...]\n"
194 static const char *const options = variable
195 "Global options:\n"
240 fputs(options, stdout);
321 /* Parse the global options, stopping at the first non-option. */
347 /* Reset the getopt state so commands can parse their own options. */
  /external/vixl/test/
test-disasm-a64.cc 1482 LoadStoreScalingOption options[] = { local
    [all...]
  /frameworks/av/media/libstagefright/timedtext/
TimedTextPlayer.cpp 126 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) {
232 &(parcelEvent->parcel), options);
235 if (options != NULL) {
239 CHECK(options->getSeekTo(&seekTimeUs, &seekMode))
    [all...]
  /frameworks/av/media/libstagefright/timedtext/test/
TimedTextSRTSource_test.cpp 150 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.setSeekTo(i * kSecToUsec, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC)
186 MediaSource::ReadOptions options; local
200 MediaSource::ReadOptions options; local
    [all...]
  /frameworks/base/core/java/android/app/
TaskStackBuilder.java 216 public void startActivities(Bundle options, UserHandle userHandle) {
222 mSourceContext.startActivitiesAsUser(getIntents(), options, userHandle); local
228 * @param options Additional options for how the Activity should be started.
232 public void startActivities(Bundle options) {
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);
    [all...]
  /frameworks/base/core/java/android/content/
SyncActivityTooManyDeletes.java 33 * Presents multiple options for handling the case where a sync was aborted because there
62 CharSequence[] options = new CharSequence[]{ local
71 options);
110 // the constants for position correspond to the items options array in onCreate()
  /frameworks/base/core/java/com/android/server/
NetworkManagementSocketTagger.java 67 final SocketTags options = threadSocketTags.get(); local
70 + Integer.toHexString(options.statsTag) + ", statsUid=" + options.statsUid);
72 // TODO: skip tagging when options would be no-op
73 tagSocketFd(fd, options.statsTag, options.statsUid);
98 final SocketTags options = threadSocketTags.get(); local
99 if (options.statsTag == -1 && options.statsUid == -1) return;
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 25 * 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
86 // ----- General Options ----- //
  /frameworks/ex/common/tests/src/com/android/common/
OperationSchedulerTest.java 47 OperationScheduler.Options options = new OperationScheduler.Options(); local
48 assertEquals(Long.MAX_VALUE, scheduler.getNextTimeMillis(options));
54 assertEquals(beforeTrigger + 1000000, scheduler.getNextTimeMillis(options));
58 assertEquals(beforeTrigger + 1000000, scheduler.getNextTimeMillis(options));
60 assertEquals(beforeTrigger + 1500000, scheduler.getNextTimeMillis(options));
64 assertEquals(Long.MAX_VALUE, scheduler.getNextTimeMillis(options));
66 assertEquals(beforeTrigger + 1500000, scheduler.getNextTimeMillis(options));
73 assertEquals(beforeTrigger + 1500000, scheduler.getNextTimeMillis(options));
125 OperationScheduler.Options options = new OperationScheduler.Options(); local
160 OperationScheduler.Options options = new OperationScheduler.Options(); local
186 OperationScheduler.Options options = new OperationScheduler.Options(); local
211 OperationScheduler.Options options = new OperationScheduler.Options(); local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/
JpegImageBackendImageSaver.java 126 BitmapFactory.Options options = new BitmapFactory.Options(); local
127 options.inSampleSize = JPEG_DOWNSAMPLE_FOR_FAST_INDICATOR;
129 payload.data.length, options);
  /packages/apps/Camera2/src/com/android/camera/session/
PlaceholderManager.java 106 BitmapFactory.Options options = new BitmapFactory.Options(); local
107 Bitmap bitmap = BitmapFactory.decodeByteArray(placeholder, 0, placeholder.length, options);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
BitmapUtil.java 41 final BitmapFactory.Options options = new BitmapFactory.Options(); local
44 options.inJustDecodeBounds = true;
45 BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options);
48 return Math.min(options.outWidth, options.outHeight);
82 final BitmapFactory.Options options; local
84 options = null
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasFolderSync.java 133 final EasOptions options = new EasOptions(this); local
134 final int result = options.getProtocolVersionFromServer();
139 final String protocolVersion = options.getProtocolVersionString();
  /packages/apps/Gallery/src/com/android/camera/gallery/
Image.java 153 BitmapFactory.Options options = new BitmapFactory.Options(); local
154 options.inDither = false;
155 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
157 Images.Thumbnails.MINI_KIND, options, false);
UriImage.java 124 private BitmapFactory.Options snifBitmapOptions() {
128 BitmapFactory.Options options = new BitmapFactory.Options(); local
129 options.inJustDecodeBounds = true;
131 input.getFileDescriptor(), options); local
132 return options;
139 BitmapFactory.Options options = snifBitmapOptions(); local
140 return (options != null && options.outMimeType != null
146 BitmapFactory.Options options = snifBitmapOptions(); local
151 BitmapFactory.Options options = snifBitmapOptions(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageViewAdapter.java 116 BitmapFactory.Options options = new BitmapFactory.Options(); local
117 options.inPreferredConfig = Config.ARGB_8888;
118 options.inPreferQualityOverSpeed = true;
119 options.inSampleSize = (1 << level);
120 options.inBitmap = bitmap;
125 bitmap = regionDecoder.decodeRegion(wantRegion, options);
128 if (options.inBitmap != bitmap && options.inBitmap != null)
155 BitmapFactory.Options options = new BitmapFactory.Options(); local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FolderInfo.java 54 public int options; field in class:FolderInfo
105 values.put(LauncherSettings.Favorites.OPTIONS, options);
147 return (options & optionFlag) != 0;
156 int oldOptions = options;
158 options |= option;
160 options &= ~option;
162 if (context != null && oldOptions != options) {
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
BitmapPoolTest.java 84 * Make sure that we have the correct options to create mutable for bitmap pool reuse.
87 final BitmapFactory.Options options = local
89 assertTrue(options.inMutable);
94 final BitmapFactory.Options options = local
98 R.drawable.msg_bubble_incoming, resources, options, IMAGE_DIM, IMAGE_DIM);
  /packages/apps/Settings/src/com/android/settings/
AppWidgetPickActivity.java 156 Bundle options = null; local
158 options = intent.getExtras().getBundle(
161 mAppWidgetManager.bindAppWidgetId(mAppWidgetId, intent.getComponent(), options);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
isdn_ppp.h 62 unsigned char options[ISDN_PPP_COMP_MAX_OPTIONS]; member in struct:isdn_ppp_comp_data
net_dropmon.h 31 struct net_dm_config_entry options[0]; member in struct:net_dm_config_msg
watchdog.h 18 __u32 options; /* Options the card/driver supports */ member in struct:watchdog_info

Completed in 693 milliseconds

1 2 3 4 5 6 7 8 91011>>