HomeSort by relevance Sort by last modified time
    Searched refs:Options (Results 226 - 250 of 1087) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/eigen/Eigen/src/Eigenvalues/
GeneralizedEigenSolver.h 67 Options = MatrixType::Options,
90 typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> VectorType;
97 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> ComplexVectorType;
108 typedef Matrix<ComplexScalar, RowsAtCompileTime, ColsAtCompileTime, Options, MaxRowsAtCompileTime, MaxColsAtCompileTime> EigenvectorsType;
274 typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> ColumnVectorType;
  /external/llvm/lib/Target/AArch64/
AArch64TargetMachine.cpp 75 const TargetOptions &Options,
79 : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
88 StringRef CPU, StringRef FS, const TargetOptions &Options,
91 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
97 StringRef CPU, StringRef FS, const TargetOptions &Options,
100 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
103 /// AArch64 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...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 52 GCOVOptions Options;
53 Options.EmitNotes = true;
54 Options.EmitData = true;
55 Options.UseCfgChecksum = false;
56 Options.NoRedZone = false;
57 Options.FunctionNamesInData = true;
63 memcpy(Options.Version, DefaultGCOVVersion.c_str(), 4);
64 return Options;
73 GCOVProfiler() : ModulePass(ID), Options(GCOVOptions::getDefault()) {
76 GCOVProfiler(const GCOVOptions &Options) : ModulePass(ID), Options(Options)
    [all...]
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 48 /* Options used internally. */
105 BitmapFactory.Options options = new BitmapFactory.Options(); local
106 options.inSampleSize = 1;
107 options.inJustDecodeBounds = true;
108 BitmapFactory.decodeFileDescriptor(fd, null, options);
109 if (options.mCancel || options.outWidth == -1
110 || options.outHeight == -1)
    [all...]
  /external/llvm/lib/IR/
GCOV.cpp 412 formatBranchInfo(const GCOVOptions &Options, uint64_t Count,
414 Options(Options), Count(Count), Total(Total) {}
419 else if (Options.BranchCount)
425 const GCOVOptions &Options;
500 if (Options.NoOutput)
502 // mangled at all, and the -l and -p options are ignored. Here, we do the
507 if (Options.LongFileNames && !Filename.equals(MainFilename))
509 mangleCoveragePath(MainFilename, Options.PreservePaths) + "##";
511 mangleCoveragePath(Filename, Options.PreservePaths) + ".gcov"
    [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> >
507 * For complex matrices, A can also be symmetric only, see the \a Options template parameter.
511 * \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.
517 template<typename MatrixType, int Options>
518 class PardisoLDLT : public PardisoImpl< PardisoLDLT<MatrixType,Options> >
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 255 CXString clang_formatDiagnostic(CXDiagnostic Diagnostic, unsigned Options) {
264 if (Options & CXDiagnostic_DisplaySourceLocation) {
275 if (Options & CXDiagnostic_DisplayColumn)
278 if (Options & CXDiagnostic_DisplaySourceRanges) {
323 if (Options & (CXDiagnostic_DisplayOption | CXDiagnostic_DisplayCategoryId |
328 if (Options & CXDiagnostic_DisplayOption) {
340 if (Options & (CXDiagnostic_DisplayCategoryId |
343 if (Options & CXDiagnostic_DisplayCategoryId) {
353 if (Options & CXDiagnostic_DisplayCategoryName) {
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 263 LLVMInitializeMCJITCompilerOptions(&Options, sizeof(Options));
264 Options.OptLevel = 2;
267 Options.NoFramePointerElim = false;
271 Options.MCJMM = LLVMCreateSimpleMCJITMemoryManager(
281 0, LLVMCreateMCJITCompilerForModule(&Engine, Module, &Options,
282 sizeof(Options), &Error));
329 LLVMMCJITCompilerOptions Options;
414 Options.MCJMM = wrap(MM);
  /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: "
89 "Options are: suite_sparse and cx_sparse.");
91 "Options are: eigen and lapack.");
92 DEFINE_string(ordering, "automatic", "Options are: automatic, user.");
125 void SetLinearSolver(Solver::Options* options) {
320 Solver::Options options; local
    [all...]
  /external/chromium_org/chromeos/dbus/
bluetooth_profile_manager_client.cc 21 BluetoothProfileManagerClient::Options::Options() {
24 BluetoothProfileManagerClient::Options::~Options() {
39 const Options& options,
56 if (options.name.get() != NULL) {
59 dict_writer.AppendVariantOfString(*(options.name));
64 if (options.service.get() != NULL) {
68 dict_writer.AppendVariantOfString(*(options.service))
    [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...]
  /external/lldb/source/Interpreter/
Options.cpp 1 //===-- Options.cpp ---------------------------------------------*- C++ -*-===//
12 #include "lldb/Interpreter/Options.h"
33 // Options
35 Options::Options (CommandInterpreter &interpreter) :
42 Options::~Options ()
47 Options::NotifyOptionParsingStarting ()
55 Options::NotifyOptionParsingFinished ()
61 Options::OptionSeen (int option_idx
523 std::set<int> options; local
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 107 final BitmapFactory.Options opts = new BitmapFactory.Options();
127 * BitmapFactory.Options)} that returns {@code null} on {@link
136 * @param opts null-ok; Options that control downsampling and whether the
143 final BitmapFactory.Options opts) throws FileNotFoundException {
158 Log.w(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options): "
173 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an OOME", oome);
176 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an IOE", ioe);
198 final BitmapFactory.Options opts = new BitmapFactory.Options();
    [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...]
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletFactory.java 32 import com.sun.tools.javac.util.Options;
87 ListBuffer<String[]> options = new ListBuffer<String[]>(); local
89 options.append(new String[] {"-sourcepath", sourcepath});
95 Options compOpts = Options.instance(context);
118 javaNames.toList(), options.toList(), breakiterator,
  /external/ceres-solver/include/ceres/
problem.h 123 struct CERES_EXPORT Options {
124 Options()
171 // invocation Problem(Problem::Options()).
173 explicit Problem(const Options& options);
195 // do this by setting the corresponding enums in the Options struct.
284 // If Problem::Options::enable_fast_removal is true, then the
373 // If Problem::Options::enable_fast_removal is true, then
381 // Options struct to control Problem::Evaluate.
455 bool Evaluate(const EvaluateOptions& options,
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_message_field.cc 49 const Options& options) {
50 SetCommonFieldVariables(descriptor, variables, options);
64 const Options& options)
66 SetMessageVariables(descriptor, &variables_, options);
183 const Options& options)
185 SetMessageVariables(descriptor, &variables_, options);
  /external/lldb/include/lldb/Interpreter/
Args.h 316 /// @see class Options
319 ParseOptions (Options &options);
328 // and it builds up the option_arg_vector as it parses the options.
331 ParseAliasOptions (Options &options, CommandReturnObject &result, OptionArgVector *option_arg_vector,
335 ParseArgsForCompletion (Options &options, OptionElementVector &option_element_vector, uint32_t cursor_index);
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 81 TargetOptions Options = InitTargetOptionsFromCodeGenFlags();
102 CodeGen.setTargetOptions(Options);
113 LTOModule::createFromFile(InputFilenames[i].c_str(), Options, error));

Completed in 845 milliseconds

1 2 3 4 5 6 7 8 91011>>