HomeSort by relevance Sort by last modified time
    Searched full:forms (Results 1 - 25 of 31645) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/077-method-override/
info.txt 1 Test various forms of method overrides, including some not allowed by the
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /external/chromium_org/components/password_manager/core/browser/
password_store_default.cc 58 std::vector<PasswordForm*> forms; local
60 if (login_db_->GetLoginsCreatedBetween(delete_begin, delete_end, &forms)) {
62 for (std::vector<PasswordForm*>::const_iterator it = forms.begin();
63 it != forms.end(); ++it) {
70 STLDeleteElements(&forms);
77 std::vector<PasswordForm*> forms; local
79 if (login_db_->GetLoginsSyncedBetween(delete_begin, delete_end, &forms)) {
81 for (std::vector<PasswordForm*>::const_iterator it = forms.begin();
82 it != forms.end();
89 STLDeleteElements(&forms);
    [all...]
login_database.h 36 // Adds |form| to the list of remembered password forms. Returns the list of
48 // Removes |form| from the list of remembered password forms.
63 // Loads a list of matching password forms into the specified vector |forms|.
65 // including blacklisted matches. The caller owns |forms| after the call.
67 std::vector<autofill::PasswordForm*>* forms) const;
71 // direction. The caller owns |forms| after the call.
75 std::vector<autofill::PasswordForm*>* forms) const;
79 // direction. The caller owns |forms| after the call.
83 std::vector<autofill::PasswordForm*>* forms) const
    [all...]
test_password_store.cc 63 std::vector<autofill::PasswordForm>& forms = local
65 for (std::vector<autofill::PasswordForm>::iterator it = forms.begin();
66 it != forms.end(); ++it) {
79 std::vector<autofill::PasswordForm>& forms = local
81 std::vector<autofill::PasswordForm>::iterator it = forms.begin();
82 while (it != forms.end()) {
84 it = forms.erase(it);
99 std::vector<autofill::PasswordForm> forms = local
101 for (std::vector<autofill::PasswordForm>::iterator it = forms.begin();
102 it != forms.end(); ++it)
    [all...]
password_generation_manager.h 31 // This class is used to determine what forms we should offer to generate
39 // Detect account creation forms from forms with autofill type annotated.
43 const std::vector<autofill::FormStructure*>& forms);