HomeSort by relevance Sort by last modified time
    Searched refs:Bind (Results 1 - 25 of 3144) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/test/chromedriver/server/
http_handler.cc 7 #include "base/bind.h"
87 base::Bind(&ExecuteNewSession,
95 WrapToCommand(base::Bind(&ExecuteGetSessionCapabilities))),
98 base::Bind(&ExecuteSessionCommand,
100 base::Bind(&ExecuteQuit, false),
104 WrapToCommand(base::Bind(&ExecuteGetCurrentWindowHandle))),
107 WrapToCommand(base::Bind(&ExecuteGetWindowHandles))),
110 WrapToCommand(base::Bind(&ExecuteGet))),
113 WrapToCommand(base::Bind(&ExecuteAlertCommand,
114 base::Bind(&ExecuteGetAlert))))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
bind_unittest.cc 28 #include "talk/base/bind.h"
51 Bind(&MethodBindTester::NullaryVoid, &object)();
53 EXPECT_EQ(1, Bind(&MethodBindTester::NullaryInt, &object)());
55 EXPECT_EQ(2, Bind(&MethodBindTester::NullaryConst,
58 Bind(&MethodBindTester::UnaryVoid, &object, 5)();
60 EXPECT_EQ(100, Bind(&MethodBindTester::Identity<int>, &object, 100)());
63 EXPECT_EQ(string_value, Bind(&MethodBindTester::Identity<std::string>,
67 EXPECT_EQ(12, Bind(&MethodBindTester::UnaryByRef, &object, value)());
70 EXPECT_EQ(56, Bind(&MethodBindTester::Multiply, &object, 7, 8)());
  /external/chromium_org/base/
bind_unittest.cc 5 #include "base/bind.h"
160 // Some test functions that we can Bind to.
257 Callback<int(void)> c0 = Bind(&Sum, 32, 16, 8, 4, 2, 1);
260 Callback<int(int)> c1 = Bind(&Sum, 32, 16, 8, 4, 2);
263 Callback<int(int,int)> c2 = Bind(&Sum, 32, 16, 8, 4);
266 Callback<int(int,int,int)> c3 = Bind(&Sum, 32, 16, 8);
269 Callback<int(int,int,int,int)> c4 = Bind(&Sum, 32, 16);
272 Callback<int(int,int,int,int,int)> c5 = Bind(&Sum, 32);
275 Callback<int(int,int,int,int,int,int)> c6 = Bind(&Sum);
281 Callback<int(int,int,int,int,int,int)> c6 = Bind(&Sum)
    [all...]
sequenced_task_runner.cc 7 #include "base/bind.h"
21 return PostNonNestableTask(from_here, Bind(deleter, object));
28 return PostNonNestableTask(from_here, Bind(releaser, object));
task_runner_util_unittest.cc 7 #include "base/bind.h"
74 Bind(&ReturnFourtyTwo),
75 Bind(&StoreValue, &result));
88 Bind(&ReturnFourtyTwo),
89 Bind(&StoreDoubleValue, &result));
103 Bind(&CreateFoo),
104 Bind(&ExpectFoo));
119 Bind(&CreateScopedFoo),
120 Bind(&ExpectScopedFoo));
bind_helpers_unittest.cc 8 #include "base/bind.h"
20 base::ScopedClosureRunner runner(base::Bind(&Increment, &run_count));
30 base::ScopedClosureRunner runner(base::Bind(&Increment, &run_count));
  /external/chromium/base/
