HomeSort by relevance Sort by last modified time
    Searched refs:Options (Results 26 - 50 of 956) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/openssh/
readconf.h 137 } Options;
150 void initialize_options(Options *);
151 void fill_default_options(Options *);
152 int read_config_file(const char *, const char *, Options *, int);
156 process_config_line(Options *, const char *, char *, const char *, int, int *);
158 void add_local_forward(Options *, const Forward *);
159 void add_remote_forward(Options *, const Forward *);
  /frameworks/compile/slang/tests/
test.py 21 class Options(object):
32 if Options.verbose:
36 if Options.verbose:
64 if Options.verbose != 0:
92 if Options.verbose > 1:
111 if Options.verbose > 1:
125 if Options.verbose:
130 if Options.verbose:
134 if Options.verbose:
139 if Options.verbose
    [all...]
  /external/ceres-solver/internal/ceres/
schur_complement_solver.h 99 // LinearSolver::CreateLinearSolver with LinearSolver::Options::type
101 // respectively. LinearSolver::Options::elimination_groups[0] should be
105 explicit SchurComplementSolver(const LinearSolver::Options& options)
106 : options_(options) {
107 CHECK_GT(options.elimination_groups.size(), 1);
108 CHECK_GT(options.elimination_groups[0], 0);
120 const LinearSolver::Options& options() const { return options_; } function in class:ceres::internal::SchurComplementSolver
131 LinearSolver::Options options_
    [all...]
trust_region_strategy.h 58 struct Options {
59 Options()
85 // Per solve options.
158 static TrustRegionStrategy* Create(const Options& options);
coordinate_descent_minimizer.h 65 virtual void Minimize(const Minimizer::Options& options,
83 Evaluator::Options evaluator_options_;
dense_normal_cholesky_solver.h 79 explicit DenseNormalCholeskySolver(const LinearSolver::Options& options);
100 const LinearSolver::Options options_;
dense_qr_solver.h 84 explicit DenseQRSolver(const LinearSolver::Options& options);
105 const LinearSolver::Options options_;
line_search.h 64 struct Options {
65 Options()
193 explicit LineSearch(const LineSearch::Options& options);
197 const LineSearch::Options& options,
223 const LineSearch::Options& options() const { return options_; } function in class:ceres::internal::LineSearch
226 LineSearch::Options options_;
257 explicit ArmijoLineSearch(const LineSearch::Options& options)
    [all...]
minimizer_test.cc 51 Solver::Options solver_options;
55 Minimizer::Options minimizer_options(solver_options);
schur_jacobi_preconditioner.h 67 // Preconditioner::Options options;
68 // options.preconditioner_type = SCHUR_JACOBI;
69 // options.elimination_groups.push_back(num_points);
70 // options.elimination_groups.push_back(num_cameras);
72 // *A.block_structure(), options);
85 const Preconditioner::Options& options);
96 Preconditioner::Options options_;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
checkstyle.py 31 from webkitpy.tool.steps.options import Options
35 def options(cls): member in class:CheckStyle
36 return AbstractStep.options() + [
37 Options.non_interactive,
38 Options.check_style,
39 Options.check_style_filter,
40 Options.git_commit,
cleanworkingdirectory.py 30 from webkitpy.tool.steps.options import Options
37 def options(cls): member in class:CleanWorkingDirectory
38 return AbstractStep.options() + [
39 Options.force_clean,
40 Options.clean,
discardlocalchanges.py 30 from webkitpy.tool.steps.options import Options
37 def options(cls): member in class:DiscardLocalChanges
38 return AbstractStep.options() + [
39 Options.clean,
40 Options.force_clean,
applypatch.py 32 from webkitpy.tool.steps.options import Options
39 def options(cls): member in class:ApplyPatch
40 return AbstractStep.options() + [
41 Options.non_interactive,
ensurelocalcommitifneeded.py 33 from webkitpy.tool.steps.options import Options
40 def options(cls): member in class:EnsureLocalCommitIfNeeded
41 return AbstractStep.options() + [
42 Options.local_commit,
  /external/clang/tools/libclang/
CIndexer.h 38 unsigned Options; // CXGlobalOptFlags.
44 Options(CXGlobalOpt_None) { }
57 unsigned getCXGlobalOptFlags() const { return Options; }
58 void setCXGlobalOptFlags(unsigned options) { Options = options; }
61 return Options & opt;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiledata.h 87 class Options {
89 Options();
110 // by 'options'.
115 bool Start(const char *fname, const Options& options);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiledata.h 87 class Options {
89 Options();
110 // by 'options'.
115 bool Start(const char *fname, const Options& options);
  /external/chromium/base/threading/
simple_thread.h 60 class BASE_API Options {
62 Options() : stack_size_(0) { }
63 ~Options() { }
74 // Create a SimpleThread. |options| should be used to manage any specific
79 SimpleThread(const std::string& name_prefix, const Options& options);
110 const Options options_;
130 const Options& options);
  /external/chromium_org/base/threading/
simple_thread.h 60 class BASE_EXPORT Options {
62 Options() : stack_size_(0) { }
63 ~Options() { }
74 // Create a SimpleThread. |options| should be used to manage any specific
79 SimpleThread(const std::string& name_prefix, const Options& options);
116 const Options options_;
136 const Options& options);
  /external/llvm/lib/Target/Sparc/
SparcTargetMachine.cpp 30 const TargetOptions &Options,
34 : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
44 /// Sparc Code Generator Pass Configuration Options.
81 const TargetOptions &Options,
85 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {
93 const TargetOptions &Options,
97 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
options.h 30 // Options to control the behavior of a database (passed to DB::Open)
31 struct Options {
138 // Create an Options object with default values for all fields.
139 Options();
142 // Options that control read operations
168 // Options that control write operations
table_builder.h 17 #include "leveldb/options.h"
31 TableBuilder(const Options& options, WritableFile* file);
36 // Change the options used by this builder. Note: only some of the
42 Status ChangeOptions(const Options& options);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_extension.h 61 const Options& options);
76 Options options_;
  /external/chromium_org/third_party/re2/re2/
set.h 20 Set(const RE2::Options& options, RE2::Anchor anchor);
23 // Add adds regexp pattern to the set, interpreted using the RE2 options.
24 // (The RE2 constructor's default options parameter is RE2::UTF8.)
43 RE2::Options options_;

Completed in 483 milliseconds

12 3 4 5 6 7 8 91011>>