HomeSort by relevance Sort by last modified time
    Searched refs:matched_forms (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/browser/password_manager/
password_store_win.h 51 const std::vector<autofill::PasswordForm*>& matched_forms);
password_store_x.cc 139 std::vector<autofill::PasswordForm*> matched_forms; local
140 if (use_native_backend() && backend_->GetLogins(form, &matched_forms)) {
141 SortLoginsByOrigin(&matched_forms);
145 if (matched_forms.size() > 0)
148 DCHECK(matched_forms.empty());
153 callback_runner.Run(matched_forms);
password_store_win.cc 163 std::vector<autofill::PasswordForm*> matched_forms = local
166 callback_runner.Run(matched_forms);
198 const std::vector<autofill::PasswordForm*>& matched_forms) {
200 if (matched_forms.empty() && db_handler_.get()) {
204 callback_runner.Run(matched_forms);
password_store_mac.cc 1039 std::vector<PasswordForm*> matched_forms; local
    [all...]
  /external/chromium_org/components/password_manager/core/browser/
password_store_default.cc 97 std::vector<PasswordForm*> matched_forms; local
98 login_db_->GetLogins(form, &matched_forms);
99 callback_runner.Run(matched_forms);
test_password_store.cc 98 std::vector<autofill::PasswordForm*> matched_forms; local
103 matched_forms.push_back(new autofill::PasswordForm(*it));
105 runner.Run(matched_forms);
password_store.cc 228 const std::vector<PasswordForm*>& matched_forms) {
229 // Copy the contents of |matched_forms| into the request. The request takes
231 *(request->result()) = matched_forms;
password_store.h 281 // Copies |matched_forms| into the request's result vector, then calls
287 const std::vector<autofill::PasswordForm*>& matched_forms);

Completed in 234 milliseconds