| /external/chromium/chrome/browser/importer/ |
| nss_decryptor.cc | 143 webkit_glue::PasswordForm form; local 144 form.origin = GURL(lines[i]).ReplaceComponents(rep); 145 form.signon_realm = form.origin.GetOrigin().spec(); 146 form.blacklisted_by_user = true; 147 forms->push_back(form); 165 webkit_glue::PasswordForm form; local 195 form.origin = url.ReplaceComponents(rep); 196 form.signon_realm = form.origin.GetOrigin().spec() 252 webkit_glue::PasswordForm form; local 283 webkit_glue::PasswordForm form; local [all...] |
| /external/chromium/chrome/browser/password_manager/ |
| password_manager_unittest.cc | 105 PasswordForm form; local 106 form.origin = GURL("http://www.google.com/a/LoginAuth"); 107 form.action = GURL("http://www.google.com/a/Login"); 108 form.username_element = ASCIIToUTF16("Email"); 109 form.password_element = ASCIIToUTF16("Passwd"); 110 form.username_value = ASCIIToUTF16("google"); 111 form.password_value = ASCIIToUTF16("password"); 112 form.submit_element = ASCIIToUTF16("signIn"); 113 form.signon_realm = "http://www.google.com"; 114 return form; [all...] |
| password_store_win.cc | 20 // Subclass GetLoginsRequest in order to hold a copy of the form information 22 // other calls such as GetBlacklistLogins and GetAutofillableLogins, the form is 29 // We hold a copy of the |form| used in GetLoginsImpl as a pointer. If the 30 // form is not set (is NULL), then we are not a GetLogins request. 31 void SetLoginsRequestForm(const PasswordForm& form) { 32 form_.reset(new PasswordForm(form)); 34 PasswordForm* form() const { function in class:__anon2920::FormGetLoginsRequest 68 const PasswordForm& form); 106 const PasswordForm& form) { 120 std::wstring url = ASCIIToWide(form.origin.spec()) 154 PasswordForm* form = local [all...] |
| native_backend_kwallet_x.cc | 22 const char* NativeBackendKWallet::kKWalletFolder = "Chrome Form Data"; 122 bool NativeBackendKWallet::AddLogin(const PasswordForm& form) { 128 GetLoginsList(&forms, form.signon_realm, wallet_handle); 130 forms.push_back(new PasswordForm(form)); 131 bool ok = SetLoginsList(forms, form.signon_realm, wallet_handle); 137 bool NativeBackendKWallet::UpdateLogin(const PasswordForm& form) { 143 GetLoginsList(&forms, form.signon_realm, wallet_handle); 146 if (CompareForms(form, *forms[i], true)) 147 *forms[i] = form; 150 bool ok = SetLoginsList(forms, form.signon_realm, wallet_handle) 466 const PasswordForm* form = *it; local [all...] |
| /external/webkit/Source/WebCore/html/ |
| HTMLFormCollection.cpp | 39 inline CollectionCache* HTMLFormCollection::formCollectionInfo(HTMLFormElement* form) 41 if (!form->m_collectionCache) 42 form->m_collectionCache = adoptPtr(new CollectionCache); 43 return form->m_collectionCache.get(); 46 HTMLFormCollection::HTMLFormCollection(PassRefPtr<HTMLFormElement> form) 47 : HTMLCollection(form.get(), OtherCollection, formCollectionInfo(form.get())) 51 PassRefPtr<HTMLFormCollection> HTMLFormCollection::create(PassRefPtr<HTMLFormElement> form) 53 return adoptRef(new HTMLFormCollection(form)); 109 HTMLFormElement* form = static_cast<HTMLFormElement*>(base()) local [all...] |
| HTMLFormControlElement.h | 40 // and form-associated element implementations should use HTMLFormControlElement 46 HTMLFormElement* form() const { return FormAssociatedElement::form(); } function in class:WebCore::HTMLFormControlElement
|
| /external/webkit/Source/WebCore/html/parser/ |
| HTMLConstructionSite.h | 10 * 2. Redistributions in binary form must reproduce the above copyright 93 HTMLFormElement* form() const { return m_form.get(); } function in class:WebCore::HTMLConstructionSite
|
| /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/ |
| WebAutofill.h | 9 * * Redistributions in binary form must reproduce the above copyright 55 FormDataAndField(webkit_glue::FormData* form, webkit_glue::FormField* field) 56 : mForm(form) 61 webkit_glue::FormData* form() { return mForm.get(); } function in class:android::FormDataAndField 78 void fillFormInPage(int queryId, const webkit_glue::FormData& form);
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/ |
| ExportPropertiesPage.java | 54 * Creates the content in the form hosted in this page. 56 * @param managedForm the form hosted in this page. 61 ScrolledForm form = managedForm.getForm(); local 62 form.setText("Android Export Properties"); 63 form.setImage(AdtPlugin.getAndroidLogo()); 65 Composite body = form.getBody();
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/ |
| InstrumentationPage.java | 34 * Page for instrumentation settings, part of the AndroidManifest form editor. 57 * Creates the content in the form hosted in this page. 59 * @param managedForm the form hosted in this page. 64 ScrolledForm form = managedForm.getForm(); local 65 form.setText("Android Manifest Instrumentation"); 66 form.setImage(AdtPlugin.getAndroidLogo());
|
| PermissionPage.java | 34 * Page for permissions settings, part of the AndroidManifest form editor. 61 * Creates the content in the form hosted in this page. 63 * @param managedForm the form hosted in this page. 68 ScrolledForm form = managedForm.getForm(); local 69 form.setText("Android Manifest Permissions"); 70 form.setImage(AdtPlugin.getAndroidLogo());
|
| ApplicationPage.java | 39 * Page for "Application" settings, part of the AndroidManifest form editor. 70 * Creates the content in the form hosted in this page. 72 * @param managedForm the form hosted in this page. 77 ScrolledForm form = managedForm.getForm(); local 78 form.setText("Android Manifest Application"); 79 form.setImage(AdtPlugin.getAndroidLogo()); 83 Composite body = form.getBody();
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/ |
| ResourcesTreePage.java | 36 * Page for instrumentation settings, part of the AndroidManifest form editor. 55 * Creates the content in the form hosted in this page. 57 * @param managedForm the form hosted in this page. 62 ScrolledForm form = managedForm.getForm(); local 77 form.setText(String.format("Android Resources (%1$s)", configText)); 79 form.setText("Android Resources"); 82 form.setImage(AdtPlugin.getAndroidLogo());
|
| /libcore/luni/src/test/java/libcore/java/text/ |
| OldDecimalFormatTest.java | 134 DecimalFormat form = (DecimalFormat) DecimalFormat local 136 assertFalse(form.isParseBigDecimal()); 137 form.setParseBigDecimal(true); 138 assertTrue(form.isParseBigDecimal()); 141 Number result = form.parse("123.123"); 147 form.setParseBigDecimal(false); 148 assertFalse(form.isParseBigDecimal()); 151 Number result = form.parse("123.123"); 158 assertFalse(form.isParseIntegerOnly()); 202 DecimalFormat form = (DecimalFormat) DecimalFormat.getInstance(Locale.US) local 226 DecimalFormat form = new DecimalFormat("00.###E0"); local [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
| Form35c.java | 17 package com.android.dexgen.dex.code.form;
|
| Form3rc.java | 17 package com.android.dexgen.dex.code.form;
|
| /dalvik/dx/src/com/android/dx/dex/code/form/ |
| Form35c.java | 17 package com.android.dx.dex.code.form;
|
| /external/chromium/chrome/browser/autofill/ |
| autofill_download_unittest.cc | 126 FormData form; local 127 form.method = ASCIIToUTF16("post"); 128 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("username"), 134 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("First Name"), 140 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("Last Name"), 146 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("email"), 152 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("email2"), 158 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("password"), 164 form.fields.push_back(webkit_glue::FormField(string16(), 171 FormStructure *form_structure = new FormStructure(form); 370 FormData form; local [all...] |
| autofill_merge_unittest.cc | 158 // Create a test form. 159 webkit_glue::FormData form; local 160 form.name = ASCIIToUTF16("MyTestForm"); 161 form.method = ASCIIToUTF16("POST"); 162 form.origin = GURL("https://www.example.com/origin.html"); 163 form.action = GURL("https://www.example.com/action.html"); 164 form.user_submitted = true; 185 form.fields.push_back(field); 192 FormStructure form_structure(form); 209 // Clear the |form| to start a new profile [all...] |
| autofill_metrics_unittest.cc | 142 void AddSeenForm(FormStructure* form) { 143 form_structures()->push_back(form); 154 explicit TestFormStructure(const FormData& form) : FormStructure(form) {} 213 // Set up our form data. 214 FormData form; local 215 form.name = ASCIIToUTF16("TestForm"); 216 form.method = ASCIIToUTF16("POST"); 217 form.origin = GURL("http://example.com/form.html") 344 FormData form; local 456 FormData form; local 592 FormData form; local 628 FormData form; local 766 FormData form; local [all...] |
| personal_data_manager_unittest.cc | 521 FormData form; local 525 form.fields.push_back(field); 528 form.fields.push_back(field); 531 form.fields.push_back(field); 534 form.fields.push_back(field); 537 form.fields.push_back(field); 540 form.fields.push_back(field); 543 form.fields.push_back(field); 544 FormStructure form_structure(form); 568 FormData form; local 610 FormData form; local 642 FormData form; local [all...] |
| /external/llvm/lib/DebugInfo/ |
| DWARFDebugInfoEntry.cpp | 46 uint16_t form = AbbrevDecl->getFormByIndex(i); local 47 dumpAttribute(OS, cu, &offset, attr, form, indent); 71 uint16_t form, 80 const char *formString = FormEncodingString(form); 84 OS << format(" [DW_FORM_Unknown_%x]", form); 86 DWARFFormValue formValue(form); 114 uint16_t form; local 116 form = AbbrevDecl->getFormByIndex(i); 118 const uint8_t fixed_skip_size = fixed_form_sizes[form]; 126 switch (form) { 236 uint16_t form = AbbrevDecl->getFormByIndex(i); local [all...] |
| /external/openssl/apps/ |
| ec.c | 15 * 2. Redistributions in binary form must reproduce the above copyright 34 * 6. Redistributions of any form whatsoever must retain the following 80 * -conv_form arg - specifies the point encoding form 99 point_conversion_form_t form = POINT_CONVERSION_UNCOMPRESSED; local 170 form = POINT_CONVERSION_COMPRESSED; 172 form = POINT_CONVERSION_UNCOMPRESSED; 174 form = POINT_CONVERSION_HYBRID; 233 "point conversion form \n"); 333 EC_KEY_set_conv_form(eckey, form);
|
| /external/openssl/crypto/ec/ |
| eck_prn.c | 15 * 2. Redistributions in binary form must reproduce the above copyright 34 * 6. Redistributions of any form whatsoever must retain the following 197 point_conversion_form_t form; local 240 form = EC_GROUP_get_point_conversion_form(x); 243 form, NULL, ctx)) == NULL) 307 if (form == POINT_CONVERSION_COMPRESSED) 313 else if (form == POINT_CONVERSION_UNCOMPRESSED) 319 else /* form == POINT_CONVERSION_HYBRID */
|
| /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
| DecimalFormatTest.java | 55 DecimalFormat form = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local 56 assertFalse(form.isParseBigDecimal()); 57 form.setParseBigDecimal(true); 58 assertTrue(form.isParseBigDecimal()); 59 form.setParseBigDecimal(false); 60 assertFalse(form.isParseBigDecimal()); 63 assertFalse(form.isParseIntegerOnly()); 69 DecimalFormat form = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local 70 Number number = form.parse("23.1", new ParsePosition(0)); 76 form = (DecimalFormat) DecimalFormat.getInstance(Locale.US) 337 DecimalFormat form = (DecimalFormat) nform; local 361 DecimalFormat form = (DecimalFormat) nform; local 385 DecimalFormat form = new DecimalFormat("00.###E0"); local 431 DecimalFormat form = (DecimalFormat) nform; local 452 DecimalFormat form = (DecimalFormat) nform; local 607 DecimalFormat form = (DecimalFormat) nform; local 618 DecimalFormat form = (DecimalFormat) nform; local 629 DecimalFormat form = (DecimalFormat) nform; local 640 DecimalFormat form = (DecimalFormat) nform; local 653 DecimalFormat form = (DecimalFormat) nform; local 672 DecimalFormat form = (DecimalFormat) nform; local 1245 DecimalFormat form = (DecimalFormat) nform; local [all...] |