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

1 2 3 45 6 7 8 91011>>

  /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);
  /external/guava/guava-tests/test/com/google/common/io/
TestByteSink.java 33 private final ImmutableSet<TestOption> options; field in class:TestByteSink
38 public TestByteSink(TestOption... options) {
39 this.options = ImmutableSet.copyOf(options);
66 super(bytes, options);
TestByteSource.java 36 private final ImmutableSet<TestOption> options; field in class:TestByteSource
41 TestByteSource(byte[] bytes, TestOption... options) {
43 this.options = ImmutableSet.copyOf(options);
65 super(new ByteArrayInputStream(bytes), options);
  /external/harfbuzz_ng/util/
hb-shape.cc 34 : options (parser, hb_buffer_serialize_list_formats ()),
42 options.get_file_handle ();
47 if (!options.output_format)
50 output_format = hb_buffer_serialize_format_from_string (options.output_format, -1);
53 if ((!options.output_format || *options.output_format) &&
56 if (options.explicit_output_format)
58 options.output_format,
59 g_strjoinv ("/", const_cast<char**> (options.supported_formats)));
86 fprintf (options.fp, "%s", gs->str)
116 output_options_t options; member in struct:output_buffer_t
    [all...]
  /external/icu/icu4c/source/tools/gencfu/
gencfu.cpp 17 // Usage: gencfu [options] -r confusables-file.txt -w whole-script-confusables.txt -o output-file.cfu
19 // options: -v verbose
49 static UOption options[]={ variable
62 printf("Usage: %s [-v] [-options] -r confusablesRules.txt -w wholeScriptConfusables.txt -o output-file\n", progName);
64 "options:\n"
143 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
150 if(options[0].doesOccur || options[1].doesOccur)
    [all...]
  /external/icu/icu4c/source/tools/gentest/
gentest.c 55 static UOption options[]={ variable
67 /* preset then read command line options */
68 options[2].value=u_getDataDirectory();
69 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
77 if(argc<0 || options[0].doesOccur || options[1].doesOccur) {
79 "usage: %s [-options]\n"
90 if( options[4].doesOccur )
    [all...]
  /external/linux-tools-perf/src/tools/perf/bench/
sched-pipe.c 15 #include "../util/parse-options.h"
34 static const struct option options[] = { variable in typeref:struct:option
41 "perf bench sched pipe <options>",
61 argc = parse_options(argc, argv, options,
  /external/lldb/source/Core/
DataBufferMemoryMap.cpp 125 uint32_t options = File::eOpenOptionRead; local
127 options |= File::eOpenOptionWrite;
130 Error error (file.Open(path, options));
  /external/protobuf/src/google/protobuf/compiler/java/
java_generator.cc 62 // parse generator options
69 vector<pair<string, string> > options; local
70 ParseGeneratorParameter(parameter, &options);
75 for (int i = 0; i < options.size(); i++) {
76 if (options[i].first == "output_list_file") {
77 output_list_file = options[i].second;
78 } else if (options[i].first == "immutable") {
80 } else if (options[i].first == "mutable") {
82 } else if (options[i].first == "shared") {
85 *error = "Unknown generator option: " + options[i].first
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_generator.cc 65 if (file->options().has_java_outer_classname()) {
67 file->name(), file->options().java_outer_classname());
69 if (file->options().has_java_package()) {
71 file->name(), file->options().java_package());
73 if (file->options().has_java_multiple_files()) {
75 file->name(), file->options().java_multiple_files());
92 vector<pair<string, string> > options; local
94 ParseGeneratorParameter(parameter, &options);
97 // parse generator options
107 // Replace any existing options with ones from command lin
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
LabelMethodItem.java 38 private final baksmaliOptions options; field in class:LabelMethodItem
42 public LabelMethodItem(@Nonnull baksmaliOptions options, int codeAddress, @Nonnull String labelPrefix) {
44 this.options = options;
79 if (options.useSequentialLabels) {
  /frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/
HelloComputeNDK.java 58 final BitmapFactory.Options options = new BitmapFactory.Options(); local
59 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
60 return BitmapFactory.decodeResource(getResources(), resource, options);
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
arguments_parser.cpp 99 std::unordered_map<std::string, std::string> options; local
105 options[optionName] = optionSpec.getDefaultValue();
133 options[optionName] = optionValue;
161 return ArgumentsAndOptions(std::move(options), std::move(arguments));
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
MakeKeyboardText.java 25 static class Options {
38 public Options(final String[] argsArray) {
60 final Options options = new Options(args); local
63 resources.writeToJava(options.mJava);
  /external/jsilver/src/com/google/clearsilver/jsilver/
JSilver.java 79 * Additional options can be passed to the constructor using JSilverOptions.
89 private final JSilverOptions options; field in class:JSilver
112 * @param options Additional options.
115 public JSilver(ResourceLoader defaultResourceLoader, JSilverOptions options) {
116 // To ensure that options cannot be changed externally, we clone them and
118 options = options.clone();
122 new HDFDataFactory(options.getIgnoreAttributes(), options.getStringInternStrategy())
    [all...]
  /art/compiler/
image_test.cc 148 RuntimeOptions options; local
151 options.push_back(std::make_pair(image.c_str(), static_cast<void*>(nullptr)));
153 options.push_back(std::make_pair("-Xnorelocate", nullptr));
155 if (!Runtime::Create(options, false)) {
  /build/tools/acp/
acp.c 41 int process(int argc, char* const argv[], unsigned int options)
154 copyResult = copyFile(src, dst, options);
170 * Set up the options.
177 unsigned int options; local
180 options = 0;
190 options |= COPY_NO_DEREFERENCE;
193 options |= COPY_TRY_EXE;
196 options |= COPY_FORCE;
199 options |= COPY_PERMISSIONS;
202 options |= COPY_TIMESTAMPS
    [all...]
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
AbstractMonkeyTest.java 43 String[] options = {AbiUtils.createAbiFlag(mAbi.getName())}; local
47 mDevice.installPackage(app, false, options);
  /cts/libs/deviceutil/src/android/cts/util/
WidgetTestUtils.java 119 BitmapFactory.Options options = new BitmapFactory.Options(); local
120 options.inScaled = false;
121 return BitmapFactory.decodeResource(resources, resId, options);
132 BitmapFactory.Options options = new BitmapFactory.Options(); local
133 options.inDither = true;
134 options.inScaled = false
    [all...]
  /cts/suite/cts/hostTests/jank/src/com/android/cts/jank/opengl/
CtsHostJankOpenGl.java 39 String[] options = {AbiUtils.createAbiFlag(mAbi.getName())}; local
40 mDevice.installPackage(app, false, options);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
CtsInstrumentationApkTest.java 97 String[] options = {AbiUtils.createAbiFlag(mAbi.getName())}; local
98 errorCode = testDevice.installPackage(apkFile, true, options);
  /cts/tools/vm-tests-tf/src/util/build/
JackDexBuildStep.java 21 import com.android.jack.Options;
63 Options options = Main.parseCommandLine(commandLine); local
64 Jack.checkAndRun(options);
  /external/ceres-solver/examples/
bundle_adjuster.cc 69 "Options are: levenberg_marquardt, dogleg.");
70 DEFINE_string(dogleg, "traditional_dogleg", "Options are: traditional_dogleg,"
76 DEFINE_string(blocks_for_inner_iterations, "automatic", "Options are: "
79 DEFINE_string(linear_solver, "sparse_schur", "Options are: "
82 DEFINE_string(preconditioner, "jacobi", "Options are: "
89 "Options are: suite_sparse and cx_sparse.");
91 "Options are: eigen and lapack.");
92 DEFINE_string(ordering, "automatic", "Options are: automatic, user.");
125 void SetLinearSolver(Solver::Options* options) {
320 Solver::Options options; local
    [all...]
circle_fit.cc 150 Solver::Options options; local
151 options.max_num_iterations = 500;
152 options.linear_solver_type = ceres::DENSE_QR;
154 Solve(options, &problem, &summary);

Completed in 664 milliseconds

1 2 3 45 6 7 8 91011>>