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

1 2 3 4 56 7 8 91011>>

  /external/ceres-solver/examples/
denoising.cc 143 ceres::Solver::Options options; local
144 options.max_num_iterations = 100;
146 options.minimizer_progress_to_stdout = true;
150 options.minimizer_type = ceres::LINE_SEARCH;
153 options.linear_solver_type = ceres::SPARSE_NORMAL_CHOLESKY;
154 options.function_tolerance = 1e-3; // Enough for denoising.
157 ceres::Solve(options, problem, &summary);
  /external/ceres-solver/internal/ceres/
c_api.cc 177 // TODO(keir): Obviously, this way of setting options won't scale or last.
178 // Instead, figure out a way to specify some of the options without
180 ceres::Solver::Options options; local
181 options.max_num_iterations = 100;
182 options.linear_solver_type = ceres::DENSE_QR;
183 options.minimizer_progress_to_stdout = true;
186 ceres::Solve(options, problem, &summary);
implicit_schur_complement_test.cc 85 LinearSolver::Options options; local
86 options.elimination_groups.push_back(num_eliminate_blocks_);
87 options.type = DENSE_SCHUR;
90 SchurEliminatorBase::Create(options));
123 LinearSolver::Options options; local
124 options.elimination_groups.push_back(num_eliminate_blocks_);
125 options.preconditioner_type = JACOBI;
126 ImplicitSchurComplement isc(options);
    [all...]
