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

<<11121314151617181920>>

  /external/tensorflow/tensorflow/core/common_runtime/
process_function_library_runtime_test.cc 35 SessionOptions options; local
36 auto* device_count = options.config.mutable_device_count();
38 TF_CHECK_OK(DeviceFactory::AddDevices(options, "/job:a/replica:0/task:0",
51 Status Run(const string& name, FunctionLibraryRuntime::Options opts,
162 FunctionLibraryRuntime::Options opts;
178 FunctionLibraryRuntime::Options opts;
195 FunctionLibraryRuntime::Options opts;
213 FunctionLibraryRuntime::Options opts;
233 FunctionLibraryRuntime::Options opts;
  /external/tensorflow/tensorflow/core/example/
example_parser_configuration_test.cc 37 SessionOptions options; local
38 (*options.config.mutable_device_count())["CPU"] = 2;
39 return std::unique_ptr<Session>(NewSession(options));
  /external/tensorflow/tensorflow/core/kernels/batching_util/
periodic_function_test.cc 61 PeriodicFunction::Options options; local
62 options.env = &fake_clock_env;
64 kPeriodMicros, options);
85 PeriodicFunction::Options options; local
86 options.startup_delay_micros = kDelayMicros;
88 options.env = &fake_clock_env;
90 kPeriodMicros, options);
115 PeriodicFunction::Options options local
166 PeriodicFunction::Options options; local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/fuzzing/
fuzz_session.h 92 SessionOptions options; local
93 session_ = std::unique_ptr<Session>(NewSession(options));
  /external/tensorflow/tensorflow/core/kernels/
record_yielder.cc 25 const RecordYielder::Options& opts)
209 io::RecordReaderOptions options = local
212 io::RecordReader rdr(file.get(), options);
  /external/tensorflow/tensorflow/core/platform/
device_tracer_test.cc 46 SessionOptions options; local
47 (*options.config.mutable_device_count())["CPU"] = 1;
48 (*options.config.mutable_device_count())["GPU"] = 1;
49 options.config.set_allow_soft_placement(true);
50 return std::unique_ptr<Session>(NewSession(options));
  /external/toolchain-utils/
setup_chromeos.py 145 options = parser.parse_args(argv) variable
147 if not options.version:
151 version = options.version.strip()
153 if not options.timestamp:
156 timestamp = options.timestamp.strip()
162 if not options.directory:
166 directory = options.directory.strip()
168 if options.public:
227 if options.minilayout:
235 if options.jobs
    [all...]
  /external/toybox/
toys.h 95 char *options; member in struct:toy_list
  /external/turbine/java/com/google/turbine/options/
TurbineOptionsParser.java 17 package com.google.turbine.options;
32 /** A command line options parser for {@link TurbineOptions}. */
36 * Parses command line options into {@link TurbineOptions}, expanding any {@code @params} files.
45 * Parses command line options into a {@link TurbineOptions.Builder}, expanding any
60 * the content of the file and appending whitespace-delimited options to {@code argumentDeque}.
  /external/webrtc/talk/app/webrtc/
rtpsender.cc 138 cricket::AudioOptions options; local
139 provider_->SetAudioSend(ssrc_, false, options, nullptr);
150 cricket::AudioOptions options; local
151 provider_->SetAudioSend(ssrc_, false, options, nullptr);
175 cricket::AudioOptions options; local
176 provider_->SetAudioSend(ssrc_, false, options, nullptr);
186 cricket::AudioOptions options; local
191 options = static_cast<LocalAudioSource*>(track_->GetSource())->options();
199 provider_->SetAudioSend(ssrc_, track_->enabled(), options, renderer)
312 const cricket::VideoOptions* options = nullptr; local
    [all...]
  /external/webrtc/webrtc/base/
testclient.cc 44 rtc::PacketOptions options; local
45 return socket_->Send(buf, size, options);
50 rtc::PacketOptions options; local
51 return socket_->SendTo(buf, size, dest, options);
  /external/webrtc/webrtc/p2p/base/
