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

1 23 4 5 6 7 8 91011>>

  /art/runtime/
parsed_options_test.cc 43 RuntimeOptions options; local
44 options.push_back(std::make_pair(boot_class_path.c_str(), nullptr));
45 options.push_back(std::make_pair("-classpath", nullptr));
46 options.push_back(std::make_pair(lib_core.c_str(), nullptr));
47 options.push_back(std::make_pair("-cp", nullptr));
48 options.push_back(std::make_pair(lib_core.c_str(), nullptr));
49 options.push_back(std::make_pair("-Ximage:boot_image", nullptr));
50 options.push_back(std::make_pair("-Xcheck:jni", nullptr));
51 options.push_back(std::make_pair("-Xms2048", nullptr));
52 options.push_back(std::make_pair("-Xmx4k", nullptr))
101 RuntimeOptions options; local
    [all...]
  /bionic/tools/relocation_packer/src/
main.cc 56 static const option options[] = { local
62 int c = getopt_long(argc, argv, "uvph", options, NULL);
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/
AddAccountTx.java 29 public final Bundle options; field in class:AddAccountTx
36 options = in.readBundle();
44 Bundle options,
53 this.options = options;
67 out.writeBundle(options);
ConfirmCredentialsTx.java 25 public final Bundle options; field in class:ConfirmCredentialsTx
30 options = in.readBundle();
36 Bundle options,
39 this.options = options;
51 out.writeBundle(options);
GetAuthTokenTx.java 26 public final Bundle options; field in class:GetAuthTokenTx
32 options = in.readBundle();
39 Bundle options,
43 this.options = options;
56 out.writeBundle(options);
UpdateCredentialsTx.java 26 public final Bundle options; field in class:UpdateCredentialsTx
32 options = in.readBundle();
39 Bundle options,
43 this.options = options;
56 out.writeBundle(options);
  /cts/tools/vm-tests-tf/src/util/build/
JillBuildStep.java 21 import com.android.jill.Options;
49 Options options = Main.getOptions(commandLine); local
50 Jill.process(options);
  /external/ceres-solver/examples/
curve_fitting.cc 152 Solver::Options options; local
153 options.max_num_iterations = 25;
154 options.linear_solver_type = ceres::DENSE_QR;
155 options.minimizer_progress_to_stdout = true;
158 Solve(options, &problem, &summary);
helloworld_analytic_diff.cc 97 Solver::Options options; local
98 options.minimizer_progress_to_stdout = true;
100 Solve(options, &problem, &summary);
powell.cc 127 Solver::Options options; local
129 &options.minimizer_type))
131 << ", valid options are: trust_region and line_search.";
133 options.max_num_iterations = 100;
134 options.linear_solver_type = ceres::DENSE_QR;
135 options.minimizer_progress_to_stdout = true;
145 Solve(options, &problem, &summary);
robust_curve_fitting.cc 153 Solver::Options options; local
154 options.linear_solver_type = ceres::DENSE_QR;
155 options.minimizer_progress_to_stdout = true;
158 Solve(options, &problem, &summary);
  /external/ceres-solver/internal/ceres/
iterative_schur_complement_solver_test.cc 83 LinearSolver::Options options; local
84 options.type = DENSE_QR;
85 scoped_ptr<LinearSolver> qr(LinearSolver::Create(options));
92 options.elimination_groups.push_back(num_eliminate_blocks_);
93 options.elimination_groups.push_back(0);
94 options.max_num_iterations = num_cols_;
95 options.preconditioner_type = SCHUR_JACOBI;
96 IterativeSchurComplementSolver isc(options);
solver_impl_test.cc 76 Problem::Options problem_options;
84 Solver::Options options; local
85 options.linear_solver_type = DENSE_QR;
88 SolverImpl::Solve(options, &problem, &summary);
symmetric_linear_solver_test.cc 64 LinearSolver::Options options; local
65 options.max_num_iterations = 10;
70 ConjugateGradientsSolver solver(options);
121 LinearSolver::Options options; local
122 options.max_num_iterations = 10;
127 ConjugateGradientsSolver solver(options);
  /external/chromium-trace/trace-viewer/third_party/Paste/tests/
test_doctests.py 28 options = doctest.ELLIPSIS|doctest.REPORT_ONLY_FIRST_FAILURE variable
40 optionflags=options)
50 module, optionflags=options)
  /external/e2fsprogs/lib/ext2fs/
io_manager.c 25 char *next, *ptr, *options, *arg; local
35 options = malloc(strlen(opts)+1);
36 if (!options)
38 strcpy(options, opts);
39 ptr = options;
55 free(options);
  /external/fio/engines/
cpu.c 17 static struct fio_option options[] = { variable in typeref:struct:fio_option
109 .options = options,
  /external/harfbuzz_ng/util/
main-font-text.hh 27 #include "options.hh"
38 : options ("[FONT-FILE] [TEXT]"),
39 font_opts (&options, default_font_size, subpixel_bits),
40 input (&options),
41 consumer (&options) {}
46 options.parse (&argc, &argv);
54 options.usage ();
73 option_parser_t options; member in struct:main_font_text_t
  /external/icu/icu4c/source/common/
ustr_imp.h 62 uint32_t options,
72 * @param options compare options
80 uint32_t options,
114 uint32_t options; member in struct:UCaseMap
  /external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperf.cpp 183 UOption options[]={ variable
195 _remainingArgc = u_parseArgs(_remainingArgc, (char**)argv, (int32_t)(sizeof(options)/sizeof(options[0])), options);
198 if(options[0].doesOccur) {
199 m_mode_ = options[0].value;
200 switch(options[0].value[0]) {
  /external/icu/icu4c/source/tools/genbrk/
genbrk.cpp 16 // Usage: genbrk [options] -r rule-file.txt -o output-file.brk
18 // options: -v verbose
50 static UOption options[]={ variable
62 printf("Usage: %s [-v] [-options] -r rule-file -o output-file\n", progName);
64 "options:\n"
139 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
146 if(options[0].doesOccur || options[1].doesOccur)
    [all...]
  /external/iptables/iptables/
ip6tables-save.c 27 static const struct option options[] = { variable in typeref:struct:option
144 while ((c = getopt_long(argc, argv, "bcdt:", options, NULL)) != -1) {
iptables-save.c 26 static const struct option options[] = { variable in typeref:struct:option
143 while ((c = getopt_long(argc, argv, "bcdt:", options, NULL)) != -1) {
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
JSilverFactory.java 38 private final JSilverOptions options; field in class:JSilverFactory
50 public JSilverFactory(JSilverOptions options) {
51 this(options, true);
54 public JSilverFactory(JSilverOptions options, boolean unwrapDelegatedHdfs) {
55 this(new JSilver(null, options), unwrapDelegatedHdfs);
69 this.options = jSilver.getOptions();
70 if (this.options.getLoadPathCacheSize() == 0) {
73 this.loadPathCache = new LoadPathToFileCache(this.options.getLoadPathCacheSize());
76 new HDFDataFactory(options.getIgnoreAttributes(), options.getStringInternStrategy())
    [all...]
  /external/linux-tools-perf/src/tools/perf/
builtin-buildid-list.c 15 #include "util/parse-options.h"
86 const struct option options[] = { local
95 "perf buildid-list [<options>]",
99 argc = parse_options(argc, argv, options, buildid_list_usage, 0);

Completed in 211 milliseconds

1 23 4 5 6 7 8 91011>>