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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
ResourceTexture.java 41 BitmapFactory.Options options = new BitmapFactory.Options(); local
42 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
44 mContext.getResources(), mResId, options);
  /packages/services/Car/evs/app/
evs_app.cpp 56 hidl_vec <SubscribeOptions> options; local
57 options.setToExternal(optionsData, arraysize(optionsData));
58 StatusCode status = pVnet->subscribe(listener, options);
73 // Set up default behavior, then check for command line options
92 printf("Options include:\n");
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
c++filt.go 29 fmt.Fprintf(w, "Usage: %s [options] [mangled names]\n", os.Args[0])
66 a, err := demangle.ToAST(f, options()...)
122 result := demangle.Filter(name[skip:], options()...)
133 // options returns the demangling options to use based on the command
135 func options() []demangle.Option { func
136 var options []demangle.Option
138 options = append(options, demangle.NoParams)
141 options = append(options, demangle.Verbose
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
c++filt.go 29 fmt.Fprintf(w, "Usage: %s [options] [mangled names]\n", os.Args[0])
66 a, err := demangle.ToAST(f, options()...)
122 result := demangle.Filter(name[skip:], options()...)
133 // options returns the demangling options to use based on the command
135 func options() []demangle.Option { func
136 var options []demangle.Option
138 options = append(options, demangle.NoParams)
141 options = append(options, demangle.Verbose
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/vkjson/
vkjson_info.cc 33 struct Options {
40 bool ParseOptions(int argc, char* argv[], Options* options) {
44 options->instance = true;
46 options->device_index = 0;
55 int result = sscanf(arg2.c_str(), "%u", &options->device_index);
57 options->device_index = -1;
62 options->device_name = arg2;
64 options->output_file = arg2;
71 if (options->instance && (options->device_index != unsignedNegOne |
156 Options options; local
    [all...]
  /system/tools/aidl/tests/
end_to_end_tests.cpp 25 #include "options.h"
76 JavaOptions options;
77 options.fail_on_parcelable_ = true;
78 options.import_paths_.push_back("");
79 options.input_file_name_ = CanonicalNameToPath(kCanonicalName, ".aidl");
80 options.output_file_name_ = kJavaOutputPath;
81 options.dep_file_name_ = "an/arbitrary/path/to/deps.P";
84 io_delegate_.SetFileContents(options.input_file_name_, kInterfaceDefinition);
90 EXPECT_EQ(android::aidl::compile_aidl_to_java(options, io_delegate_), 0);
92 CheckFileContents(options.DependencyFilePath(), kExpectedJavaDepsOutput)
152 auto options = CppOptions::Parse(argc, cmdline); local
177 auto options = CppOptions::Parse(argc, cmdline); local
201 auto options = JavaOptions::Parse(argc, cmdline); local
    [all...]
  /system/tpm/attestation/server/
dbus_service_test.cc 43 dbus::Bus::Options options; variable
44 mock_bus_ = new NiceMock<dbus::MockBus>(options);
  /system/tpm/tpm_manager/client/
tpm_nvram_dbus_proxy.cc 41 dbus::Bus::Options options; local
42 options.bus_type = dbus::Bus::SYSTEM;
43 bus_ = new dbus::Bus(options);
tpm_ownership_dbus_proxy.cc 41 dbus::Bus::Options options; local
42 options.bus_type = dbus::Bus::SYSTEM;
43 bus_ = new dbus::Bus(options);
  /system/tpm/trunks/
trunks_dbus_proxy.cc 48 dbus::Bus::Options options; local
49 options.bus_type = dbus::Bus::SYSTEM;
50 bus_ = new dbus::Bus(options);
  /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/
AlignmentTest.java 56 ZFileOptions options = new ZFileOptions(); local
57 options.setAlignmentRule(AlignmentRules.constantForSuffix(".txt", 1024));
58 try (ZFile zf = new ZFile(newZFile, options)) {
72 ZFileOptions options = new ZFileOptions(); local
73 options.setAlignmentRule(AlignmentRules.constantForSuffix(".txt", 1024));
74 try (ZFile zf = new ZFile(newZFile, options)) {
104 ZFileOptions options = new ZFileOptions();
105 options.setAlignmentRule(AlignmentRules.constantForSuffix(".txt", 1024));
106 try (ZFile zf = new ZFile(newZFile, options)) {
140 ZFileOptions options = new ZFileOptions()
    [all...]
  /prebuilts/tools/common/m2/repository/org/anarres/jarjar/jarjar-command/1.0.0/
jarjar-command-1.0.0.jar 
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletFactory.java 32 import com.sun.tools.javac.util.Options;
87 ListBuffer<String[]> options = new ListBuffer<String[]>(); local
89 options.append(new String[] {"-sourcepath", sourcepath});
95 Options compOpts = Options.instance(context);
118 javaNames.toList(), options.toList(), breakiterator,
  /external/annotation-tools/scene-lib/src/annotations/io/classfile/
ClassFileReader.java 39 = "extract-annotations [options] class1 class2 ..."
49 + "the command line. Options:";
63 * @param args options and classes to analyze;
67 Options options = new Options(usage, ClassFileReader.class); local
72 file_args = options.parse_or_usage(cl_args);
86 options.print_usage();
93 options.print_usage("No arguments given.");
ClassFileWriter.java 14 import plume.Options;
34 = "usage: insert-annotations [options] class1 indexfile1 class2 indexfile2 ..."
49 + "be read and expanded into the command line. Options:";
56 * Usage: java annotations.io.ClassFileWriter <em>options</em> [classfile indexfile] ...
58 * <em>options</em> include:<pre>
62 * @param args options and classes and index files to analyze;
66 Options options = new Options(usage, ClassFileWriter.class); local
71 file_args = options.parse_or_usage(cl_args)
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
VmSpec.java 40 private SortedMap<String, String> options; field in class:VmSpec
45 this.options = Maps.newTreeMap();
50 this.options = Maps.newTreeMap(builder.options);
53 public ImmutableSortedMap<String, String> options() { method in class:VmSpec
54 return ImmutableSortedMap.copyOf(options);
67 && this.options.equals(that.options);
87 .add("options", options)
102 private final SortedMap<String, String> options = Maps.newTreeMap(); field in class:VmSpec.Builder
    [all...]
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
CaliperTestWatcher.java 64 CaliperTestWatcher options(String... extraOptions) { method in class:CaliperTestWatcher
74 List<String> options = Lists.newArrayList( local
79 options.add("-i");
80 options.add(instrument);
82 options.addAll(extraOptions);
83 options.add(benchmarkClass.getName());
86 options.toArray(new String[0]),
  /external/robolectric-shadows/processor/src/test/java/org/robolectric/annotation/processing/
RobolectricProcessorTest.java 244 Map<String, String> options = new HashMap<>(); local
245 options.put(PACKAGE_OPT, "org.robolectric");
246 options.put(SHOULD_INSTRUMENT_PKG_OPT, "false");
255 .processedWith(new RobolectricProcessor(options))
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/emitter/
EmitterTest.java 41 DumperOptions options = new DumperOptions(); local
42 options.setDefaultScalarStyle(ScalarStyle.FOLDED);
47 Yaml yaml = new Yaml(options);
54 DumperOptions options = new DumperOptions(); local
55 options.setDefaultScalarStyle(ScalarStyle.LITERAL);
60 Yaml yaml = new Yaml(options);
67 DumperOptions options = new DumperOptions(); local
68 options.setDefaultScalarStyle(ScalarStyle.PLAIN);
73 Yaml yaml = new Yaml(options);
80 DumperOptions options = new DumperOptions() local
96 DumperOptions options = new DumperOptions(); local
109 DumperOptions options = new DumperOptions(); local
123 DumperOptions options = new DumperOptions(); local
139 DumperOptions options = new DumperOptions(); local
162 DumperOptions options = new DumperOptions(); local
176 DumperOptions options = new DumperOptions(); local
201 DumperOptions options = new DumperOptions(); local
234 DumperOptions options = new DumperOptions(); local
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
Options.java 10 package com.adobe.xmp.options;
24 public abstract class Options
26 /** the internal int containing all options */
27 private int options = 0; field in class:Options
35 public Options()
42 * Constructor with the options bit mask.
44 * @param options the options bit mask
45 * @throws XMPException If the options are not correct
47 public Options(int options) throws XMPExceptio
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetHostViewLoader.java 49 public void onDragStart(DropTarget.DragObject dragObject, DragOptions options) {
91 final Bundle options = getDefaultOptionsForWidget(mLauncher, mInfo); local
95 mInfo.bindOptions = options;
107 mWidgetLoadingId, pInfo, options)) {
165 Bundle options = new Bundle(); local
166 options.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH,
168 options.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT,
170 options.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH,
172 options.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT,
174 return options;
    [all...]
  /art/openjdkjvmti/
fixed_up_dex_file.cc 120 art::Options options; local
121 options.compact_dex_level_ = art::CompactDexLevel::kCompactDexLevelNone;
124 options.verify_output_ = false;
128 options.class_filter_.insert(descriptor);
130 art::DexLayout dex_layout(options,
  /build/make/tools/acp/
acp.c 41 int process(int argc, char* const argv[], unsigned int options)
153 copyResult = copyFile(src, dst, options);
169 * Set up the options.
176 unsigned int options; local
179 options = 0;
189 options |= COPY_NO_DEREFERENCE;
192 options |= COPY_TRY_EXE;
195 options |= COPY_FORCE;
198 options |= COPY_PERMISSIONS;
201 options |= COPY_TIMESTAMPS
    [all...]
  /cts/tests/framework/base/activitymanager/app/src/android/server/am/
AssistantActivity.java 85 final ActivityOptions options = ActivityOptions.makeBasic(); local
86 options.setLaunchActivityType(ACTIVITY_TYPE_ASSISTANT);
87 caller.startActivity(intent, options.toBundle());
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactory_OptionsTest.java 42 new BitmapFactory.Options();
47 BitmapFactory.Options option = new BitmapFactory.Options();
58 BitmapFactory.Options options = new BitmapFactory.Options(); local
59 options.inJustDecodeBounds = true;
67 b = BitmapFactory.decodeStream(in, null, options);
72 assertEquals(64, options.outWidth);
73 assertEquals(64, options.outHeight)
    [all...]

Completed in 1022 milliseconds

1 2 3 4 5 6 7 8 91011>>