Searched defs:form (Results 1 - 25 of 218) sorted by path

123456789

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DAttributeCertificateIssuer.java20 final ASN1Encodable form; field in class:AttributeCertificateIssuer
29 form = issuer.getIssuer();
34 form = new V2Form(new GeneralNames(new GeneralName(principal)));
41 if (form instanceof V2Form)
43 name = ((V2Form)form).getIssuerName();
47 name = (GeneralNames)form;
87 return new AttributeCertificateIssuer(AttCertIssuer.getInstance(form));
104 return this.form.equals(other.form);
109 return this.form
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DAttributeCertificateIssuer.java29 final ASN1Encodable form; field in class:AttributeCertificateIssuer
38 form = issuer.getIssuer();
49 form = new V2Form(GeneralNames.getInstance(new DERSequence(new GeneralName(principal))));
56 if (form instanceof V2Form)
58 name = ((V2Form)form).getIssuerName();
62 name = (GeneralNames)form;
138 return new AttributeCertificateIssuer(AttCertIssuer.getInstance(form));
150 if (form instanceof V2Form)
152 V2Form issuer = (V2Form)form;
167 GeneralNames name = (GeneralNames)form;
[all...]
/external/chromium_org/android_webview/native/
H A Daw_autofill_client.cc191 const autofill::FormData& form,
190 ShowRequestAutocompleteDialog( const autofill::FormData& form, const GURL& source_url, const ResultCallback& callback) argument
/external/chromium_org/chrome/browser/android/
H A Dpassword_ui_view_android.cc67 const autofill::PasswordForm* form = local
69 if (!form) {
77 ConvertUTF8ToJavaString(env, form->origin.spec()).obj(),
78 ConvertUTF16ToJavaString(env, form->username_value).obj());
83 const autofill::PasswordForm* form = local
85 if (!form)
87 return ConvertUTF8ToJavaString(env, form->origin.spec());
/external/chromium_org/chrome/browser/history/
H A Dhistory_browsertest.cc457 // Verify that submitting form adds target page to history list.
459 GURL form = ui_test_utils::GetTestUrl( local
461 base::FilePath().AppendASCII("form.html"));
465 ui_test_utils::NavigateToURL(browser(), form); local
473 web_contents, "document.getElementById('form').submit()"));
479 ASSERT_EQ(form, urls[1]);
/external/chromium_org/chrome/browser/importer/
H A Dexternal_process_importer_client.cc235 const autofill::PasswordForm& form) {
239 bridge_->SetPasswordForm(form);
234 OnPasswordFormImportReady( const autofill::PasswordForm& form) argument
H A Die_importer_browsertest_win.cc264 virtual void AddPasswordForm(const autofill::PasswordForm& form) { argument
265 // Importer should obtain this password form only.
266 EXPECT_EQ(GURL("http://localhost:8080/security/index.htm"), form.origin);
267 EXPECT_EQ("http://localhost:8080/", form.signon_realm);
268 EXPECT_EQ(L"user", form.username_element);
269 EXPECT_EQ(L"1", form.username_value);
270 EXPECT_EQ(L"", form.password_element);
271 EXPECT_EQ(L"2", form.password_value);
272 EXPECT_EQ("", form.action.spec());
382 virtual void AddPasswordForm(const autofill::PasswordForm& form) {} argument
[all...]
H A Din_process_importer_bridge.cc67 void CheckForEmptyUsernameAndPassword(const autofill::PasswordForm& form) { argument
68 if (form.username_value.empty() &&
69 form.password_value.empty() &&
70 !form.blacklisted_by_user) {
263 const autofill::PasswordForm& form) {
264 CheckForEmptyUsernameAndPassword(form);
267 base::Bind(&ProfileWriter::AddPasswordForm, writer_, form));
262 SetPasswordForm( const autofill::PasswordForm& form) argument
H A Dprofile_writer.cc88 void ProfileWriter::AddPasswordForm(const autofill::PasswordForm& form) { argument
90 profile_, Profile::EXPLICIT_ACCESS)->AddLogin(form);
/external/chromium_org/chrome/browser/password_manager/
H A Dchrome_password_manager_client.cc122 const autofill::PasswordForm& form) {
123 if (!IsSyncAccountCredential(base::UTF16ToUTF8(form.username_value),
124 form.signon_realm))
213 // other plaftorms should just fill the password form directly.
404 const autofill::PasswordForm& form) {
415 form,
427 const autofill::PasswordForm& form) {
435 form,
121 ShouldFilterAutofillResult( const autofill::PasswordForm& form) argument
401 ShowPasswordGenerationPopup( const gfx::RectF& bounds, int max_length, const autofill::PasswordForm& form) argument
425 ShowPasswordEditingPopup( const gfx::RectF& bounds, const autofill::PasswordForm& form) argument
H A Dchrome_password_manager_client_unittest.cc230 autofill::PasswordForm form; local
235 EXPECT_FALSE(client->ShouldFilterAutofillResult(form));
240 EXPECT_TRUE(client->ShouldFilterAutofillResult(form));
245 EXPECT_TRUE(client->ShouldFilterAutofillResult(form));
248 EXPECT_FALSE(client->ShouldFilterAutofillResult(form));
251 EXPECT_FALSE(client->ShouldFilterAutofillResult(form));
259 autofill::PasswordForm form; local
262 EXPECT_FALSE(client->ShouldFilterAutofillResult(form));
271 EXPECT_TRUE(client->ShouldFilterAutofillResult(form));
H A Dnative_backend_gnome_x.cc120 scoped_ptr<PasswordForm> form(new PasswordForm());
121 form->origin = GURL(string_attr_map["origin_url"]);
122 form->action = GURL(string_attr_map["action_url"]);
123 form->username_element = UTF8ToUTF16(string_attr_map["username_element"]);
124 form->username_value = UTF8ToUTF16(string_attr_map["username_value"]);
125 form->password_element = UTF8ToUTF16(string_attr_map["password_element"]);
126 form->submit_element = UTF8ToUTF16(string_attr_map["submit_element"]);
127 form->signon_realm = string_attr_map["signon_realm"];
128 form->ssl_valid = uint_attr_map["ssl_valid"];
129 form
320 AddLogin(const PasswordForm& form, const char* app_string) argument
359 AddLoginSearch(const PasswordForm& form, const char* app_string) argument
379 UpdateLoginSearch(const PasswordForm& form, const char* app_string) argument
398 RemoveLogin(const PasswordForm& form, const char* app_string) argument
416 GetLogins(const PasswordForm& form, const char* app_string) argument
537 RawAddLogin(const PasswordForm& form) argument
553 AddLogin( const PasswordForm& form) argument
593 UpdateLogin( const PasswordForm& form, password_manager::PasswordStoreChangeList* changes) argument
637 RemoveLogin(const PasswordForm& form) argument
670 GetLogins(const PasswordForm& form, PasswordFormList* forms) argument
[all...]
H A Dnative_backend_gnome_x_unittest.cc289 const PasswordForm& expected = expected_list[i].form();
290 const PasswordForm& actual = actual_list[i].form();
443 const PasswordForm& form,
447 EXPECT_EQ(form.origin.spec(), item->display_name);
448 EXPECT_EQ(UTF16ToUTF8(form.password_value), item->password);
450 CheckStringAttribute(item, "origin_url", form.origin.spec());
451 CheckStringAttribute(item, "action_url", form.action.spec());
453 UTF16ToUTF8(form.username_element));
455 UTF16ToUTF8(form.username_value));
457 UTF16ToUTF8(form
442 CheckMockKeyringItem(const MockKeyringItem* item, const PasswordForm& form, const std::string& app_string) argument
[all...]
H A Dnative_backend_kwallet_x.cc269 const PasswordForm& form) {
275 GetLoginsList(&forms.get(), form.signon_realm, wallet_handle);
285 if (CompareForms(form, *forms[i], false)) {
288 *forms[i] = form;
293 forms.push_back(new PasswordForm(form));
295 password_manager::PasswordStoreChange::ADD, form));
297 bool ok = SetLoginsList(forms.get(), form.signon_realm, wallet_handle);
305 const PasswordForm& form,
314 GetLoginsList(&forms.get(), form.signon_realm, wallet_handle);
318 if (CompareForms(form, *form
268 AddLogin( const PasswordForm& form) argument
304 UpdateLogin( const PasswordForm& form, password_manager::PasswordStoreChangeList* changes) argument
335 RemoveLogin(const PasswordForm& form) argument
374 GetLogins(const PasswordForm& form, PasswordFormList* forms) argument
713 const PasswordForm* form = *it; local
[all...]
H A Dnative_backend_kwallet_x_unittest.cc220 CheckPasswordForm(expected[i].form(), actual[i].form());
680 EXPECT_EQ(new_form_google, changes.front().form());
809 // Make sure we can still get the first form back.
915 void CreateVersion3Pickle(const PasswordForm& form, Pickle* pickle);
916 void CreateVersion2Pickle(const PasswordForm& form, Pickle* pickle);
917 void CreateVersion1Pickle(const PasswordForm& form, Pickle* pickle);
919 const PasswordForm& form,
927 void CreatePickle(bool size_32, const PasswordForm& form, Pickle* pickle);
931 const PasswordForm& form, Pickl
930 CreateVersion3Pickle( const PasswordForm& form, Pickle* pickle) argument
940 CreateVersion2Pickle( const PasswordForm& form, Pickle* pickle) argument
949 CreateVersion1Pickle( const PasswordForm& form, Pickle* pickle) argument
955 CreateVersion0Pickle( bool size_32, const PasswordForm& form, Pickle* pickle) argument
961 CreatePickle( bool size_32, const PasswordForm& form, Pickle* pickle) argument
983 PasswordForm form = form_google_; local
1002 PasswordForm form = old_form_google_; local
1020 PasswordForm form = form_google_; local
1038 PasswordForm form = old_form_google_; local
[all...]
H A Dpassword_store_mac.cc235 // The time string is of the form "yyyyMMddHHmmss'Z", in UTC time.
261 PasswordForm* form,
263 DCHECK(form);
305 &(form->password_value));
320 &(form->username_value));
335 form->ssl_valid = (protocol == kSecProtocolTypeHTTPS);
342 form->scheme = SchemeForAuthType(auth_type);
353 &form->date_created);
358 form->blacklisted_by_user = true;
368 if (extract_password_data && (form
259 FillPasswordFormFromKeychainItem(const AppleKeychain& keychain, const SecKeychainItemRef& keychain_item, PasswordForm* form, bool extract_password_data) argument
428 PasswordForm* form = *i; local
690 AddPassword(const PasswordForm& form) argument
734 RemovePassword(const PasswordForm& form) argument
754 PasswordForm* form = new PasswordForm(); local
765 KeychainItemForForm( const PasswordForm& form) argument
909 AddLoginImpl( const PasswordForm& form) argument
919 UpdateLoginImpl( const PasswordForm& form) argument
940 RemoveLoginImpl( const PasswordForm& form) argument
1002 GetLoginsImpl( const autofill::PasswordForm& form, AuthorizationPromptPolicy prompt_policy, const ConsumerCallbackRunner& callback_runner) argument
1099 AddToKeychainIfNecessary(const PasswordForm& form) argument
1107 DatabaseHasFormMatchingKeychainForm( const autofill::PasswordForm& form) argument
[all...]
H A Dpassword_store_mac_unittest.cc93 // Basic HTML form.
97 // HTML form with path.
101 // Secure HTML form with path.
186 PasswordForm* form = new PasswordForm(); local
187 form->scheme = form_data.scheme;
188 form->preferred = form_data.preferred;
189 form->ssl_valid = form_data.ssl_valid;
190 form->date_created = base::Time::FromDoubleT(form_data.creation_time);
191 form->date_synced = form
241 PasswordForm* form = forms[i]; local
331 PasswordForm form; local
370 PasswordForm form; local
469 SetPasswordFormPath(PasswordForm* form, const char* path) argument
477 SetPasswordFormPort(PasswordForm* form, const char* port) argument
486 SetPasswordFormRealm(PasswordForm* form, const char* realm) argument
[all...]
H A Dpassword_store_win.cc34 // Requests the IE7 login for |form|. This is async. |callback_runner| will be
37 const PasswordForm& form,
46 : form(request_form),
49 PasswordForm* form; member in struct:PasswordStoreWin::DBHandler::RequestInfo
61 const PasswordForm& form);
85 delete i->second.form;
90 const PasswordForm& form,
95 ie7_password::GetUrlHash(base::UTF8ToWide(form.origin.spec()));
99 RequestInfo(new PasswordForm(form), callback_runner);
104 const PasswordForm& form) {
89 GetIE7Login( const PasswordForm& form, const PasswordStoreWin::ConsumerCallbackRunner& callback_runner) argument
102 GetIE7Results( const WDTypedResult *result, const PasswordForm& form) argument
195 GetIE7LoginIfNecessary( const PasswordForm& form, const ConsumerCallbackRunner& callback_runner, const std::vector<autofill::PasswordForm*>& matched_forms) argument
208 GetLoginsImpl( const PasswordForm& form, AuthorizationPromptPolicy prompt_policy, const ConsumerCallbackRunner& callback_runner) argument
[all...]
H A Dpassword_store_x.cc32 const PasswordForm& form,
34 *changes = backend->AddLogin(form);
53 PasswordStoreChangeList PasswordStoreX::AddLoginImpl(const PasswordForm& form) { argument
56 if (use_native_backend() && AddLoginToBackend(backend_, form, &changes)) {
59 changes = PasswordStoreDefault::AddLoginImpl(form);
65 const PasswordForm& form) {
68 if (use_native_backend() && backend_->UpdateLogin(form, &changes)) {
71 changes = PasswordStoreDefault::UpdateLoginImpl(form);
77 const PasswordForm& form) {
80 if (use_native_backend() && backend_->RemoveLogin(form)) {
31 AddLoginToBackend(const scoped_ptr<PasswordStoreX::NativeBackend>& backend, const PasswordForm& form, PasswordStoreChangeList* changes) argument
64 UpdateLoginImpl( const PasswordForm& form) argument
76 RemoveLoginImpl( const PasswordForm& form) argument
134 GetLoginsImpl( const autofill::PasswordForm& form, AuthorizationPromptPolicy prompt_policy, const ConsumerCallbackRunner& callback_runner) argument
[all...]
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_tab_helper.cc189 void PrerenderTabHelper::PasswordSubmitted(const autofill::PasswordForm& form) { argument
192 prerender_manager->RecordLikelyLoginOnURL(form.origin);
194 if (form.password_value.empty())
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_manager_browsertest.cc411 autofill::PasswordForm form; local
412 form.scheme = autofill::PasswordForm::SCHEME_HTML;
413 form.origin = GURL("http://accounts.google.com/LoginAuth");
414 form.signon_realm = "http://accounts.google.com/";
415 form.username_value = base::ASCIIToUTF16("my_username");
416 form.password_value = base::ASCIIToUTF16("my_password");
417 form.ssl_valid = false;
418 form.preferred = true;
419 form.blacklisted_by_user = false;
426 password_store->AddLogin(form);
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Daria_util.js94 'form' : 'aria_role_form',
884 case 'form':
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dmultiple_client_passwords_sync_test.cc50 PasswordForm form = CreateTestPasswordForm(i); local
51 AddLogin(GetPasswordStore(i), form); local
H A Dpasswords_helper.cc81 void AddLogin(PasswordStore* store, const PasswordForm& form) { argument
84 store->AddLogin(form);
89 void UpdateLogin(PasswordStore* store, const PasswordForm& form) { argument
92 store->UpdateLogin(form);
106 void RemoveLogin(PasswordStore* store, const PasswordForm& form) { argument
109 store->RemoveLogin(form);
358 PasswordForm form; local
359 form.signon_realm = kFakeSignonRealm;
360 form.origin = GURL(base::StringPrintf(kIndexedFakeOrigin, index));
361 form
[all...]
H A Dsingle_client_passwords_sync_test.cc34 PasswordForm form = CreateTestPasswordForm(0); local
35 AddLogin(GetVerifierPasswordStore(), form); local
37 AddLogin(GetPasswordStore(0), form);

Completed in 401 milliseconds

123456789