bind_unittest.cc 5 #include "base/bind.h"
9 // to use bind.h in a headerfile for getting the Callback types.
10 #error "base/bind.h should avoid pulling in callback.h by default."
140 // Some test functions that we can Bind to.
226 Callback<int(void)> c0 = Bind(&Sum, 32, 16, 8, 4, 2, 1);
229 Callback<int(int)> c1 = Bind(&Sum, 32, 16, 8, 4, 2);
232 Callback<int(int,int)> c2 = Bind(&Sum, 32, 16, 8, 4);
235 Callback<int(int,int,int)> c3 = Bind(&Sum, 32, 16, 8);
238 Callback<int(int,int,int,int)> c4 = Bind(&Sum, 32, 16);
241 Callback<int(int,int,int,int,int)> c5 = Bind(&Sum, 32)
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/android/
new_tab_page_ready_handler.cc 7 #include "base/bind.h"
21 web_ui()->RegisterMessageCallback("notifyNTPReady", base::Bind(
23 web_ui()->RegisterMessageCallback("NTPUnexpectedNavigation", base::Bind(
26 web_ui()->RegisterMessageCallback("notifyNTPTitleLoaded", base::Bind(
  /external/chromium_org/chrome/browser/chromeos/drive/
fileapi_worker_unittest.cc 7 #include "base/bind.h"
41 base::Bind(&GetFileSystem, &dummy_file_system),
54 base::Bind(&GetFileSystem, static_cast<FileSystemInterface*>(NULL)),
56 base::Bind(&Increment, &num_called));
61 base::Bind(&GetFileSystem, static_cast<FileSystemInterface*>(NULL)),
async_file_util.cc 38 base::Bind(&fileapi_internal::RunFileSystemCallback,
42 base::Bind(&google_apis::RunTaskOnThread,
62 base::Bind(&google_apis::RunTaskOnThread,
143 base::Bind(&fileapi_internal::OpenFile,
146 base::Bind(&RunCreateOrOpenFileCallback,
148 base::Bind(&RunCreateOrOpenFileCallbackOnError,
166 base::Bind(&fileapi_internal::CreateFile,
169 base::Bind(&RunEnsureFileExistsCallback, callback))),
170 base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED, false));
189 base::Bind(&fileapi_internal::CreateDirectory
    [all...]
  /external/chromium_org/chrome/browser/ui/android/extensions/
extension_install_dialog_android.cc 5 #include "base/bind.h"
22 return base::Bind(&ShowExtensionInstallDialogImpl);
  /external/chromium_org/chrome/test/chromedriver/net/
sync_websocket_factory.cc 7 #include "base/bind.h"
23 return base::Bind(&CreateSyncWebSocket, make_scoped_refptr(getter));
  /external/chromium_org/chromeos/network/
cros_network_functions.cc 7 #include "base/bind.h"
186 service_path, base::Bind(&RunCallbackWithDictionaryValue,
324 base::Bind(&DoNothing),
325 base::Bind(&IgnoreErrors));
333 base::Bind(&DoNothing),
334 base::Bind(&IgnoreErrors));
340 dbus::ObjectPath(service_path), property, base::Bind(&DoNothing),
341 base::Bind(&IgnoreErrors));
348 dbus::ObjectPath(device_path), property, value, base::Bind(&DoNothing),
349 base::Bind(&IgnoreErrors))
    [all...]
  /external/chromium_org/content/child/fileapi/
webfilewriter_impl.cc 7 #include "base/bind.h"
50 base::Bind(&WriterBridge::DidFinish, this));
62 base::Bind(&WriterBridge::DidWrite, this),
63 base::Bind(&WriterBridge::DidFinish, this));
72 base::Bind(&WriterBridge::DidFinish, this));
93 PostTaskToWorker(base::Bind(write_callback_, written_bytes_, complete));
97 PostTaskToWorker(base::Bind(status_callback_, status));
137 RunOnMainThread(base::Bind(&WriterBridge::Truncate, bridge_,
139 base::Bind(&WebFileWriterImpl::DidFinish, AsWeakPtr())));
144 RunOnMainThread(base::Bind(&WriterBridge::Write, bridge_
    [all...]
  /external/chromium_org/base/message_loop/
message_pump_glib_unittest.cc 13 #include "base/bind.h"
212 injector()->AddEventAsTask(0, Bind(&DoNothing));
214 Bind(&ExpectProcessedEvents, Unretained(injector()), 2);
216 Bind(&PostMessageLoopTask, FROM_HERE, check_task);
218 injector()->AddEventAsTask(0, Bind(&DoNothing));
224 injector()->AddEventAsTask(0, Bind(&DoNothing));
226 Bind(&ExpectProcessedEvents, Unretained(injector()), 2);
227 posted_task = Bind(&PostMessageLoopTask, FROM_HERE, check_task);
229 injector()->AddEventAsTask(10, Bind(&DoNothing));
240 loop()->PostTask(FROM_HERE, Bind(&IncrementInt, &task_count))
    [all...]
  /external/chromium_org/media/audio/
virtual_audio_output_stream_unittest.cc 5 #include "base/bind.h"
34 base::Bind(&base::DeletePointer<VirtualAudioInputStream>)) {}
66 FROM_HERE, base::Bind(&base::WaitableEvent::Signal,
84 FROM_HERE, base::Bind(
91 base::Bind(&base::DeletePointer<VirtualAudioOutputStream>));
99 FROM_HERE, base::Bind(base::IgnoreResult(&VirtualAudioOutputStream::Open),
104 FROM_HERE, base::Bind(&VirtualAudioOutputStream::Start,
108 FROM_HERE, base::Bind(&VirtualAudioOutputStream::Stop,
112 FROM_HERE, base::Bind(&VirtualAudioOutputStream::Close,
116 FROM_HERE, base::Bind(&MockVirtualAudioInputStream::Close
    [all...]
  /external/chromium_org/ppapi/shared_impl/
proxy_lock_unittest.cc 7 #include "base/bind.h"
78 cb0 = RunWhileLocked(base::Bind(TestCallback_0));
86 cb0 = RunWhileLocked(base::Bind(TestCallback_1, 123));
97 base::Bind(&CheckLockStateInDestructor::Method,
108 cb1 = RunWhileLocked(base::Bind(TestCallback_1));
117 cb2 = RunWhileLocked(base::Bind(TestCallback_2));
126 cb3 = RunWhileLocked(base::Bind(TestCallback_3));
135 cb1_string = RunWhileLocked(base::Bind(TestCallback_2, 123));
143 cb0 = RunWhileLocked(base::Bind(TestCallback_2, 123, std::string("yo")));
173 base::Callback<void()> callback(base::Bind(TestCallback_0))
    [all...]
thread_aware_callback.h 9 #include "base/bind.h"
71 InternalRunOnTargetThread(base::Bind(func_));
76 InternalRunOnTargetThread(base::Bind(func_, p1));
81 InternalRunOnTargetThread(base::Bind(func_, p1, p2));
86 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3));
94 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4));
103 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4, p5));
  /external/chromium_org/base/files/
file_util_proxy.cc 7 #include "base/bind.h"
40 base::Bind(base::IgnoreResult(close_task_), file_handle_));
233 base::Bind(&CreateOrOpenAdapter, file_path, file_flags),
234 base::Bind(&CloseAdapter),
246 Bind(&CreateTemporaryHelper::RunWork, Unretained(helper),
248 Bind(&CreateTemporaryHelper::Reply, Owned(helper), callback));
258 base::Bind(&CloseAdapter),
271 Bind(&GetFileInfoHelper::RunWorkForFilePath,
273 Bind(&GetFileInfoHelper::Reply, Owned(helper), callback));
284 Bind(&GetFileInfoHelper::RunWorkForPlatformFile
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_webdata_service.cc 21 using base::Bind;
35 base::Closure on_changed_callback = Bind(
54 Bind(&AutofillWebDataBackendImpl::ResetUserData,
62 Bind(&AutofillWebDataBackendImpl::AddFormElements,
70 Bind(&AutofillWebDataBackendImpl::GetFormValuesForElementName,
77 Bind(&AutofillWebDataBackendImpl::HasFormElements, autofill_backend_),
84 Bind(&AutofillWebDataBackendImpl::RemoveFormElementsAddedBetween,
91 Bind(&AutofillWebDataBackendImpl::RemoveFormValueForElementName,
98 Bind(&AutofillWebDataBackendImpl::AddAutofillProfile,
105 Bind(&AutofillWebDataBackendImpl::UpdateAutofillProfile
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
tpm_password_fetcher.cc 7 #include "base/bind.h"
36 base::Bind(&TpmPasswordFetcher::OnTpmIsReady,
44 base::Bind(&TpmPasswordFetcher::OnTpmGetPassword,
71 base::Bind(&TpmPasswordFetcher::Fetch, weak_factory_.GetWeakPtr()),
  /external/chromium_org/chrome/browser/extensions/api/socket/
udp_socket_unittest.cc 47 socket.Connect("127.0.0.1", 40000, base::Bind(&OnConnected));
48 socket.RecvFrom(4096, base::Bind(&OnCompleted));
49 socket.RecvFrom(4096, base::Bind(&OnCompleted));
57 EXPECT_EQ(0, dest.Bind("0.0.0.0", 13333));
73 socket.Connect(kGroup, 13333, base::Bind(&OnConnected));
80 socket.Connect(kGroup, 13333, base::Bind(&OnConnected));
92 src->Write(data, test_message_length, base::Bind(&OnSendCompleted));
94 base::Bind(&SendMulticastPacket, src, result),
120 EXPECT_EQ(0, dest.Bind("0.0.0.0", kPort));
122 dest.Read(1024, base::Bind(&OnMulticastReadCompleted, &packet_received))
    [all...]
  /external/chromium_org/chrome/browser/
icon_loader.cc 8 #include "base/bind.h"
28 base::Bind(&IconLoader::ReadGroup, this),
29 base::Bind(&IconLoader::OnReadGroup, this));
40 base::Bind(&IconLoader::ReadIcon, this));
  /external/chromium_org/media/base/
gmock_callback_support_unittest.cc 7 #include "base/bind.h"
32 check.Call(base::Bind(&SetBool));
40 check.Call(base::Bind(&SetBool, true, &dst));
49 check.Call(base::Bind(&SetBool));
58 check.Call(0, base::Bind(&SetBool));
69 check.Call(base::Bind(&SetBool));
80 check.Call(base::Bind(&SetBool));
serial_runner.cc 7 #include "base/bind.h"
20 bound_closure.Run(base::Bind(status_cb, PIPELINE_OK));
30 message_loop->PostTask(FROM_HERE, base::Bind(status_cb, last_status));
38 bound_fns_.push(base::Bind(&RunBoundClosure, bound_closure));
62 message_loop_->PostTask(FROM_HERE, base::Bind(
86 bound_fn.Run(base::Bind(&RunOnMessageLoop, message_loop_, base::Bind(

Completed in 987 milliseconds

1 2 3 4 5 6 7 8 91011>>