HomeSort by relevance Sort by last modified time
    Searched full:options (Results 201 - 225 of 12731) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/chrome/installer/util/
chrome_browser_operations.cc 25 std::set<string16>* options) const {
26 DCHECK(options);
32 options->insert(kOptionMultiInstall);
37 std::set<string16>* options) const {
38 DCHECK(options);
41 options->insert(kOptionMultiInstall);
45 const std::set<string16>& options,
52 const std::set<string16>& options,
57 const std::set<string16>& options,
61 if (options.find(kOptionMultiInstall) != options.end())
    [all...]
chrome_app_host_operations.h 21 std::set<string16>* options) const OVERRIDE;
24 std::set<string16>* options) const OVERRIDE;
27 const std::set<string16>& options,
31 const std::set<string16>& options,
34 virtual void AppendProductFlags(const std::set<string16>& options,
37 virtual void AppendRenameFlags(const std::set<string16>& options,
40 virtual bool SetChannelFlags(const std::set<string16>& options,
45 const std::set<string16>& options) const OVERRIDE;
53 const std::set<string16>& options,
chrome_binaries_operations.h 21 std::set<string16>* options) const OVERRIDE;
24 std::set<string16>* options) const OVERRIDE;
27 const std::set<string16>& options,
31 const std::set<string16>& options,
34 virtual void AppendProductFlags(const std::set<string16>& options,
37 virtual void AppendRenameFlags(const std::set<string16>& options,
40 virtual bool SetChannelFlags(const std::set<string16>& options,
45 const std::set<string16>& options) const OVERRIDE;
53 const std::set<string16>& options,
chrome_browser_operations.h 20 std::set<string16>* options) const OVERRIDE;
23 std::set<string16>* options) const OVERRIDE;
26 const std::set<string16>& options,
30 const std::set<string16>& options,
33 virtual void AppendProductFlags(const std::set<string16>& options,
36 virtual void AppendRenameFlags(const std::set<string16>& options,
39 virtual bool SetChannelFlags(const std::set<string16>& options,
44 const std::set<string16>& options) const OVERRIDE;
52 const std::set<string16>& options,
chrome_frame_operations.h 20 std::set<string16>* options) const OVERRIDE;
23 std::set<string16>* options) const OVERRIDE;
26 const std::set<string16>& options,
30 const std::set<string16>& options,
33 virtual void AppendProductFlags(const std::set<string16>& options,
36 virtual void AppendRenameFlags(const std::set<string16>& options,
39 virtual bool SetChannelFlags(const std::set<string16>& options,
44 const std::set<string16>& options) const OVERRIDE;
52 const std::set<string16>& options,
  /external/clang/lib/Driver/
Tools.cpp 21 #include "clang/Driver/Options.h"
47 if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC))
48 if (!Args.hasArg(options::OPT_E) && !D.CCCIsCPP())
57 if (Args.hasArg(options::OPT_static))
58 if (const Arg *A = Args.getLastArg(options::OPT_dynamic,
59 options::OPT_mdynamic_no_pic))
155 Args.AddAllArgValues(CmdArgs, options::OPT_Zlinker_input);
180 // Handle reserved library options.
181 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx))
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_shared_resources_unittests.cc 19 GLManager::Options options; local
24 options.bind_generates_resource = false;
26 options.bind_generates_resource = true;
28 gl1_.Initialize(options);
29 options.share_group_manager = &gl1_;
30 gl2_.Initialize(options);
  /external/clang/test/Driver/
cl.c 8 // Check that clang-cl options are not available by default.
10 // DEFAULT-NOT: CL.EXE COMPATIBILITY OPTIONS
17 // Check that /? and /help are available as clang-cl options.
21 // CL: CL.EXE COMPATIBILITY OPTIONS
25 // Options which are not "core" clang options nor cl.exe compatible options
  /bionic/libc/bionic/
