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

<<11121314151617181920>>

  /developers/build/prebuilts/gradle/MultiWindowPlayground/Application/src/main/java/com/android/multiwindowplayground/
MainActivity.java 92 ActivityOptions options = ActivityOptions.makeBasic(); local
93 options.setLaunchBounds(bounds);
95 // Start the LaunchBoundsActivity with the specified options
97 startActivity(intent, options.toBundle());
104 // Start an Activity with the default options in the 'singleTask' launch mode as defined in
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/ui/
DetailActivity.java 44 ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation( local
46 ActivityCompat.startActivity(activity, intent, options.toBundle());
  /developers/samples/android/ui/window/MultiWindowPlayground/Application/src/main/java/com/android/multiwindowplayground/
MainActivity.java 92 ActivityOptions options = ActivityOptions.makeBasic(); local
93 options.setLaunchBounds(bounds);
95 // Start the LaunchBoundsActivity with the specified options
97 startActivity(intent, options.toBundle());
104 // Start an Activity with the default options in the 'singleTask' launch mode as defined in
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/ui/
DetailActivity.java 44 ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation( local
46 ActivityCompat.startActivity(activity, intent, options.toBundle());
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
HelloCompute.java 72 final BitmapFactory.Options options = new BitmapFactory.Options(); local
73 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
74 return BitmapFactory.decodeResource(getResources(), resource, options);
  /development/samples/browseable/MultiWindowPlayground/src/com/android.multiwindowplayground/
MainActivity.java 92 ActivityOptions options = ActivityOptions.makeBasic(); local
93 options.setLaunchBounds(bounds);
95 // Start the LaunchBoundsActivity with the specified options
97 startActivity(intent, options.toBundle());
104 // Start an Activity with the default options in the 'singleTask' launch mode as defined in
  /development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/
DetailActivity.java 44 ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation( local
46 ActivityCompat.startActivity(activity, intent, options.toBundle());
  /device/generic/goldfish/wifi/ipv6proxy/
packet.cpp 74 // We might have options
75 char* options = data + headerSize; local
76 if (options + sizeof(nd_opt_hdr) < data + size) {
77 nd_opt_hdr* option = reinterpret_cast<nd_opt_hdr*>(options);
79 if (options + option->nd_opt_len * 8u <= data + size) {
  /external/boringssl/src/crypto/cipher_extra/test/
make_legacy_aead_tests.go 124 // options adds additional options for a test.
125 type options struct { type
142 func makeTestCase(length int, options options) (*testCase, error) {
211 if options.omitMAC {
218 if options.noPadding {
225 if options.extraPadding || options.maximalPadding {
226 if options.extraPadding
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
InstrumentConfig.java 41 private final ImmutableMap<String, String> options; field in class:InstrumentConfig
45 this.options = builder.optionsBuilder.build();
52 public ImmutableMap<String, String> options() { method in class:InstrumentConfig
53 return options;
62 && this.options.equals(that.options);
69 return Objects.hashCode(className, options);
75 .add("options", options)
97 public Builder addAllOptions(Map<String, String> options) {
    [all...]
ResultProcessorConfig.java 35 private final ImmutableMap<String, String> options; field in class:ResultProcessorConfig
39 this.options = builder.optionsBuilder.build();
46 public ImmutableMap<String, String> options() { method in class:ResultProcessorConfig
47 return options;
57 && this.options.equals(that.options);
64 return Objects.hashCode(className, options);
70 .add("options", options)
88 public Builder addAllOptions(Map<String, String> options) {
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/options/
CaliperOptions.java 15 package com.google.caliper.options;
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
VmDataCollectingVisitor.java 31 /** An {@link AbstractLogMessageVisitor} that collects data about JVM properties and options. */
48 ImmutableMap<String, String> options = vmOptionsBuilder.build(); local
49 platform.checkVmProperties(options);
52 .addAllOptions(options)
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
ArbitraryMeasurementWorker.java 36 private final Options options; field in class:ArbitraryMeasurementWorker
45 this.options = new Options(workerOptions);
52 if (options.gcBeforeEach && !inWarmup) {
66 private static class Options {
69 Options(Map<String, String> options) {
70 this.gcBeforeEach = Boolean.parseBoolean(options.get("gcBeforeEach"));
  /external/clang/include/clang/Driver/
Options.h 1 //===--- Options.h - Option info & table ------------------------*- C++ -*-===//
22 namespace options { namespace in namespace:clang::driver
23 /// Flags specifically for clang options. Must not overlap with
41 #include "clang/Driver/Options.inc"
  /external/clang/unittests/Basic/
FileManagerTest.cpp 70 FileManagerTest() : manager(options) {
73 FileSystemOptions options; member in class:__anon17060::FileManagerTest
  /external/desugar/java/com/google/devtools/common/options/
GenericTypeHelper.java 14 package com.google.devtools.common.options;
OptionDocumentationCategory.java 14 package com.google.devtools.common.options;
17 * These categories are used to logically group options in generated documentation, both the command
25 * (ok, maybe less than that) options, probably. A category for 2 options is pretty useless,
26 * and a category for all options equally so.
49 * Startup options appear before the command and are parsed by the client. Changing them may cause
95 * category; options in this category are for selecting between available toolchains, for example
  /external/desugar/java/com/google/devtools/common/options/testing/
ConverterTesterMap.java 15 package com.google.devtools.common.options.testing;
19 import com.google.devtools.common.options.Converter;
  /external/emma/core/java12/com/vladium/emma/rt/
InstrClassLoadHook.java 45 // important to use the same options as the metadata may have been populated earlier:
46 final CoverageOptions options = mdata.getOptions (); local
47 m_classDefProcessor = new InstrVisitor (options);
  /external/fio/
profile.h 27 * Profile specific options
29 struct fio_option *options; member in struct:profile_ops
33 * Called after parsing options, to prepare 'cmdline'
  /external/fio/profiles/
tiobench.c 36 static struct fio_option options[] = { variable in typeref:struct:fio_option
89 * Fill our private options into the command line
119 .options = options,
  /external/google-breakpad/src/third_party/libdisasm/
ia32_settings.h 7 /* options */
24 enum x86_options options; member in struct:__anon20996
  /external/google-breakpad/src/tools/linux/symupload/
minidump_upload.cc 48 struct Options {
59 static void Start(Options *options) {
62 parameters["prod"] = options->product;
63 parameters["ver"] = options->version;
67 bool success = HTTPUpload::SendRequest(options->uploadURLStr,
69 options->minidumpPath,
71 options->proxy,
72 options->proxy_user_pwd,
85 options->success = success
147 Options options; local
    [all...]
  /external/gptfdisk/
popt.h 50 const struct poptOption *options; member in struct:_poptContext
60 const struct poptOption *options, unsigned int flags);

Completed in 368 milliseconds

<<11121314151617181920>>