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

<<11121314151617181920>>

  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiledata.cc 59 ProfileData::Options::Options()
92 const ProfileData::Options& options) {
121 CHECK_NE(0, options.frequency());
122 int period = 1000000 / options.frequency();
  /external/eigen/Eigen/src/Core/
Matrix.h 119 Options = _Options,
121 OuterStrideAtCompileTime = (Options&RowMajor) ? ColsAtCompileTime : RowsAtCompileTime
137 enum { Options = _Options };
  /external/ppp/pppd/plugins/rp-pppoe/
plugin.c 55 #define _PATH_ETHOPT _ROOT_PATH "/etc/ppp/options."
68 static option_t Options[] = {
367 add_options(Options);
429 options: Options,
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DrawableTest.java 140 assertNull(ShadowDrawable.createFromResourceStream(null, null, new ByteArrayInputStream(new byte[0]), corruptedStreamSource, new BitmapFactory.Options()));
145 Drawable drawable = ShadowDrawable.createFromResourceStream(null, null, new ByteArrayInputStream(new byte[0]), "my_source", new BitmapFactory.Options());
153 Drawable drawable = Drawable.createFromResourceStream(null, null, byteInputStream, "src name", new BitmapFactory.Options());
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
UriImage.java 22 import android.graphics.BitmapFactory.Options;
194 Options options = new Options(); local
195 options.inPreferredConfig = Config.ARGB_8888;
197 mFileDescriptor.getFileDescriptor(), options, targetSize, mType);
  /prebuilts/devtools/tools/lib/
asset-studio.jar 
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 80 // General options for llc. Other pass-specific options are specified
81 // within the corresponding llc passes, and target-specific options
82 // and back-end code generation options are specified with the target machine.
251 // Command Line Options
252 // There are four kinds of command line options:
254 // 2. Attribute options. Attributes describes the input file after them. For
256 // options are not attributes. Attribute options are the options that i
    [all...]
  /external/ceres-solver/internal/ceres/
system_test.cc 117 // Solver::Options* mutable_solver_options();
131 Solver::Options& options = *(system_test_problem->mutable_solver_options()); local
132 options.linear_solver_type = config.linear_solver_type;
133 options.sparse_linear_algebra_library_type =
135 options.preconditioner_type = config.preconditioner_type;
136 options.num_threads = config.num_threads;
137 options.num_linear_solver_threads = config.num_threads;
140 delete options.linear_solver_ordering;
141 options.linear_solver_ordering = NULL
    [all...]
line_search_minimizer.cc 90 void LineSearchMinimizer::Minimize(const Minimizer::Options& options,
96 Evaluator* evaluator = CHECK_NOTNULL(options.evaluator);
139 options.gradient_tolerance * initial_gradient_max_norm;
146 << " <= " << options.gradient_tolerance;
157 LineSearchDirection::Options line_search_direction_options;
159 line_search_direction_options.type = options.line_search_direction_type;
161 options.nonlinear_conjugate_gradient_type;
162 line_search_direction_options.max_lbfgs_rank = options.max_lbfgs_rank;
164 options.use_approximate_eigenvalue_bfgs_scaling
    [all...]
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);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 120 string Compress(const string& data, const GzipOutputStream::Options& options);
351 GzipOutputStream::Options options; local
352 options.format = GzipOutputStream::GZIP;
354 options.buffer_size = gzip_buffer_size;
356 GzipOutputStream gzout(&output, options);
386 GzipOutputStream::Options options; local
387 options.format = GzipOutputStream::GZIP
418 GzipOutputStream::Options options; local
446 GzipOutputStream::Options options; local
477 GzipOutputStream::Options options; local
505 GzipOutputStream::Options options; local
519 GzipOutputStream::Options options; local
567 GzipOutputStream::Options options; local
    [all...]
  /external/chromium_org/dbus/
test_service.cc 30 TestService::Options::Options()
34 TestService::Options::~Options() {
37 TestService::TestService(const Options& options)
39 request_ownership_options_(options.request_ownership_options),
40 dbus_task_runner_(options.dbus_task_runner),
50 base::Thread::Options thread_options;
160 Bus::Options bus_options
    [all...]
object_manager_unittest.cc 67 base::Thread::Options thread_options;
72 TestService::Options options; local
73 options.dbus_task_runner = dbus_thread_->message_loop_proxy();
74 test_service_.reset(new TestService(options));
80 Bus::Options bus_options;
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 115 Options = MatrixType::Options
117 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
202 Options = MatrixType::Options
205 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
297 Options = MatrixType::Options
300 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime>
493 MatrixOptions = MatrixType::Options
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 296 BitmapFactory.Options options = new BitmapFactory.Options(); local
298 fd.getFileDescriptor(), null, options);
325 BitmapFactory.Options options = new BitmapFactory.Options(); local
326 Bitmap bm = BitmapFactory.decodeStream(is, null, options);
438 BitmapFactory.Options options = new BitmapFactory.Options() local
490 BitmapFactory.Options options = new BitmapFactory.Options(); local
504 BitmapFactory.Options options = new BitmapFactory.Options(); local
    [all...]
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 24 template<typename _MatrixType, int Options> class PastixLLT;
25 template<typename _MatrixType, int Options> class PastixLDLT;
41 template<typename _MatrixType, int Options>
42 struct pastix_traits< PastixLLT<_MatrixType,Options> >
50 template<typename _MatrixType, int Options>
51 struct pastix_traits< PastixLDLT<_MatrixType,Options> >
  /frameworks/base/media/java/android/media/videoeditor/
MediaImageItem.java 124 final BitmapFactory.Options dbo = new BitmapFactory.Options();
978 final BitmapFactory.Options options = new BitmapFactory.Options(); local
    [all...]
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 24 import android.graphics.BitmapFactory.Options;
361 Options opts = new Options();
  /external/chromium_org/gpu/command_buffer/tests/
gl_texture_mailbox_unittests.cc 57 gl1_.Initialize(GLManager::Options());
58 GLManager::Options options; local
59 options.share_mailbox_manager = &gl1_;
60 gl2_.Initialize(options);
329 GLManager::Options options; local
330 options.share_mailbox_manager = &gl1_;
333 other_gl[i].Initialize(options);
337 if (!options.share_group_manager
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 58 Options = MatrixType::Options,
81 typedef Matrix<ComplexScalar, RowsAtCompileTime, ColsAtCompileTime, Options, MaxRowsAtCompileTime, MaxColsAtCompileTime> ComplexMatrixType;
  /external/eigen/test/eigen2/
eigen2_sparse_basic.cpp 12 template<typename SetterType,typename DenseType, typename Scalar, int Options>
13 bool test_random_setter(SparseMatrix<Scalar,Options>& sm, const DenseType& ref, const std::vector<Vector2i>& nonzeroCoords)
15 typedef SparseMatrix<Scalar,Options> SparseType;
  /external/jdiff/src/jdiff/
Options.java 8 * Class to handle options for JDiff.
13 public class Options {
16 public Options() {
23 * parse the options it does not recognize. It then calls
27 * The options arrive as case-sensitive strings. For options that
38 // Standard options
57 // Options to control JDiff
62 // Options to control the location of the XML files
69 // Options for the exclusion level for classes and member
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 506 TargetOptions Options;
514 /// InitEngine - Does the common initialization of default options.
521 Options = TargetOptions();
582 /// setTargetOptions - Set the target options that the ExecutionEngine
585 Options = Opts;
  /art/runtime/
runtime_test.cc 38 Runtime::Options options; local
39 options.push_back(std::make_pair(boot_class_path.c_str(), null));
40 options.push_back(std::make_pair("-classpath", null));
41 options.push_back(std::make_pair(lib_core.c_str(), null));
42 options.push_back(std::make_pair("-cp", null));
43 options.push_back(std::make_pair(lib_core.c_str(), null));
44 options.push_back(std::make_pair("-Ximage:boot_image", null));
45 options.push_back(std::make_pair("-Xcheck:jni", null));
46 options.push_back(std::make_pair("-Xms2048", null))
    [all...]
  /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);

Completed in 762 milliseconds

<<11121314151617181920>>