wait.cpp 32 extern "C" int __waitid(idtype_t which, id_t id, siginfo_t* info, int options, struct rusage* ru);
38 pid_t wait3(int* status, int options, struct rusage* rusage) {
39 return wait4(-1, status, options, rusage);
42 pid_t waitpid(pid_t pid, int* status, int options) {
43 return wait4(pid, status, options, NULL);
46 int waitid(idtype_t which, id_t id, siginfo_t* info, int options) {
48 return __waitid(which, id, info, options, NULL);
52 extern "C" pid_t __wait4(pid_t pid, int* status, int options, struct rusage* rusage) {
53 return wait4(pid, status, options, rusage);
  /external/chromium_org/build/android/gyp/
strip_library_for_device.py 40 options, _ = parser.parse_args()
42 with open(options.libraries_file, 'r') as libfile:
45 build_utils.MakeDirectory(options.stripped_libraries_dir)
48 library_path = os.path.join(options.libraries_dir, library)
50 options.stripped_libraries_dir, library)
51 StripLibrary(options.android_strip, options.android_strip_arg, library_path,
54 if options.stamp:
55 build_utils.Touch(options.stamp)
jar.py 16 def DoJar(options):
17 class_files = build_utils.FindInDirectory(options.classes_dir, '*.class')
18 for exclude in build_utils.ParseGypList(options.excluded_classes):
22 jar_path = os.path.abspath(options.jar_path)
26 # options.classes_dir so the .class file paths in the jar are correct.
27 jar_cwd = options.classes_dir
31 record_path = '%s.md5.stamp' % options.jar_path
38 build_utils.Touch(options.jar_path)
52 options, _ = parser.parse_args()
54 DoJar(options)
    [all...]
push_libraries.py 25 def DoPush(options):
26 libraries = build_utils.ReadJson(options.libraries_json)
29 options.build_device_configuration)
37 device_path = os.path.join(options.device_dir, lib)
38 host_path = os.path.join(options.libraries_dir, lib)
42 device.RunShellCommand('mkdir -p ' + options.device_dir)
67 options, _ = parser.parse_args()
70 build_utils.CheckOptions(options, parser, required=required_options)
71 constants.SetBuildType(options.configuration_name)
73 DoPush(options)
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner_repeat.py 15 self.options = repeat_options
37 if (self.options.pageset_repeat_secs and
39 self.options.pageset_repeat_secs):
41 elif (not self.options.pageset_repeat_secs and
42 self.pageset_iters >= self.options.pageset_repeat_iters):
48 if (self.options.page_repeat_secs and
49 time.time() - self.page_start_time > self.options.page_repeat_secs):
51 elif (not self.options.page_repeat_secs and
52 self.page_iters >= self.options.page_repeat_iters):
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
PropertyOptions.java 10 package com.adobe.xmp.options;
22 public final class PropertyOptions extends Options
64 * @param options the initialization options
65 * @throws XMPException If the options are not valid
67 public PropertyOptions(int options) throws XMPException
69 super(options);
85 * @return Returns this to enable cascaded options.
107 * @return Returns this to enable cascaded options.
130 * @return Returns this to enable cascaded options
    [all...]
  /external/chromium_org/v8/tools/
run-deopt-fuzzer.py 140 def Distribution(options):
141 if options.distribution_mode == "random":
142 return RandomDistribution(options.seed)
143 if options.distribution_mode == "smooth":
144 return SmoothDistribution(options.distribution_factor1,
145 options.distribution_factor2)
216 def ProcessOptions(options):
220 if options.arch_and_mode:
221 tokens = options.arch_and_mode.split(".")
222 options.arch = tokens[0
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/
news.zip 
  /external/chromium_org/chrome/browser/resources/options/chromeos/
display_options.html 1 <div id="display-options-page" class="page" hidden>
4 <div class="content-area" id="display-options-content-area">
5 <div id="display-options-displays-view-host">
14 <button id="display-options-toggle-mirroring"
15 class="display-options-button" i18n-content="startMirroring">
17 <button id="display-options-set-primary"
18 class="display-options-button" i18n-content="setPrimary">
24 <select id="display-options-resolution-selection"
25 class="display-options-button">
32 <select id="display-options-orientation-selection
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
geolocation_options.js 5 cr.define('options', function() {
6 var OptionsPage = options.OptionsPage;
10 * Handles initialization of the geolocation options.
  /external/chromium_org/chrome/browser/resources/
options_resources.grd 11 <structure name="IDR_OPTIONS_BUNDLE_JS" file="options/options_bundle.js" flattenhtml="true" type="chrome_html" />
12 <structure name="IDR_OPTIONS_HTML" file="options/options.html" flattenhtml="true" allowexternalscript="true" type="chrome_html" />
  /external/chromium_org/chrome/browser/ui/webui/options/
advanced_options_utils.h 14 namespace options { namespace
16 // Chrome advanced options utility methods.
29 } // namespace options
autofill_options_browsertest.js 6 * TestFixture for autofill options WebUI testing.
16 * Browse to autofill options.
21 // Test opening the autofill options has correct location.
content_options_browsertest.js 6 * TestFixture for content options WebUI testing.
16 * Browse to content options.
21 // Test opening the content options has correct location.
language_options_browsertest.js 6 * TestFixture for languages options WebUI testing.
16 * Browse to languages options.
21 // Test opening languages options has correct location.
managed_user_learn_more_handler.cc 5 #include "chrome/browser/ui/webui/options/managed_user_learn_more_handler.h"
10 namespace options { namespace
31 } // namespace options
managed_user_learn_more_handler.h 8 #include "chrome/browser/ui/webui/options/options_ui.h"
14 namespace options { namespace
31 } // namespace options

Completed in 167 milliseconds

1 2 3 4 5 6 7 891011>>