schur_complement_solver.h 105 // LinearSolver::CreateLinearSolver with LinearSolver::Options::type
107 // respectively. LinearSolver::Options::elimination_groups[0] should be
111 explicit SchurComplementSolver(const LinearSolver::Options& options)
112 : options_(options) {
113 CHECK_GT(options.elimination_groups.size(), 1);
114 CHECK_GT(options.elimination_groups[0], 0);
126 const LinearSolver::Options& options() const { return options_; } function in class:ceres::internal::SchurComplementSolver
138 LinearSolver::Options options_
    [all...]
solver_test.cc 47 Solver::Options options; local
48 options.minimizer_type = TRUST_REGION;
50 EXPECT_TRUE(options.IsValid(&error)) << error;
54 Solver::Options options; local
55 options.minimizer_type = LINE_SEARCH;
57 EXPECT_TRUE(options.IsValid(&error)) << error;
90 Problem::Options problem_options;
95 Solver::Options options local
164 Solver::Options options; local
176 Solver::Options options; local
190 Solver::Options options; local
204 Solver::Options options; local
219 Solver::Options options; local
233 Solver::Options options; local
244 Solver::Options options; local
254 Solver::Options options; local
263 Solver::Options options; local
274 Solver::Options options; local
    [all...]
  /external/clang/docs/tools/
dump_format_style.py 76 options = []
104 options.append(option)
125 for option in options:
132 return options
134 options = read_options(open(FORMAT_STYLE_FILE)) variable
136 options = sorted(options, key=lambda x: x.name) variable
137 options_text = '\n\n'.join(map(str, options))
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
AnalysisManager.h 47 AnalyzerOptions &options; member in class:clang::ento::AnalysisManager
55 AnalyzerOptions &Options,
73 return options;
105 return options.visualizeExplodedGraphWithGraphViz ||
106 options.visualizeExplodedGraphWithUbiGraph;
110 return options.getIPAMode() != IPAK_None;
  /external/e2fsprogs/debugfs/
ls.c 38 int options; member in struct:list_dir_struct
75 if (ls->options & PARSE_OPT) {
87 } else if (ls->options & LONG_OPT) {
132 ls.options = 0;
140 ls.options |= LONG_OPT;
143 ls.options |= DELETED_OPT;
146 ls.options |= PARSE_OPT;
169 if (ls.options & DELETED_OPT)
  /external/elfutils/src/libdwfl/
argp-std.c 44 static const struct argp_option options[] = variable in typeref:struct:argp_option
46 { NULL, 0, NULL, 0, N_("Input selection options:"), 0 },
358 { .options = options, .parser = parse_opt };
  /external/elfutils/src/src/
ranlib.c 60 static const struct argp_option options[] = variable in typeref:struct:argp_option
74 options, NULL, args_doc, doc, arlib_argp_children, NULL, NULL
  /external/icu/icu4c/source/i18n/
collationcompare.cpp 32 int32_t options = settings.options; local
34 if((options & CollationSettings::ALTERNATE_MASK) == 0) {
111 if(CollationSettings::getStrength(options) >= UCOL_SECONDARY) {
112 if((options & CollationSettings::BACKWARD_SECONDARY) == 0) {
184 if((options & CollationSettings::CASE_LEVEL) != 0) {
185 int32_t strength = CollationSettings::getStrength(options);
240 if((options & CollationSettings::UPPER_FIRST) == 0) {
249 if(CollationSettings::getStrength(options) <= UCOL_SECONDARY) { return UCOL_EQUAL; }
251 uint32_t tertiaryMask = CollationSettings::getTertiaryMask(options);
    [all...]
  /external/icu/icu4c/source/tools/genccode/
genccode.c 74 static UOption options[]={ variable
98 options[kOptDestDir].value = ".";
100 /* read command line options */
101 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
109 if(argc<0 || options[kOptHelpH].doesOccur || options[kOptHelpQuestionMark].doesOccur) {
111 "usage: %s [-options] filename1 filename2 ...\n"
114 "options:\n
    [all...]
  /external/icu/icu4c/source/tools/gennorm2/
gennorm2.cpp 65 static UOption options[]={ variable
81 /* preset then read command line options */
82 options[SOURCEDIR].value="";
83 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[HELP_H]), options);
91 if(!options[OUTPUT_FILENAME].doesOccur) {
95 options[HELP_H].doesOccur || options[HELP_QUESTION_MARK].doesOccur
102 "Usage: %s [-options] infiles+ -o outputfilename\n
    [all...]
  /external/icu/icu4c/source/tools/icuinfo/
icuinfo.cpp 38 static UOption options[]={ variable
214 /* preset then read command line options */
215 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
223 if( options[0].doesOccur || options[1].doesOccur) {
225 fprintf(stderr, "Options:\n"
239 if(options[2].doesOccur) {
240 u_setDataDirectory(options[2].value)
    [all...]
  /external/iproute2/doc/
api-ip6-flowlabels.tex 58 hop by hop options and all the headers up to and including routing header,
62 There is a hole in specs: some hop-by-hop options can be
64 Essentially, it means that such options cannot present in packets
168 \paragraph{Note about IPv6 options and destination address.}
169 \addcontentsline{toc}{subsection}{IPv6 options and destination address}
279 /* Options in format of IPV6_PKTOPTIONS */
321 label, it will not be reused with different destination and options at least
402 \item \verb|Opt| is length of options, associated with the label. Option
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
CompilingClassLoader.java 145 List<String> options = new LinkedList<String>(); local
148 options.add("-XDuseJavaUtilZip");
154 fileManager, diagnosticListener, options, null, singleton(javaFile));
  /external/libdrm/tests/planetest/
dev.c 28 static struct option options[] = { local
39 c = getopt_long(argc, argv, "c:r:h", options, &option_index);
  /external/lldb/source/Commands/
CommandObjectDisassemble.cpp 26 #include "lldb/Interpreter/Options.h"
40 Options(interpreter),
240 "Currently the only valid options are default, and for Intel"
269 "disassemble [<cmd-options>]"),
324 result.AppendErrorWithFormat ("\"disassemble\" arguments are specified as options.\n");
334 uint32_t options = Disassembler::eOptionMarkPCAddress; local
338 options |= Disassembler::eOptionMarkPCSourceLine;
341 options |= Disassembler::eOptionShowBytes;
344 options |= Disassembler::eOptionRawOuput;
359 options,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp 155 static const char* options[] = { local
160 llvm::cl::ParseCommandLineOptions(2, const_cast<char**>(options));
  /external/pcre/dist/
pcredemo.c 80 /* After the options, we require exactly two arguments, which are the pattern,
101 0, /* default options */
127 0, /* default options */
263 sequence. First, find the options with which the regex was compiled; extract
264 the UTF-8 state, and mask off all but the newline options. */
271 /* If no newline options were set, find the default newline convention from the
298 int options = 0; /* Normally no options */ local
308 options = PCRE_NOTEMPTY_ATSTART | PCRE_ANCHORED;
319 options, /* options *
    [all...]
pcreposix.c 140 REG_INVARG, /* inconsistent NEWLINE options */
273 int options = 0; local
276 if ((cflags & REG_ICASE) != 0) options |= PCRE_CASELESS;
277 if ((cflags & REG_NEWLINE) != 0) options |= PCRE_MULTILINE;
278 if ((cflags & REG_DOTALL) != 0) options |= PCRE_DOTALL;
279 if ((cflags & REG_NOSUB) != 0) options |= PCRE_NO_AUTO_CAPTURE;
280 if ((cflags & REG_UTF8) != 0) options |= PCRE_UTF8;
281 if ((cflags & REG_UCP) != 0) options |= PCRE_UCP;
282 if ((cflags & REG_UNGREEDY) != 0) options |= PCRE_UNGREEDY;
284 preg->re_pcre = pcre_compile2(pattern, options, &errorcode, &errorptr
326 int options = 0; local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
BitmapFactoryTest.java 30 BitmapFactory.Options opts = new BitmapFactory.Options();
70 BitmapFactory.Options opts = new BitmapFactory.Options();
81 BitmapFactory.Options options = new BitmapFactory.Options(); local
82 options.inSampleSize = 100;
83 Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an_image, options);
101 BitmapFactory.Options options = new BitmapFactory.Options() local
    [all...]
  /external/smali/baksmali/src/test/java/org/jf/baksmali/
ImplicitReferenceTest.java 72 baksmaliOptions options = new baksmaliOptions(); local
73 options.useImplicitReferences = true;
77 ClassDefinition classDefinition = new ClassDefinition(options, classDef);
110 baksmaliOptions options = new baksmaliOptions(); local
111 options.useImplicitReferences = false;
115 ClassDefinition classDefinition = new ClassDefinition(options, classDef);
142 baksmaliOptions options = new baksmaliOptions(); local
143 options.useImplicitReferences = true;
147 ClassDefinition classDefinition = new ClassDefinition(options, classDef);
174 baksmaliOptions options = new baksmaliOptions() local
212 baksmaliOptions options = new baksmaliOptions(); local
250 baksmaliOptions options = new baksmaliOptions(); local
280 baksmaliOptions options = new baksmaliOptions(); local
310 baksmaliOptions options = new baksmaliOptions(); local
    [all...]
  /external/squashfs-tools/squashfs-tools/
compressor.h 32 int (*options)(char **, int); member in struct:compressor
76 if(comp->options == NULL)
79 return comp->options(argv, argc);
  /external/v8/src/base/
flags-unittest.cc 64 typedef Flags<Option> Options;
69 DEFINE_OPERATORS_FOR_FLAGS(foo::Options)
75 foo::Options options; local
76 options ^= foo::kNoOptions;
77 options |= foo::kOption1 | foo::kOption2;
78 EXPECT_EQ(foo::kAllOptions, static_cast<int>(options));

Completed in 739 milliseconds

1 2 3 4 56 7 8 91011>>