HomeSort by relevance Sort by last modified time
    Searched defs:Options (Results 26 - 50 of 232) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/chrome/browser/extensions/
external_pref_loader.h 24 enum Options {
36 ExternalPrefLoader(int base_path_id, Options options);
44 bool IsOptionSet(Options option) {
52 const Options options_;
  /external/chromium_org/mojo/public/cpp/utility/
thread.h 25 class Options {
27 Options() : stack_size_(0) {}
41 explicit Thread(const Options& options);
52 const Options options_;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
confirmdiff.py 32 from webkitpy.tool.steps.options import Options
43 def options(cls): member in class:ConfirmDiff
44 return AbstractStep.options() + [
45 Options.confirm,
  /external/chromium_org/third_party/icu/source/tools/gensprep/
filterRFC3454.pl 26 $warning = "###################\n# WARNING: This table is generated by filterRFC3454.pl tool with\n# options: @ARGV \n###################\n\n";
638 Options:
  /external/clang/tools/libclang/
CIndexer.h 38 unsigned Options; // CXGlobalOptFlags.
44 Options(CXGlobalOpt_None) { }
57 unsigned getCXGlobalOptFlags() const { return Options; }
58 void setCXGlobalOptFlags(unsigned options) { Options = options; }
61 return Options & opt;
  /external/icu/icu4c/source/tools/gensprep/
filterRFC3454.pl 26 $warning = "###################\n# WARNING: This table is generated by filterRFC3454.pl tool with\n# options: @ARGV \n###################\n\n";
638 Options:
  /external/ppp/pppd/plugins/radius/
radrealms.c 30 static option_t Options[] = {
145 add_options(Options);
  /frameworks/base/tools/aidl/
options.h 15 // This struct is the parsed version of the command line options
16 struct Options
31 // takes the inputs from the command line and fills in the Options struct
34 int parse_options(int argc, const char* const* argv, Options *options);
  /external/chromium_org/base/threading/
simple_thread.h 60 class BASE_EXPORT Options {
62 Options() : stack_size_(0) { }
63 ~Options() { }
74 // Create a SimpleThread. |options| should be used to manage any specific
79 SimpleThread(const std::string& name_prefix, const Options& options);
116 const Options options_;
136 const Options& options);
  /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/ceres-solver/internal/ceres/
trust_region_strategy.h 58 struct Options {
59 Options()
85 // Per solve options.
158 static TrustRegionStrategy* Create(const Options& options);
preconditioner.h 49 struct Options {
50 Options()
  /external/chromium_org/content/public/browser/
tracing_controller.h 28 enum Options {
65 // |options| controls what kind of tracing is enabled.
69 TracingController::Options options,
105 // |options| controls what kind of tracing is enabled.
109 TracingController::Options options,
123 TracingController::Options* out_options) = 0;
  /external/chromium_org/dbus/
test_service.h 33 // Options for the test service.
34 struct Options {
35 Options();
36 ~Options();
48 explicit TestService(const Options& options);
192 // Options to use when requesting service ownership.
  /external/chromium_org/net/dns/
host_resolver.cc 29 PrioritizedDispatcher::Limits HostResolver::Options::GetDispatcherLimits()
86 HostResolver::Options::Options()
120 const Options& options,
122 return scoped_ptr<HostResolver>(new HostResolverImpl(options, net_log));
127 return scoped_ptr<HostResolver>(new HostResolverImpl(Options(), net_log));
  /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));
  /frameworks/av/include/media/stagefright/
MediaSource.h 60 MediaBuffer **buffer, const ReadOptions *options = NULL) = 0;
62 // Options that modify read() behaviour. The default is to
90 enum Options {
  /frameworks/compile/slang/tests/
test.py 21 class Options(object):
32 if Options.verbose:
36 if Options.verbose:
64 if Options.verbose != 0:
92 if Options.verbose > 1:
111 if Options.verbose > 1:
125 if Options.verbose:
130 if Options.verbose:
134 if Options.verbose:
139 if Options.verbose
    [all...]
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
MakeKeyboardText.java 25 static class Options {
38 public Options(final String[] argsArray) {
60 final Options options = new Options(args); local
63 resources.writeToJava(options.mJava);
  /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/chromium_org/chromeos/dbus/
bluetooth_profile_manager_client.h 33 // Options used to register a Profile object.
34 struct CHROMEOS_EXPORT Options {
35 Options();
36 ~Options();
82 // |uuid| specifies the identifier of the profile and |options| the way in
86 const Options& options,
  /external/chromium_org/components/test/data/password_manager/
environment.py 14 from selenium.webdriver.chrome.options import Options
71 options = Options()
73 options.add_argument("enable-automatic-password-saving")
75 options.binary_location = chrome_path
77 options.add_argument("user-data-dir=%s" % profile_path)
81 self.driver = webdriver.Chrome(chromedriver_path, 0, options)
  /external/chromium_org/content/public/test/
test_browser_thread_bundle.h 51 enum Options {
63 explicit TestBrowserThreadBundle(int options);
68 void Init(int options);
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
options.h 30 // Options to control the behavior of a database (passed to DB::Open)
31 struct Options {
138 // Create an Options object with default values for all fields.
139 Options();
142 // Options that control read operations
168 // Options that control write operations
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
test_util.h 18 /* Command line options */
19 struct Options {
56 /* Set if the command line options set a value for signalValue */
105 * Set default options for the command line options. Must be called
108 void SetDefaultOptions(struct Options* options, int real_only,
112 * Process the command line options
114 void ProcessCommandLine(struct Options* options, int argc, char* argv[]
    [all...]

Completed in 2018 milliseconds

12 3 4 5 6 7 8 910