/packages/apps/Browser/src/com/android/browser/ |
BrowserBookmarksPage.java | 35 import android.graphics.BitmapFactory.Options; 237 static ThreadLocal<Options> sOptions = new ThreadLocal<Options>() { 239 protected Options initialValue() { 240 return new Options(); 248 Options opts = sOptions.get();
|
/packages/apps/Camera2/src/com/android/camera/data/ |
LocalMediaData.java | 360 BitmapFactory.Options opts = new BitmapFactory.Options(); 510 BitmapFactory.Options justBoundsOpts = new BitmapFactory.Options(); 533 BitmapFactory.Options opts = new BitmapFactory.Options(); [all...] |
/packages/apps/Camera2/src/com/android/camera/util/ |
CameraUtil.java | 239 public static int computeSampleSize(BitmapFactory.Options options, 241 int initialSize = computeInitialSampleSize(options, minSideLength, 257 private static int computeInitialSampleSize(BitmapFactory.Options options, 259 double w = options.outWidth; 260 double h = options.outHeight; 284 BitmapFactory.Options options = new BitmapFactory.Options(); local [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
WallpaperCropActivity.java | 476 BitmapFactory.Options options = new BitmapFactory.Options(); local 477 options.inJustDecodeBounds = true; 478 BitmapFactory.decodeStream(mInStream, null, options); 479 if (options.outWidth != 0 && options.outHeight != 0) { 480 return new Point(options.outWidth, options.outHeight); 560 BitmapFactory.Options options = new BitmapFactory.Options() local 573 BitmapFactory.Options options = new BitmapFactory.Options(); local [all...] |
/external/openssh/ |
readconf.c | 51 # 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) 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->num_local_forwards++] [all...] |
/external/chromium_org/dbus/ |
bus.cc | 181 Bus::Options::Options() 186 Bus::Options::~Options() { 189 Bus::Bus(const Options& options) 190 : bus_type_(options.bus_type), 191 connection_type_(options.connection_type), 192 dbus_task_runner_(options.dbus_task_runner), 200 address_(options.address) [all...] |
/external/ceres-solver/examples/ |
nist.cc | 87 "Options are: levenberg_marquardt, dogleg"); 89 "Options are: traditional_dogleg, subspace_dogleg"); 90 DEFINE_string(linear_solver, "dense_qr", "Options are: " 93 DEFINE_string(preconditioner, "jacobi", "Options are: " 416 const ceres::Solver::Options& options) { 444 Solve(options, &problem, &summary); 483 void SetMinimizerOptions(ceres::Solver::Options* options) { 485 &options->minimizer_type)) 526 ceres::Solver::Options options; local [all...] |
/external/chromium/chrome/common/ |
service_process_util_unittest.cc | 78 base::Thread::Options options(MessageLoop::TYPE_IO, 0); 79 ASSERT_TRUE(io_thread_.StartWithOptions(options)); 208 base::Thread::Options options(MessageLoop::TYPE_IO, 0); 209 EXPECT_TRUE(io_thread_.StartWithOptions(options)); 355 base::Thread::Options options; local 356 options.message_loop_type = MessageLoop::TYPE_IO; 357 ASSERT_TRUE(io_thread_.StartWithOptions(options)); [all...] |
/external/eigen/Eigen/src/Cholesky/ |
LDLT.h | 52 Options = MatrixType::Options & ~RowMajorBit, // these are the options for the TmpMatrixType, we need a ColMajor matrix here! 60 typedef Matrix<Scalar, RowsAtCompileTime, 1, Options, MaxRowsAtCompileTime, 1> TmpMatrixType;
|
/external/eigen/Eigen/src/LU/ |
FullPivLU.h | 52 Options = MatrixType::Options, 588 Matrix<typename MatrixType::Scalar, Dynamic, Dynamic, MatrixType::Options,
|
PartialPivLU.h | 55 Options = MatrixType::Options,
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixLogarithm.h | 454 static const int Options = PlainObject::Options; 456 typedef Matrix<ComplexScalar, Dynamic, Dynamic, Options, RowsAtCompileTime, ColsAtCompileTime> DynMatrixType;
|
/external/chromium_org/third_party/re2/re2/testing/ |
re2_test.cc | 392 const RE2::Options& options = RE2::DefaultOptions) { 394 RE2 re(quoted, options); 402 const RE2::Options& options = RE2::DefaultOptions) { 404 RE2 re(quoted, options); [all...] |
/external/llvm/lib/MC/ |
MCAsmStreamer.cpp | 144 virtual void EmitLinkerOptions(ArrayRef<std::string> Options); 377 void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) { 378 assert(!Options.empty() && "At least one option is required!"); 379 OS << "\t.linker_option \"" << Options[0] << '"'; 380 for (ArrayRef<std::string>::iterator it = Options.begin() + 1, 381 ie = Options.end(); it != ie; ++it) { [all...] |
/external/regex-re2/re2/testing/ |
re2_test.cc | 385 const RE2::Options& options = RE2::DefaultOptions) { 387 RE2 re(quoted, options); 395 const RE2::Options& options = RE2::DefaultOptions) { 397 RE2 re(quoted, options); [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
NinePatchDrawableTest.java | 341 BitmapFactory.Options opts = new BitmapFactory.Options();
|
/development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/ |
ImageCache.java | 137 // populated into the inBitmap field of BitmapFactory.Options. Note that the set is 350 * @param options - BitmapFactory.Options with out* options populated 353 protected Bitmap getBitmapFromReusableSet(BitmapFactory.Options options) { 365 if (canUseForInBitmap(item, options)) { 502 * @param targetOptions - Options that have the out* value populated 507 Bitmap candidate, BitmapFactory.Options targetOptions) {
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
main.rb | 48 =begin rdoc ANTLR3::Main::Options 50 Defines command-line options and attribute mappings shared by all types of 55 module Options 68 def initialize( options = {} ) 69 @no_output = options.fetch( :no_output, false ) 70 @profile = options.fetch( :profile, false ) 71 @debug_socket = options.fetch( :debug_socket, false ) 72 @ruby_prof = options.fetch( :ruby_prof, false ) 73 @encoding = options.fetch( :encoding, nil ) 74 @interactive = options.fetch( :interactive, false [all...] |
/external/ceres-solver/internal/ceres/ |
trust_region_minimizer.cc | 72 void TrustRegionMinimizer::Init(const Minimizer::Options& options) { 73 options_ = options; 78 void TrustRegionMinimizer::Minimize(const Minimizer::Options& options, 83 Init(options); 178 bool inner_iterations_are_enabled = options.inner_iteration_minimizer != NULL; 181 if (!RunCallbacks(options.callbacks, iteration_summary, summary)) { 265 "than Solver::Options::max_num_consecutive_invalid_steps: %d", 317 options.inner_iteration_minimizer->Minimize(options [all...] |
visibility_based_preconditioner.cc | 59 // preconditioner construction. Move these higher up into the Options 69 const Preconditioner::Options& options) 70 : options_(options), 191 CanonicalViewsClusteringOptions options; local 192 options.size_penalty_weight = kSizePenaltyWeight; 193 options.similarity_penalty_weight = kSimilarityPenaltyWeight; 198 options, 313 LinearSolver::Options eliminator_options;
|
/external/chromium_org/chrome/browser/sync_file_system/local/ |
local_file_change_tracker.cc | 308 leveldb::Options options; local 309 options.max_open_files = 64; // Use minimum. 310 options.create_if_missing = true; 312 leveldb::Status status = leveldb::DB::Open(options, path, &db); 338 leveldb::Options options; local 339 options.max_open_files = 64; // Use minimum. 340 if (leveldb::RepairDB(db_path, options).ok() &&
|
/external/chromium_org/content/browser/indexed_db/leveldb/ |
leveldb_database.cc | 81 leveldb::Options options; local 82 options.comparator = comparator; 83 options.create_if_missing = true; 84 options.paranoid_checks = true; 89 options.compression = leveldb::kNoCompression; 93 options.max_open_files = 80; 94 options.env = env; 97 return leveldb::DB::Open(options, path.AsUTF8Unsafe(), db); 101 leveldb::Options options local [all...] |
/external/chromium_org/tools/python/google/httpd_config/ |
httpd.conf | 333 # Note that "MultiViews" must be named *explicitly* --- "Options All" 336 Options Indexes FollowSymLinks MultiViews ExecCGI Includes 339 # This controls which options the .htaccess files in directories can 340 # override. Can also be "All", or any combination of "Options", "FileInfo",
|
httpd2.conf | 99 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
|
/external/eigen/test/ |
geo_quaternion.cpp | 45 template<typename Scalar, int Options> void quaternion(void) 54 typedef Quaternion<Scalar,Options> Quaternionx;
|