Searched refs:options (Results 1 - 25 of 1606) sorted by relevance

1234567891011>>

/external/v8/test/mozilla/
H A Dmozilla-shell-emulation.js33 function options(aOptionName) { function
34 // Returns comma-separated list of options set.
/external/ceres-solver/internal/ceres/
H A Dschur_eliminator.cc49 SchurEliminatorBase::Create(const LinearSolver::Options& options) { argument
51 if ((options.row_block_size == 2) &&
52 (options.e_block_size == 2) &&
53 (options.f_block_size == 2)) {
54 return new SchurEliminator<2, 2, 2>(options);
56 if ((options.row_block_size == 2) &&
57 (options.e_block_size == 2) &&
58 (options.f_block_size == 3)) {
59 return new SchurEliminator<2, 2, 3>(options);
61 if ((options
[all...]
H A Dtrust_region_strategy.cc10 TrustRegionStrategy* TrustRegionStrategy::Create(const Options& options) { argument
11 switch (options.trust_region_strategy_type) {
13 return new LevenbergMarquardtStrategy(options);
15 return new DoglegStrategy(options);
18 << options.trust_region_strategy_type;
22 << options.trust_region_strategy_type;
H A Dlinear_solver.cc48 LinearSolver* LinearSolver::Create(const LinearSolver::Options& options) { argument
49 switch (options.type) {
51 return new CgnrSolver(options);
60 return new SparseNormalCholeskySolver(options);
70 return new SparseSchurComplementSolver(options);
74 return new DenseSchurComplementSolver(options);
77 return new IterativeSchurComplementSolver(options);
80 return new DenseQRSolver(options);
83 return new DenseNormalCholeskySolver(options);
87 << options
[all...]
H A Dminimizer.h57 explicit Options(const Solver::Options& options) { argument
58 Init(options);
61 void Init(const Solver::Options& options) { argument
62 num_threads = options.num_threads;
63 max_num_iterations = options.max_num_iterations;
64 max_solver_time_in_seconds = options.max_solver_time_in_seconds;
66 gradient_tolerance = options.gradient_tolerance;
67 parameter_tolerance = options.parameter_tolerance;
68 function_tolerance = options.function_tolerance;
69 min_relative_decrease = options
[all...]
/external/clang/test/Sema/
H A Dpragma-align-mac68k-unsupported.c4 /* expected-error {{mac68k alignment pragma is not supported}} */ #pragma options align=mac68k
/external/clang/test/Parser/
H A Dpragma-options.c3 /* expected-warning {{expected 'align' following '#pragma options'}} */ #pragma options
4 /* expected-warning {{expected '=' following '#pragma options align'}} */ #pragma options align
5 /* expected-warning {{expected identifier in '#pragma options'}} */ #pragma options align =
6 /* expected-warning {{invalid alignment option in '#pragma options align'}} */ #pragma options align = foo
7 /* expected-warning {{extra tokens at end of '#pragma options'}} */ #pragma options alig
[all...]
H A Dpragma-options.cpp5 #pragma options align=natural
/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dmocktool_unittest.py39 # Test that we can still set options after we construct the
41 options = MockOptions()
42 options.foo = 'bar'
43 self.assertEqual(options.foo, 'bar')
46 # Test that unset options raise an exception (regular Mock
49 options = MockOptions()
50 self.assertRaises(AttributeError, lambda: options.foo)
54 options = MockOptions(foo='bar')
55 self.assertEqual(options.foo, 'bar')
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Dcommandtest.py35 def assert_execute_outputs(self, command, args, expected_stdout="", expected_stderr="", expected_exception=None, options=MockOptions(), tool=MockTool()):
36 options.blocks = None
37 options.cc = 'MOCK cc'
38 options.component = 'MOCK component'
39 options.confirm = True
40 options.email = 'MOCK email'
41 options.git_commit = 'MOCK git commit'
42 options.obsolete_patches = True
43 options.open_bug = True
44 options
[all...]
H A Dupload_unittest.py54 options = MockOptions()
55 options.cc = None
56 options.check_style = True
57 options.comment = None
58 options.description = "MOCK description"
59 options.request_commit = False
60 options.review = True
61 options.suggest_reviewers = False
68 self.assert_execute_outputs(Post(), [42], options=options, expected_stder
[all...]
/external/icu4c/tools/gencmn/
H A Dgencmn.c34 static UOption options[]={ variable
55 /* preset then read command line options */
56 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
67 if(argc<0 || options[0].doesOccur || options[1].doesOccur) {
76 if (options[0].doesOccur || options[1].doesOccur) {
100 sourceTOC=options[
[all...]
/external/icu4c/test/perf/unisetperf/
H A Dunisetperf.pl16 my $options = {
63 runTests($options, $tests, $dataFiles);
65 $options = {
86 runTests($options, $tests, $dataFiles);
/external/clang/test/CodeGen/
H A D2008-08-07-AlignPadding2.c13 const OptionDef options[] = { variable
14 /* main options */
/external/icu4c/test/perf/charperf/
H A DCharPerf.pl17 my $options = {
55 runTests($options, $tests, $dataFiles);
/external/icu4c/test/perf/convperf/
H A Dconvperf_ansi.pl22 my $options = {
56 runTests($options, $tests, $dataFiles);
H A Dconvperf_iml.pl22 my $options = {
62 runTests($options, $tests, $dataFiles);
/external/icu4c/test/perf/normperf/
H A DNormPerf.pl15 my $options = {
59 runTests($options, $tests, $dataFiles);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPSerializerHelper.java17 import com.adobe.xmp.options.SerializeOptions;
35 * @param options serialization options, can be <code>null</code> for default.
39 SerializeOptions options)
42 options = options != null ? options : new SerializeOptions();
45 if (options.getSort())
49 new XMPSerializerRDF().serialize(xmp, out, options);
59 * @param options Option
38 serialize(XMPMetaImpl xmp, OutputStream out, SerializeOptions options) argument
64 serializeToString(XMPMetaImpl xmp, SerializeOptions options) argument
95 serializeToBuffer(XMPMetaImpl xmp, SerializeOptions options) argument
[all...]
/external/openssh/
H A Dreadconf.c51 # 1. command line options
96 # Defaults for various options
254 * Adds a local TCP/IP port forward to options. Never returns if there is an
259 add_local_forward(Options *options, const Forward *newfwd) argument
267 options->local_forwards = xrealloc(options->local_forwards,
268 options->num_local_forwards + 1,
269 sizeof(*options->local_forwards));
270 fwd = &options->local_forwards[options
284 add_remote_forward(Options *options, const Forward *newfwd) argument
301 clear_forwardings(Options *options) argument
353 process_config_line(Options *options, const char *host, char *line, const char *filename, int linenum, int *activep) argument
1076 read_config_file(const char *filename, const char *host, Options *options, int checkperm) argument
1126 initialize_options(Options * options) argument
1213 fill_default_options(Options * options) argument
[all...]
H A Dssh.c155 * General data structure for command line options and options configurable
158 Options options; variable
320 initialize_options(&options);
332 options.protocol = SSH_PROTO_1;
335 options.protocol = SSH_PROTO_2;
338 options.address_family = AF_INET;
341 options.address_family = AF_INET6;
351 options.forward_x11 = 0;
354 options
[all...]
/external/icu4c/tools/genccode/
H A Dgenccode.c74 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
[all...]
/external/chromium/chrome/browser/resources/chromeos/
H A Dproxy_settings.js5 var OptionsPage = options.OptionsPage;
6 var Preferences = options.Preferences;
7 var ProxyOptions = options.ProxyOptions;
19 cr.ui.decorate('input[pref][type=checkbox]', options.PrefCheckbox);
20 cr.ui.decorate('input[pref][type=number]', options.PrefNumber);
21 cr.ui.decorate('input[pref][type=radio]', options.PrefRadio);
22 cr.ui.decorate('input[pref][type=range]', options.PrefRange);
23 cr.ui.decorate('select[pref]', options.PrefSelect);
24 cr.ui.decorate('input[pref][type=text]', options.PrefTextField);
25 cr.ui.decorate('input[pref][type=url]', options
[all...]
/external/v8/tools/
H A Dtest-wrapper-gypbuild.py135 def ProcessOptions(options):
136 if options.arch_and_mode == ".":
137 options.arch = []
138 options.mode = []
140 if options.arch_and_mode != None and options.arch_and_mode != "":
141 tokens = options.arch_and_mode.split(".")
142 options.arch = tokens[0]
143 options.mode = tokens[1]
144 options
[all...]
/external/webkit/Tools/Scripts/
H A Dnew-run-webkit-httpd52 def run(options):
53 if not options.server:
57 if (options.root is None) and (options.port is not None):
63 port_obj = port.get(None, options)
66 port=options.port,
67 root=options.root,
68 run_background=options.run_background,
69 layout_tests_dir=options.layout_tests_dir)
70 if options
[all...]

Completed in 424 milliseconds

1234567891011>>