asyncstuntcpsocket_unittest.cc 108 rtc::PacketOptions options; local
110 reinterpret_cast<const char*>(data), len, 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/telephony/java/com/android/ims/internal/uce/options/
OptionsCmdId.java 17 package com.android.ims.internal.uce.options;
OptionsCmdStatus.java 17 package com.android.ims.internal.uce.options;
OptionsSipResponse.java 17 package com.android.ims.internal.uce.options;
33 * Gets the Options command ID.
41 * Sets the Options command ID.
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
GridLayoutManagerCustomSizeInScrollDirectionTest.java 44 Boolean[] options = new Boolean[]{true, false}; local
45 for (boolean addMargins : options) {
46 for (boolean addDecorOffsets : options) {
  /hardware/google/av/codec2/1.0/mts/common/
media_c2_hidl_test_common.h 130 static struct option options[] = { local
138 int c = getopt_long(argc, argv, "I:C:P:", options, &index);
161 "usage: %s <gtest options> <test options>\n\n"
162 "test options are:\n\n"
  /hardware/libhardware/modules/camera/3_4/metadata/
control_test.cpp 53 std::unique_ptr<TaggedControlOptions<uint8_t>> options = local
59 new Control<uint8_t>(std::move(delegate), std::move(options)));
79 virtual void ExpectOptions(const std::vector<uint8_t>& options) {
80 // Options should be available.
85 ExpectMetadataEq(metadata, options_tag_, options);
88 // Shouldn't be expecting any options.
89 EXPECT_TRUE(options.empty());
158 // Lack of options shouldn't change anything for PopulateDynamic.
168 // Lack of reported options shouldn't change anything for PopulateDynamic.
216 // Should use delegate instead of options if no options
    [all...]
partial_metadata_factory.h 47 // NoEffectMenuControl: Some menu options, but they have no effect.
52 const std::vector<T>& options,
55 // NoEffectSliderControl: A slider of options, but they have no effect.
128 const std::vector<T>& options,
132 if (options.empty()) {
140 std::make_unique<NoEffectControlDelegate<T>>(options[0])),
143 std::make_unique<MenuControlOptions<T>>(options, default_values)));
211 std::vector<T> options; local
215 // Set up the result converter and result options based on type.
243 options.push_back(metadata_val)
    [all...]
  /hardware/qcom/gps/msm8909w_3100/android/location_api/
BatchingAPIClient.cpp 48 static void convertBatchOption(const IGnssBatching::Options& in, LocationOptions& out,
93 int BatchingAPIClient::startSession(const IGnssBatching::Options& opts)
98 LocationOptions options; local
99 convertBatchOption(opts, options, mLocationCapabilitiesMask);
104 if (locAPIStartSession(mDefaultId, mode, options) == LOCATION_ERROR_SUCCESS) {
110 int BatchingAPIClient::updateSessionOptions(const IGnssBatching::Options& opts)
115 LocationOptions options; local
116 convertBatchOption(opts, options, mLocationCapabilitiesMask);
122 if (locAPIUpdateSessionOptions(mDefaultId, mode, options) == LOCATION_ERROR_SUCCESS) {
173 static void convertBatchOption(const IGnssBatching::Options& in, LocationOptions& out
    [all...]
GeofenceAPIClient.cpp 89 GeofenceOption options; local
90 memset(&options, 0, sizeof(GeofenceOption));
91 options.size = sizeof(GeofenceOption);
93 options.breachTypeMask |= GEOFENCE_BREACH_ENTER_BIT;
95 options.breachTypeMask |= GEOFENCE_BREACH_EXIT_BIT;
96 options.responsiveness = notification_responsiveness_ms;
104 LocationError err = (LocationError)locAPIAddGeofences(1, &geofence_id, &options, &data);

Completed in 877 milliseconds

<<11121314151617181920>>