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

1 2 3 4 5 67 8 91011>>

  /external/webp/src/dec/
webpi.h 37 const WebPDecoderOptions* options; // if not NULL, use alt decoding features member in struct:WebPDecParams
83 int WebPIoInitFromOptions(const WebPDecoderOptions* const options,
94 // dimension / etc.). If *options is not NULL, also verify that the options'
97 // Also incorporates the options->flip flag to flip the buffer parameters if
100 const WebPDecoderOptions* const options,
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
AliasOptions.java 10 package com.adobe.xmp.options;
16 * Options for XMPSchemaRegistryImpl#registerAlias.
20 public final class AliasOptions extends Options
37 * @see Options#Options()
46 * @param options the options to init with
47 * @throws XMPException If options are not consistant
49 public AliasOptions(int options) throws XMPException
51 super(options);
    [all...]
IteratorOptions.java 10 package com.adobe.xmp.options;
14 * Options for <code>XMPIterator</code> construction.
18 public final class IteratorOptions extends Options
122 * @see Options#defineOptionName(int)
138 * @see Options#getValidOptions()
ParseOptions.java 10 package com.adobe.xmp.options;
18 * Options for {@link XMPMetaFactory#parse(InputStream, ParseOptions)}.
22 public final class ParseOptions extends Options
37 * Sets the options to the default values.
146 * @see Options#defineOptionName(int)
163 * @see Options#getValidOptions()
  /external/zopfli/src/zopfli/
zopfli_bin.c 82 static void CompressFile(const ZopfliOptions* options,
96 ZopfliCompress(options, output_type, in, insize, &out, &outsize);
129 ZopfliOptions options; local
135 ZopfliInitOptions(&options);
139 if (StringsEqual(arg, "-v")) options.verbose = 1;
146 else if (StringsEqual(arg, "--splitlast")) options.blocksplittinglast = 1;
149 options.numiterations = atoi(arg + 3);
170 if (options.numiterations < 1) {
189 if (options.verbose && outfilename) {
192 CompressFile(&options, output_type, filename, outfilename)
    [all...]
  /frameworks/base/tools/aidl/
options_test.cpp 2 #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.inputFileNam
    [all...]
  /hardware/ril/rild/
radiooptions.c 26 enum options { enum
  /packages/apps/DeskClock/src/com/android/alarmclock/
WidgetUtils.java 40 public static float getScaleRatio(Context context, Bundle options, int id) {
41 if (options == null) {
47 options = widgetManager.getAppWidgetOptions(id);
49 if (options != null) {
50 int minWidth = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH);
59 int minHeight = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT);
62 ratio = Math.min(ratio, getHeightScaleRatio(context, options, id));
70 private static float getHeightScaleRatio(Context context, Bundle options, int id) {
71 if (options == null) {
77 options = widgetManager.getAppWidgetOptions(id)
108 Bundle options = widgetManager.getAppWidgetOptions(id); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ImageCacheRequest.java 61 BitmapFactory.Options options = new BitmapFactory.Options(); local
62 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
66 buffer.data, buffer.offset, buffer.length, options);
69 buffer.data, buffer.offset, buffer.length, options);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
IconUtilities.java 38 BitmapFactory.Options o = new BitmapFactory.Options();
49 final BitmapFactory.Options options = new BitmapFactory.Options(); local
50 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
53 resource, options);
ImageFilterChanSat.java 135 LaunchOptions options = new LaunchOptions(); local
137 options.setX(0, width);
144 options.setY(ty, endy);
145 mScript.forEach_selectiveAdjust(in, out, options);
ImageFilterGrad.java 164 LaunchOptions options = new LaunchOptions(); local
166 options.setX(0, width);
173 options.setY(ty, endy);
174 mScript.forEach_selectiveAdjust(in, out, options);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
FileImageRequest.java 61 final BitmapFactory.Options options = PoolableImageCache.getBitmapOptionsForPool( local
64 options.inJustDecodeBounds = true;
65 BitmapFactory.decodeByteArray(thumbnail, 0, thumbnail.length, options);
68 options.inSampleSize = ImageUtils.get().calculateInSampleSize(options,
71 options.inJustDecodeBounds = false;
82 mDescriptor.updateSourceDimensions(options.outHeight, options.outWidth);
84 mDescriptor.updateSourceDimensions(options.outWidth, options.outHeight)
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
ImageRequestTest.java 60 final ArgumentCaptor<BitmapFactory.Options> options = local
61 ArgumentCaptor.forClass(BitmapFactory.Options.class);
63 options.capture(),
66 assertEquals(1, options.getValue().inSampleSize);
73 assertEquals(options.getValue().outWidth, bitmapWidth);
74 assertEquals(options.getValue().outHeight, bitmapHeight);
91 final ArgumentCaptor<BitmapFactory.Options> options = local
92 ArgumentCaptor.forClass(BitmapFactory.Options.class)
    [all...]
  /cts/tools/signature-tools/test/signature/converter/doclet/
DocletTestConverter.java 37 import com.sun.tools.javac.util.Options;
146 ListBuffer<String[]> options = new ListBuffer<String[]>(); local
150 options.append(new String[]{"-sourcepath", sourcepath});
156 Options compOpts = Options.instance(context);
176 javaNames.toList(), options.toList(), breakiterator,
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
main.java 52 private static final Options basicOptions;
53 private static final Options debugOptions;
54 private static final Options options; field in class:main
57 options = new Options();
58 basicOptions = new Options();
59 debugOptions = new Options();
95 commandLine = parser.parse(options, args);
101 baksmaliOptions options = new baksmaliOptions() local
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
CommandLine.java 33 static Hashtable options = new Hashtable(); static { field in class:CommandLine
34 options.put("--nocdata", Boolean.FALSE); // CDATA elements are normal
35 options.put("--files", Boolean.FALSE); // process arguments as separate files
36 options.put("--reuse", Boolean.FALSE); // reuse a single Parser
37 options.put("--nons", Boolean.FALSE); // no namespaces
38 options.put("--nobogons", Boolean.FALSE); // suppress unknown elements
39 options.put("--any", Boolean.FALSE); // unknowns have ANY content model
40 options.put("--emptybogons", Boolean.FALSE); // unknowns have EMPTY content model
41 options.put("--norootbogons", Boolean.FALSE); // unknowns can't be the root
42 options.put("--pyxin", Boolean.FALSE); // input is PY
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/widget/
BaseWidgetProvider.java 97 final Bundle options = appWidgetManager.getAppWidgetOptions(appWidgetId); local
100 final int minWidth = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH);
101 final int minHeight = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT);
121 final int savedSize = options.getInt(WIDGET_SIZE_KEY);
123 options.putInt(WIDGET_SIZE_KEY, size);
124 appWidgetManager.updateAppWidgetOptions(appWidgetId, options);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 25 import com.adobe.xmp.options.SerializeOptions;
75 /** the stored serialisation options */
76 private SerializeOptions options; field in class:XMPSerializerRDF
91 * @param options the serialization options
93 * @throws XMPException If case of wrong options or any other serialisaton error.
96 SerializeOptions options) throws XMPException
101 writer = new OutputStreamWriter(outputStream, options.getEncoding());
104 this.options = options;
    [all...]
  /developers/build/lib/
assetstudio.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar 
  /art/compiler/dex/
pass_driver_me.h 105 auto* const options = &pass_manager_->GetOptions(); variable
106 const std::string& print_pass_list = options->GetPrintPassList();
114 FillOverriddenPassSettings(options, pass->GetName(), c_unit->overridden_pass_options);
167 LOG(INFO) << "Pass options for \"" << me_pass->GetName() << "\" are:";
208 * @brief Fills the settings_to_fill by finding all of the applicable options in the
211 * @param settings_to_fill Fills the options to contain the mapping of name of option to the new
215 const PassManagerOptions* options, const char* pass_name,
217 const std::string& settings = options->GetOverriddenPassOptions();
229 // If there is no room for pass options, exit early.
  /bionic/libc/kernel/uapi/linux/
isdn_ppp.h 66 unsigned char options[ISDN_PPP_COMP_MAX_OPTIONS]; member in struct:isdn_ppp_comp_data
net_dropmon.h 43 struct net_dm_config_entry options[0]; member in struct:net_dm_config_msg
watchdog.h 26 __u32 options; member in struct:watchdog_info

Completed in 491 milliseconds

1 2 3 4 5 67 8 91011>>