HomeSort by relevance Sort by last modified time
    Searched defs:options (Results 76 - 100 of 1602) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/lldb/source/Interpreter/
OptionGroupValueObjectDisplay.cpp 45 { LLDB_OPT_SET_1, false, "raw-output", 'R', no_argument, NULL, 0, eArgTypeNone, "Don't use formatting options."},
155 ValueObject::DumpValueObjectOptions options; local
156 options.SetMaximumPointerDepth(ptr_depth);
158 options.SetShowSummary(false);
160 options.SetOmitSummaryDepth(no_summary_depth);
161 options.SetMaximumDepth(max_depth)
173 options.SetHideRootType(use_objc)
178 options.SetRawDisplay(true);
180 return options;
  /external/ppp/pppd/plugins/
passprompt.c 21 static option_t options[] = { variable
108 add_options(options);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_generator.cc 59 vector<pair<string, string> > options; local
60 ParseGeneratorParameter(parameter, &options);
63 // parse generator options
65 // TODO(kenton): If we ever have more options, we may want to create a
82 Options file_options;
84 for (int i = 0; i < options.size(); i++) {
85 if (options[i].first == "dllexport_decl") {
86 file_options.dllexport_decl = options[i].second;
87 } else if (options[i].first == "safe_boundary_check") {
90 *error = "Unknown generator option: " + options[i].first
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_generator.cc 52 if (file->options().has_java_outer_classname()) {
54 file->name(), file->options().java_outer_classname());
56 if (file->options().has_java_package()) {
58 file->name(), file->options().java_package());
60 if (file->options().has_java_multiple_files()) {
62 file->name(), file->options().java_multiple_files());
79 vector<pair<string, string> > options; local
86 ParseGeneratorParameter(parameter, &options);
89 // parse generator options
99 // Replace any existing options with ones from command lin
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
RegisterFormatter.java 41 @Nonnull public final baksmaliOptions options; field in class:RegisterFormatter
45 public RegisterFormatter(@Nonnull baksmaliOptions options, int registerCount, int parameterRegisterCount) {
46 this.options = options;
61 if (!options.noParameterRegisters) {
89 if (!options.noParameterRegisters) {
  /frameworks/wilhelm/tests/sandbox/
engine.c 86 SLEngineOption options[2]; local
87 options[0].feature = 0x12345;
88 options[0].data = 0;
91 result = slCreateEngine(&engineObject, 1, options, 0, NULL, NULL);
103 printf("Create an engine and politely request a non-sensical interface with options\n");
105 options[0].feature = SL_ENGINEOPTION_THREADSAFE;
106 options[0].data = (SLuint32) SL_BOOLEAN_TRUE;
107 options[1].feature = SL_ENGINEOPTION_LOSSOFCONTROL;
108 options[1].data = (SLuint32) SL_BOOLEAN_FALSE;
109 result = slCreateEngine(&engineObject, 2, options, numSupportedInterfaces+1, engine_ids
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
ResourceTexture.java 41 BitmapFactory.Options options = new BitmapFactory.Options(); local
42 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
44 mContext.getResources(), mResId, options);
  /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/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
Options.java 10 package com.adobe.xmp.options;
24 public abstract class Options
26 /** the internal int containing all options */
27 private int options = 0; field in class:Options
35 public Options()
42 * Constructor with the options bit mask.
44 * @param options the options bit mask
45 * @throws XMPException If the options are not correct
47 public Options(int options) throws XMPExceptio
    [all...]
  /cts/tools/vm-tests-tf/src/util/build/
JackBuildStep.java 21 import com.android.jack.Options;
68 Options options = Main.parseCommandLine(commandLine); local
69 Jack.checkAndRun(options);
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/ui/
DetailActivity.java 44 ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation( local
46 ActivityCompat.startActivity(activity, intent, options.toBundle());
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/ui/
DetailActivity.java 44 ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation( local
46 ActivityCompat.startActivity(activity, intent, options.toBundle());
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
HelloCompute.java 72 final BitmapFactory.Options options = new BitmapFactory.Options(); local
73 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
74 return BitmapFactory.decodeResource(getResources(), resource, options);
  /development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/
DetailActivity.java 44 ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation( local
46 ActivityCompat.startActivity(activity, intent, options.toBundle());
  /external/ceres-solver/internal/ceres/
levenberg_marquardt_strategy_test.cc 82 TrustRegionStrategy::Options options; local
83 options.initial_radius = 2.0;
84 options.max_radius = 20.0;
85 options.min_lm_diagonal = 1e-8;
86 options.max_lm_diagonal = 1e8;
91 options.linear_solver = linear_solver.get();
93 LevenbergMarquardtStrategy lms(options);
94 EXPECT_EQ(lms.Radius(), options.initial_radius);
110 EXPECT_EQ(lms.Radius(), options.max_radius)
125 TrustRegionStrategy::Options options; local
    [all...]
partitioned_matrix_view_test.cc 61 LinearSolver::Options options; local
62 options.elimination_groups.push_back(num_eliminate_blocks_);
64 options,
reorder_program_test.cc 83 Solver::Options options; local
84 options.linear_solver_type = DENSE_SCHUR;
85 options.linear_solver_ordering.reset(linear_solver_ordering);
schur_complement_solver_test.cc 66 LinearSolver::Options options; local
67 options.type = DENSE_QR;
69 scoped_ptr<LinearSolver> qr(LinearSolver::Create(options));
94 LinearSolver::Options options; local
95 options.elimination_groups.push_back(num_eliminate_blocks);
96 options.elimination_groups.push_back(
98 options.type = linear_solver_type;
99 options.dense_linear_algebra_library_type
    [all...]
unsymmetric_linear_solver_test.cc 59 void TestSolver(const LinearSolver::Options& 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;
89 scoped_ptr<LinearSolver> solver(LinearSolver::Create(options));
97 solver.reset(LinearSolver::Create(options));
134 LinearSolver::Options options; local
141 LinearSolver::Options options; local
149 LinearSolver::Options options; local
156 LinearSolver::Options options; local
166 LinearSolver::Options options; local
175 LinearSolver::Options options; local
184 LinearSolver::Options options; local
195 LinearSolver::Options options; local
204 LinearSolver::Options options; local
213 LinearSolver::Options options; local
224 LinearSolver::Options options; local
233 LinearSolver::Options options; local
242 LinearSolver::Options options; local
    [all...]
  /external/clang/include/clang/Driver/
Options.h 1 //===--- Options.h - Option info & table ------------------------*- C++ -*-===//
22 namespace options { namespace in namespace:clang::driver
23 /// Flags specifically for clang options. Must not overlap with
41 #include "clang/Driver/Options.inc"
  /external/clang/unittests/Basic/
FileManagerTest.cpp 70 FileManagerTest() : manager(options) {
73 FileSystemOptions options; member in class:__anon7141::FileManagerTest
  /external/emma/core/java12/com/vladium/emma/rt/
InstrClassLoadHook.java 45 // important to use the same options as the metadata may have been populated earlier:
46 final CoverageOptions options = mdata.getOptions (); local
47 m_classDefProcessor = new InstrVisitor (options);
  /external/fio/
profile.h 27 * Profile specific options
29 struct fio_option *options; member in struct:profile_ops
33 * Called after parsing options, to prepare 'cmdline'
  /external/fio/profiles/
tiobench.c 35 static struct fio_option options[] = { variable in typeref:struct:fio_option
88 * Fill our private options into the command line
118 .options = options,
  /external/google-breakpad/src/third_party/libdisasm/
ia32_settings.h 7 /* options */
24 enum x86_options options; member in struct:__anon9651

Completed in 178 milliseconds

1 2 34 5 6 7 8 91011>>