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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
abstractstep.py 32 from webkitpy.tool.steps.options import Options
36 def __init__(self, tool, options):
38 self._options = options
71 def options(cls): member in class:AbstractStep
74 Options.git_commit,
  /external/chromium_org/third_party/mesa/src/
common.py 75 # Common options
81 from SCons.Options.BoolOption import BoolOption
85 from SCons.Options.EnumOption import EnumOption
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_enum_field.h 50 const Options& options);
76 const Options& options);
cpp_message_field.h 50 const Options& options);
76 const Options& options);
cpp_primitive_field.h 50 const Options& options);
76 const Options& options);
cpp_string_field.h 50 const Options& options);
80 const Options& options);
  /external/clang/lib/Driver/
Android.mk 11 Options.inc \
  /external/libusb-compat/
libusb-config.in 12 Usage: libusb-config [OPTIONS] [LIBRARIES]
13 Options:
  /external/mesa3d/
common.py 75 # Common options
81 from SCons.Options.BoolOption import BoolOption
85 from SCons.Options.EnumOption import EnumOption
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterFx.java 73 BitmapFactory.Options o = new BitmapFactory.Options();
  /external/llvm/lib/Target/Mips/
MipsTargetMachine.cpp 56 StringRef CPU, StringRef FS, const TargetOptions &Options,
60 : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
118 StringRef CPU, StringRef FS, const TargetOptions &Options,
121 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
127 StringRef CPU, StringRef FS, const TargetOptions &Options,
130 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
133 /// Mips Code Generator Pass Configuration Options.
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 171 GzipOutputStream::Options::Options()
178 Init(sub_stream, Options());
182 const Options& options) {
183 Init(sub_stream, options);
188 Options options; local
189 options.format = format;
191 options.buffer_size = buffer_size
    [all...]
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 54 /* Options used internally. */
111 BitmapFactory.Options options = new BitmapFactory.Options(); local
112 options.inSampleSize = 1;
113 options.inJustDecodeBounds = true;
114 BitmapFactory.decodeFileDescriptor(fd, null, options);
115 if (options.mCancel || options.outWidth == -1
116 || options.outHeight == -1)
    [all...]
  /external/llvm/tools/lto/
LTOModule.cpp 226 void LTOModule::getTargetOptions(TargetOptions &Options) {
227 Options.LessPreciseFPMADOption = EnableFPMAD;
228 Options.NoFramePointerElim = DisableFPElim;
229 Options.AllowFPOpFusion = FuseFPOps;
230 Options.UnsafeFPMath = EnableUnsafeFPMath;
231 Options.NoInfsFPMath = EnableNoInfsFPMath;
232 Options.NoNaNsFPMath = EnableNoNaNsFPMath;
233 Options.HonorSignDependentRoundingFPMathOption =
235 Options.UseSoftFloat = GenerateSoftFloatCalls;
237 Options.FloatABIType = FloatABIForCalls
    [all...]
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 38 template<typename _MatrixType, int Options=Upper> class PardisoLLT;
39 template<typename _MatrixType, int Options=Upper> class PardisoLDLT;
78 template<typename _MatrixType, int Options>
79 struct pardiso_traits< PardisoLLT<_MatrixType, Options> >
87 template<typename _MatrixType, int Options>
88 struct pardiso_traits< PardisoLDLT<_MatrixType, Options> >
529 * For complex matrices, A can also be symmetric only, see the \a Options template parameter.
533 * \tparam Options can be any bitwise combination of Upper, Lower, and Symmetric. The default is Upper, meaning only the upper triangular part has to be used.
539 template<typename MatrixType, int Options>
540 class PardisoLDLT : public PardisoImpl< PardisoLDLT<MatrixType,Options> >
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 239 CXString clang_formatDiagnostic(CXDiagnostic Diagnostic, unsigned Options) {
248 if (Options & CXDiagnostic_DisplaySourceLocation) {
259 if (Options & CXDiagnostic_DisplayColumn)
262 if (Options & CXDiagnostic_DisplaySourceRanges) {
307 if (Options & (CXDiagnostic_DisplayOption | CXDiagnostic_DisplayCategoryId |
312 if (Options & CXDiagnostic_DisplayOption) {
324 if (Options & (CXDiagnostic_DisplayCategoryId |
327 if (Options & CXDiagnostic_DisplayCategoryId) {
337 if (Options & CXDiagnostic_DisplayCategoryName) {
  /packages/apps/Mms/src/com/android/mms/util/
ThumbnailManager.java 23 import android.graphics.BitmapFactory.Options;
329 BitmapFactory.Options options = new BitmapFactory.Options(); local
330 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
332 data.mOffset, data.mData.length - data.mOffset, options);
384 int length, Options options) {
385 if (options == null) {
386 options = new Options()
436 BitmapFactory.Options options = new BitmapFactory.Options(); local
    [all...]
  /external/ceres-solver/examples/
bundle_adjuster.cc 69 "Options are: levenberg_marquardt, dogleg.");
70 DEFINE_string(dogleg, "traditional_dogleg", "Options are: traditional_dogleg,"
76 DEFINE_string(blocks_for_inner_iterations, "automatic", "Options are: "
79 DEFINE_string(linear_solver, "sparse_schur", "Options are: "
82 DEFINE_string(preconditioner, "jacobi", "Options are: "
86 "Options are: suite_sparse and cx_sparse.");
88 "Options are: eigen and lapack.");
89 DEFINE_string(ordering, "automatic", "Options are: automatic, user.");
123 void SetLinearSolver(Solver::Options* options) {
320 Solver::Options options; local
    [all...]
  /external/chromium_org/chromeos/dbus/
bluetooth_profile_manager_client.cc 22 BluetoothProfileManagerClient::Options::Options()
29 BluetoothProfileManagerClient::Options::~Options() {
52 const Options& options,
71 dict_writer.AppendVariantOfString(options.name);
75 if (options.service.length()) {
79 dict_writer.AppendVariantOfString(options.service);
84 if (options.role != SYMMETRIC)
    [all...]
  /external/chromium_org/device/bluetooth/
bluetooth_profile_chromeos.cc 67 const device::BluetoothProfile::Options& options,
79 BluetoothProfileManagerClient::Options bluetooth_options;
80 bluetooth_options.name = options.name;
82 bluetooth_options.channel = options.channel;
83 bluetooth_options.psm = options.psm;
84 bluetooth_options.require_authentication = options.require_authentication;
85 bluetooth_options.require_authorization = options.require_authorization;
86 bluetooth_options.auto_connect = options.auto_connect;
87 bluetooth_options.version = options.version
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
table_builder.cc 11 #include "leveldb/options.h"
21 Options options; member in struct:leveldb::TableBuilder::Rep
22 Options index_block_options;
47 Rep(const Options& opt, WritableFile* f)
48 : options(opt),
52 data_block(&options),
63 TableBuilder::TableBuilder(const Options& options, WritableFile* file)
64 : rep_(new Rep(options, file))
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
gzip_stream.cc 187 GzipOutputStream::Options::Options()
194 Init(sub_stream, Options());
198 const Options& options) {
199 Init(sub_stream, options);
203 const Options& options) {
208 input_buffer_length_ = options.buffer_size;
224 if (options.format == ZLIB)
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 110 final BitmapFactory.Options opts = new BitmapFactory.Options();
130 * BitmapFactory.Options)} that returns {@code null} on {@link
139 * @param opts null-ok; Options that control downsampling and whether the
146 final BitmapFactory.Options opts) throws FileNotFoundException {
159 Log.w(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options): "
174 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an OOME", oome);
177 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an IOE", ioe);
199 final BitmapFactory.Options opts = new BitmapFactory.Options();
    [all...]
  /external/llvm/tools/opt/
opt.cpp 58 // Other command line options...
491 TargetOptions Options;
492 Options.LessPreciseFPMADOption = EnableFPMAD;
493 Options.NoFramePointerElim = DisableFPElim;
494 Options.AllowFPOpFusion = FuseFPOps;
495 Options.UnsafeFPMath = EnableUnsafeFPMath;
496 Options.NoInfsFPMath = EnableNoInfsFPMath;
497 Options.NoNaNsFPMath = EnableNoNaNsFPMath;
498 Options.HonorSignDependentRoundingFPMathOption =
500 Options.UseSoftFloat = GenerateSoftFloatCalls
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 23 import android.graphics.BitmapFactory.Options;
76 // Configurations for BitmapFactory.Options
165 Options opts = new BitmapFactory.Options();
190 Options opts = new BitmapFactory.Options();
220 Options opts = new BitmapFactory.Options();
246 Options opts = new BitmapFactory.Options();
    [all...]

Completed in 1870 milliseconds

1 2 3 4 5 6 7 891011>>