Searched defs:options (Results 176 - 200 of 1658) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/webui/options/
H A Dclear_browser_data_browsertest.cc9 #include "chrome/browser/ui/webui/options/options_ui_browsertest.h"
13 namespace options { namespace
100 } // namespace options
H A Dfont_settings_handler.h11 #include "chrome/browser/ui/webui/options/options_ui.h"
23 namespace options { namespace
67 // Opens the options page of the Advanced Font Settings Extension.
88 } // namespace options
H A Dhome_page_overlay_handler.cc5 #include "chrome/browser/ui/webui/options/home_page_overlay_handler.h"
21 namespace options { namespace
69 } // namespace options
H A Doptions_handlers_helper.cc17 namespace options { namespace
71 } // namespace options
H A Dreset_profile_settings_handler.h13 #include "chrome/browser/ui/webui/options/options_ui.h"
25 namespace options { namespace
28 // corresponding banner that is shown at the top of the options page.
93 } // namespace options
H A Dsupervised_user_create_confirm_handler.cc5 #include "chrome/browser/ui/webui/options/supervised_user_create_confirm_handler.h"
24 namespace options { namespace
91 } // namespace options
H A Dwebsite_settings_handler.h16 #include "chrome/browser/ui/webui/options/options_ui.h"
20 namespace options { namespace
150 } // namespace options
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdemo/
H A Dttsdemo.js45 function speak(str, options, highlightText) {
46 if (!options) {
47 options = {};
50 options.enqueue = Boolean(enqueue.value);
54 options.voiceName = voiceArray[voiceIndex].voiceName;
58 options.rate = rateValue;
62 options.pitch = pitchValue;
66 options.volume = volumeValue;
69 console.log(utteranceIndex + ': ' + JSON.stringify(options));
70 options
[all...]
/external/chromium_org/chromeos/dbus/
H A Dfake_bluetooth_profile_service_provider.cc43 const Delegate::Options& options,
47 delegate_->NewConnection(device_path, fd.Pass(), options, callback);
40 NewConnection( const dbus::ObjectPath& device_path, scoped_ptr<dbus::FileDescriptor> fd, const Delegate::Options& options, const Delegate::ConfirmationCallback& callback) argument
/external/chromium_org/components/nacl/zygote/
H A Dnacl_fork_delegate_linux_unittest.cc40 base::LaunchOptions options; local
41 NaClForkDelegate::AddPassthroughEnvToOptions(&options);
42 EXPECT_EQ(value1, options.environ[passthrough1]);
43 EXPECT_EQ(0U, options.environ.count(passthrough2));
44 EXPECT_EQ(value3, options.environ[passthrough3]);
45 EXPECT_EQ(0U, options.environ.count(passthrough4));
46 EXPECT_EQ(value5, options.environ[passthrough5]);
/external/chromium_org/content/public/test/
H A Dtest_browser_thread.cc64 base::Thread::Options options; local
65 options.message_loop_type = base::MessageLoop::TYPE_IO;
66 return impl_->StartWithOptions(options);
/external/chromium_org/dbus/
H A Dend_to_end_sync_unittest.cc26 TestService::Options options; local
27 test_service_.reset(new TestService(options));
H A Dobject_proxy_unittest.cc54 TestService::Options options; local
55 TestService test_service(options);
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_lose_context_chromium_unittest.cc21 GLManager::Options options; local
22 gl2_.Initialize(options);
23 options.context_lost_allowed = true;
24 gl1a_.Initialize(options);
25 options.share_group_manager = &gl1a_;
26 gl1b_.Initialize(options);
H A Dgl_texture_storage_unittest.cc19 GLManager::Options options; local
20 options.size = gfx::Size(kResolution, kResolution);
21 gl_.Initialize(options);
/external/chromium_org/ipc/
H A Dipc_channel_unittest.cc123 base::Thread::Options options; local
124 options.message_loop_type = base::MessageLoop::TYPE_IO;
125 thread.StartWithOptions(options);
/external/chromium_org/mojo/common/test/
H A Dmultiprocess_test_helper.cc42 base::LaunchOptions options; local
44 options.fds_to_remap = &handle_passing_info;
46 options.start_hidden = true;
47 options.handles_to_inherit = &handle_passing_info;
53 base::SpawnMultiProcessTestChild(test_child_main, command_line, options);
/external/chromium_org/mojo/dbus/
H A Ddbus_external_service.cc71 dbus::Bus::Options options; local
72 options.bus_type = dbus::Bus::SESSION;
73 bus_ = new dbus::Bus(options);
/external/chromium_org/mojo/public/cpp/utility/lib/
H A Dthread.cc18 Thread::Thread(const Options& options) argument
19 : options_(options),
/external/chromium_org/mojo/system/
H A Ddata_pipe_unittest.cc23 // |ValidateCreateOptions()| on already-validated options. The validated options
59 // Default options.
71 MojoCreateDataPipeOptions options = { local
76 DataPipe::ValidateCreateOptions(MakeUserPointer(&options),
91 MojoCreateDataPipeOptions options = { local
98 DataPipe::ValidateCreateOptions(MakeUserPointer(&options),
101 EXPECT_EQ(options.flags, validated_options.flags);
107 MojoCreateDataPipeOptions options = { local
115 DataPipe::ValidateCreateOptions(MakeUserPointer(&options),
129 MojoCreateDataPipeOptions options = { local
150 MojoCreateDataPipeOptions options = { local
170 MojoCreateDataPipeOptions options = { local
193 MojoCreateDataPipeOptions options = { local
214 MojoCreateDataPipeOptions options = { local
234 MojoCreateDataPipeOptions options = { local
258 MojoCreateDataPipeOptions options = { local
272 MojoCreateDataPipeOptions options = { local
286 MojoCreateDataPipeOptions options = { local
299 MojoCreateDataPipeOptions options = { local
311 MojoCreateDataPipeOptions options = { local
325 MojoCreateDataPipeOptions options = { local
337 MojoCreateDataPipeOptions options = { local
349 MojoCreateDataPipeOptions options = { local
362 MojoCreateDataPipeOptions options = { local
[all...]
H A Doptions_validation.h36 explicit UserOptionsReader(UserPointer<const Options> options) argument
38 options.template ReinterpretCast<const char>(),
39 GetSizeForReader(options)) {
50 const Options& options() const { function in class:mojo::system::UserOptionsReader
55 // Checks that the given (variable-size) |options| passed to the constructor
63 return options().struct_size >= offset + size;
67 static inline size_t GetSizeForReader(UserPointer<const Options> options) { argument
69 options.template ReinterpretCast<const uint32_t>().Get();
76 internal::CheckUserPointerWithSize<MOJO_ALIGNOF(Options)>(options.pointer_,
78 options
[all...]
H A Doptions_validation_unittest.cc17 // Declare a test options struct just as we do in actual public headers.
62 TestOptions* options = reinterpret_cast<TestOptions*>(buf); local
63 options->struct_size = kSizeOfTestOptions + 1;
64 UserOptionsReader<TestOptions> reader(MakeUserPointer(options));
72 TestOptions* options = reinterpret_cast<TestOptions*>(buf); local
73 options->struct_size = kSizeOfTestOptions + 4;
74 UserOptionsReader<TestOptions> reader(MakeUserPointer(options));
85 TestOptions options = {static_cast<uint32_t>(i)}; local
86 UserOptionsReader<TestOptions> reader(MakeUserPointer(&options));
119 TestOptions* options
[all...]
/external/chromium_org/net/cookies/
H A Dcanonical_cookie_unittest.cc83 CookieOptions options; local
86 CanonicalCookie::Create(url, "A=2", creation_time, options));
95 cookie.reset(CanonicalCookie::Create(url2, "B=1", creation_time, options));
106 CanonicalCookie::Create(url, "A=2; Secure", creation_time, options));
112 CanonicalCookie::Create(url, "A=2; HttpOnly", creation_time, options));
147 CookieOptions options; local
152 url, cookie_line, creation_time, options));
159 options.set_server_time(creation_time - base::TimeDelta::FromHours(1));
161 url, cookie_line, creation_time, options));
168 options
266 CookieOptions options; local
299 CookieOptions options; local
323 CookieOptions options; local
[all...]
/external/chromium_org/net/quic/test_tools/
H A Dquic_config_peer.cc49 const QuicTagVector& options) {
50 config->connection_options_.SetReceivedValues(options);
47 SetReceivedConnectionOptions( QuicConfig* config, const QuicTagVector& options) argument
/external/chromium_org/sandbox/win/src/
H A Dhandle_policy.cc59 DWORD options) {
85 options)) {
54 DuplicateHandleProxyAction(EvalResult eval_result, HANDLE source_handle, DWORD target_process_id, HANDLE* target_handle, DWORD desired_access, DWORD options) argument

Completed in 7042 milliseconds

1234567891011>>