/external/llvm/lib/Target/CppBackend/ |
CPPTargetMachine.h | 26 StringRef CPU, StringRef FS, const TargetOptions &Options, 29 : TargetMachine(T, TT, CPU, FS, Options) {}
|
/external/regex-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_;
|
/external/eigen/Eigen/src/Geometry/ |
Transform.h | 40 int Options, 56 int Options, 82 * These Options are passed directly to the underlying matrix type. 182 Options = _Options, 191 typedef typename internal::make_proper_matrix_type<Scalar,Rows,HDim,Options>::type MatrixType; 195 typedef Matrix<Scalar,Dim,Dim,Options> LinearMatrixType; 273 internal::transform_construct_from_matrix<OtherDerived,Mode,Options,Dim,HDim>::run(this, other.derived()); 283 internal::transform_construct_from_matrix<OtherDerived,Mode,Options,Dim,HDim>::run(this, other.derived()); 291 // only the options change, we can directly copy the matrices 324 internal::transform_construct_from_matrix<OtherMatrixType,Mode,Options,Dim,HDim>::run(this, other.matrix()) [all...] |
/external/ceres-solver/internal/ceres/ |
block_jacobian_writer.h | 54 BlockJacobianWriter(const Evaluator::Options& options,
|
compressed_row_jacobian_writer.h | 47 CompressedRowJacobianWriter(Evaluator::Options /* ignored */,
|
trust_region_strategy.cc | 42 TrustRegionStrategy* TrustRegionStrategy::Create(const Options& options) { 43 switch (options.trust_region_strategy_type) { 45 return new LevenbergMarquardtStrategy(options); 47 return new DoglegStrategy(options); 50 << options.trust_region_strategy_type; 54 << options.trust_region_strategy_type;
|
minimizer.h | 51 // Options struct to control the behaviour of the Minimizer. Please 54 struct Options { 55 Options() { 56 Init(Solver::Options()); 59 explicit Options(const Solver::Options& options) { 60 Init(options); 63 void Init(const Solver::Options& options) { [all...] |
unsymmetric_linear_solver_test.cc | 59 void TestSolver(const LinearSolver::Options& options) { 60 scoped_ptr<LinearSolver> solver(LinearSolver::Create(options)); 70 if (options.type == DENSE_QR || 71 options.type == DENSE_NORMAL_CHOLESKY) { 73 } else if (options.type == SPARSE_NORMAL_CHOLESKY) { 85 LOG(FATAL) << "Unknown linear solver : " << options.type; 122 LinearSolver::Options options; local 123 options.type = DENSE_QR 129 LinearSolver::Options options; local 137 LinearSolver::Options options; local 144 LinearSolver::Options options; local 154 LinearSolver::Options options; local 163 LinearSolver::Options options; local 174 LinearSolver::Options options; local 183 LinearSolver::Options options; local [all...] |
covariance_impl.h | 51 explicit CovarianceImpl(const Covariance::Options& options); 77 Covariance::Options options_;
|
/external/chromium/android/autofill/ |
android_url_request_context_getter.cc | 40 base::Thread::Options options; local 41 options.message_loop_type = MessageLoop::TYPE_IO; 42 if (!io_thread_->StartWithOptions(options)) {
|
/external/chromium/base/threading/ |
thread.h | 31 struct Options { 32 Options() : message_loop_type(MessageLoop::TYPE_DEFAULT), stack_size(0) {} 33 Options(MessageLoop::Type type, size_t size) 66 // override the default options. 71 bool StartWithOptions(const Options& options);
|
/external/chromium_org/base/threading/ |
thread.h | 32 struct Options { 33 Options() : message_loop_type(MessageLoop::TYPE_DEFAULT), stack_size(0) {} 34 Options(MessageLoop::Type type, size_t size) 82 // override the default options. 87 bool StartWithOptions(const Options& options);
|
/external/chromium_org/chrome/browser/chromeos/extensions/ |
external_pref_cache_loader.h | 19 ExternalPrefCacheLoader(int base_path_id, Options options);
|
/external/chromium_org/chromeos/dbus/ |
bluetooth_profile_manager_client.h | 36 // Options used to register a Profile object. 37 struct CHROMEOS_EXPORT Options { 38 Options(); 39 ~Options(); 85 // |uuid| specifies the identifier of the profile and |options| the way in 89 const Options& options,
|
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/ |
db.h | 11 #include "leveldb/options.h" 19 struct Options; 51 static Status Open(const Options& options, 60 // Note: consider setting options.sync = true. 61 virtual Status Put(const WriteOptions& options, 68 // Note: consider setting options.sync = true. 69 virtual Status Delete(const WriteOptions& options, const Slice& key) = 0; 73 // Note: consider setting options.sync = true. 74 virtual Status Write(const WriteOptions& options, WriteBatch* updates) = 0 [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
gzip_stream.h | 121 struct Options { 137 Options(); // Initializes with default values. 140 // Create a GzipOutputStream with default options. 143 // Create a GzipOutputStream with the given options. 146 const Options& options); 195 void Init(ZeroCopyOutputStream* sub_stream, const Options& options);
|
/external/protobuf/src/google/protobuf/io/ |
gzip_stream.h | 120 struct Options { 136 Options(); // Initializes with default values. 139 // Create a GzipOutputStream with default options. 142 // Create a GzipOutputStream with the given options. 145 const Options& options); 193 void Init(ZeroCopyOutputStream* sub_stream, const Options& options);
|
/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/llvm/tools/llvm-symbolizer/ |
LLVMSymbolize.h | 35 struct Options { 41 Options(bool UseSymbolTable = true, bool PrintFunctions = true, 50 LLVMSymbolizer(const Options &Opts = Options()) : Opts(Opts) {} 86 Options Opts; 95 const LLVMSymbolizer::Options &Opts) const; 97 uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const;
|
/frameworks/base/graphics/java/android/graphics/ |
BitmapFactory.java | 38 public static class Options { 40 * Create a default Options object, which if left unchanged will give 43 public Options() { 50 * If set, decode methods that take the Options object will attempt to 63 * set in the Options structure will indicate if the bitmap was reused, 177 * {@link BitmapFactory#decodeResource(Resources, int, android.graphics.BitmapFactory.Options)}, 198 * {@link BitmapFactory#decodeResource(Resources, int, android.graphics.BitmapFactory.Options)}, 280 * android.graphics.BitmapFactory.Options)} or {@link #decodeFile(String, 281 * android.graphics.BitmapFactory.Options)}.</p> 340 * This can be called from another thread while this options object i [all...] |
/external/llvm/tools/llc/ |
llc.cpp | 46 // General options for llc. Other pass-specific options are specified 47 // within the corresponding llc passes, and target-specific options 48 // and back-end code generation options are specified with the target machine. 181 // -print-before, and -stop-after options work. 212 // If user just wants to list available options, skip module loading 262 TargetOptions Options; 263 Options.LessPreciseFPMADOption = EnableFPMAD; 264 Options.NoFramePointerElim = DisableFPElim; 265 Options.AllowFPOpFusion = FuseFPOps [all...] |
/external/llvm/lib/Target/X86/ |
X86TargetMachine.cpp | 35 const TargetOptions &Options, 38 : X86TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false), 59 const TargetOptions &Options, 62 : X86TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true), 80 const TargetOptions &Options, 84 : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL), 85 Subtarget(TT, CPU, FS, Options.StackAlignmentOverride, is64Bit), 109 if (Options.FloatABIType == FloatABI::Default) 110 this->Options.FloatABIType = FloatABI::Hard; 114 // Command line options for x8 [all...] |
/external/eigen/Eigen/src/Eigen2Support/ |
LU.h | 22 typedef Matrix<int, 1, MatrixType::ColsAtCompileTime, MatrixType::Options, 1, MatrixType::MaxColsAtCompileTime> IntRowVectorType; 23 typedef Matrix<int, MatrixType::RowsAtCompileTime, 1, MatrixType::Options, MatrixType::MaxRowsAtCompileTime, 1> IntColVectorType; 24 typedef Matrix<Scalar, 1, MatrixType::ColsAtCompileTime, MatrixType::Options, 1, MatrixType::MaxColsAtCompileTime> RowVectorType; 25 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1, MatrixType::Options, MatrixType::MaxRowsAtCompileTime, 1> ColVectorType; 31 MatrixType::Options, 41 MatrixType::Options,
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXTargetMachine.cpp | 71 const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, 73 : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL), 85 const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, 87 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {} 93 const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, 95 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
/development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/ |
ImageResizer.java | 119 final BitmapFactory.Options options = new BitmapFactory.Options(); local 120 options.inJustDecodeBounds = true; 121 BitmapFactory.decodeResource(res, resId, options); 124 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight); 128 addInBitmapOptions(options, cache); 132 options.inJustDecodeBounds = false; 133 return BitmapFactory.decodeResource(res, resId, options); 150 final BitmapFactory.Options options = new BitmapFactory.Options(); local 181 final BitmapFactory.Options options = new BitmapFactory.Options(); local [all...] |