HomeSort by relevance Sort by last modified time
    Searched defs:form (Results 101 - 125 of 145) sorted by null

1 2 3 45 6

  /external/chromium/chrome/browser/password_manager/
password_store_default_unittest.cc 163 // Some non-ASCII password form data.
180 PasswordForm* form = CreatePasswordFormFromData(form_data[i]); local
181 expected_forms.push_back(form);
182 store->AddLogin(*form);
269 PasswordForm* form = CreatePasswordFormFromData(autofillable_data[i]); local
270 expected_autofillable.push_back(form);
271 wds_->AddLogin(*form);
275 PasswordForm* form = CreatePasswordFormFromData(blacklisted_data[i]); local
276 expected_blacklisted.push_back(form);
277 wds_->AddLogin(*form);
388 PasswordForm* form = CreatePasswordFormFromData(wds_data[i]); local
    [all...]
native_backend_gnome_x.cc 161 PasswordForm* form = new PasswordForm();
162 form->origin = GURL(string_attr_map["origin_url"]);
163 form->action = GURL(string_attr_map["action_url"]);
164 form->username_element = UTF8ToUTF16(string_attr_map["username_element"]);
165 form->username_value = UTF8ToUTF16(string_attr_map["username_value"]);
166 form->password_element = UTF8ToUTF16(string_attr_map["password_element"]);
167 form->submit_element = UTF8ToUTF16(string_attr_map["submit_element"]);
168 form->signon_realm = string_attr_map["signon_realm"];
169 form->ssl_valid = uint_attr_map["ssl_valid"];
170 form->preferred = uint_attr_map["preferred"]
192 PasswordForm* form = FormFromAttributes(attrs); local
    [all...]
password_store_mac.cc 207 // The time string is of the form "yyyyMMddHHmmss'Z", in UTC time.
233 PasswordForm* form) {
234 DCHECK(form);
268 &(form->password_value));
282 &(form->username_value));
297 form->ssl_valid = (protocol == kSecProtocolTypeHTTPS);
304 form->scheme = SchemeForAuthType(auth_type);
315 &form->date_created);
320 form->blacklisted_by_user = true;
330 if (form->password_value.empty() || EqualsASCII(form->password_value, " "))
384 PasswordForm* form = *i; local
498 PasswordForm* form = new PasswordForm(); local
605 PasswordForm* form = new PasswordForm(); local
    [all...]
password_store_mac_unittest.cc 53 // Basic HTML form.
57 // HTML form with path.
61 // Secure HTML form with path.
148 PasswordForm* form = new PasswordForm(); local
149 form->scheme = form_data.scheme;
150 form->preferred = form_data.preferred;
151 form->ssl_valid = form_data.ssl_valid;
152 form->date_created = base::Time::FromDoubleT(form_data.creation_time);
154 form->signon_realm = std::string(form_data.signon_realm);
156 form->origin = GURL(form_data.origin)
198 PasswordForm* form = forms[i]; local
280 PasswordForm form; local
319 PasswordForm form; local
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_password_unittest.cc 273 PasswordForm form; local
274 PasswordModelAssociator::CopyPassword(password, &form);
276 entries->push_back(form);
  /external/elfutils/libdw/
libdw.h 94 unsigned int form; member in struct:__anon5649
225 /* Check whether given attribute has specific form. */
231 /* Return form code of given attribute. */
449 return attr == NULL ? 0 : attr->form;
  /external/openssl/apps/
ecparam.c 15 * 2. Redistributions in binary form must reproduce the above copyright
34 * 6. Redistributions of any form whatsoever must retain the following
95 * -text - print the ec parameters in text form
100 * -conv_form arg - specifies the point conversion form
122 point_conversion_form_t form = POINT_CONVERSION_UNCOMPRESSED; local
196 form = POINT_CONVERSION_COMPRESSED;
198 form = POINT_CONVERSION_UNCOMPRESSED;
200 form = POINT_CONVERSION_HYBRID;
263 "parameters in text form\n");
273 "point conversion form \n")
    [all...]
  /external/openssl/crypto/ec/
ec2_smpl.c 26 * 2. Redistributions in binary form must reproduce the above copyright
45 * 6. Redistributions of any form whatsoever must retain the following
498 size_t ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form,
507 if ((form != POINT_CONVERSION_COMPRESSED)
508 && (form != POINT_CONVERSION_UNCOMPRESSED)
509 && (form != POINT_CONVERSION_HYBRID))
533 ret = (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2*field_len;
560 buf[0] = form;
561 if ((form != POINT_CONVERSION_UNCOMPRESSED) && !BN_is_zero(x))
588 if (form == POINT_CONVERSION_UNCOMPRESSED || form == POINT_CONVERSION_HYBRID
633 point_conversion_form_t form; local
    [all...]
ecp_smpl.c 16 * 2. Redistributions in binary form must reproduce the above copyright
35 * 6. Redistributions of any form whatsoever must retain the following
766 size_t ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form,
775 if ((form != POINT_CONVERSION_COMPRESSED)
776 && (form != POINT_CONVERSION_UNCOMPRESSED)
777 && (form != POINT_CONVERSION_HYBRID))
801 ret = (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2*field_len;
827 if ((form == POINT_CONVERSION_COMPRESSED || form == POINT_CONVERSION_HYBRID) && BN_is_odd(y))
828 buf[0] = form + 1
895 point_conversion_form_t form; local
    [all...]
ec_asn1.c 15 * 2. Redistributions in binary form must reproduce the above copyright
34 * 6. Redistributions of any form whatsoever must retain the following
572 point_conversion_form_t form; local
616 form = EC_GROUP_get_point_conversion_form(group);
618 len = EC_POINT_point2oct(group, point, form, NULL, len, NULL);
629 if (!EC_POINT_point2oct(group, point, form, buffer, len, NULL))
933 /* set the point conversion form */
1185 /* save the point conversion form */
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxvideo.c 541 int form; local
556 form=GetCyberIDAttr(CYBRIDATTR_PIXFMT,SDL_Visual);
562 vformat->Rmask = MakeBitMask(this,0,form,&this->hidden->depth);
563 vformat->Gmask = MakeBitMask(this,1,form,&this->hidden->depth);
564 vformat->Bmask = MakeBitMask(this,2,form,&this->hidden->depth);
713 Uint32 form; local
723 form=GetCyberIDAttr(CYBRIDATTR_PIXFMT,SDL_Visual);
741 MakeBitMask(this,0,form,&bpp), MakeBitMask(this,1,form,&bpp), MakeBitMask(this,2,form,&bpp), 0)
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.cpp 10 * 2. Redistributions in binary form must reproduce the above copyright
158 void HTMLConstructionSite::setForm(HTMLFormElement* form)
162 m_form = form;
280 RefPtr<HTMLFormElement> form = static_pointer_cast<HTMLFormElement>(element.release()); local
281 form->setDemoted(isDemoted);
282 m_openElements.push(attachToCurrent(form.release()));
377 // have to pass the current form element. We should rework form association
379 RefPtr<Element> element = HTMLElementFactory::createHTMLElement(tagName, currentNode()->document(), form(), true);
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
WebAutofill.cpp 9 * * Redistributions in binary form must reproduce the above copyright
167 webkit_glue::FormData* form = new webkit_glue::FormData; local
168 mFormManager->FindFormWithFormControlElement(formFieldElement, FormManager::REQUIRE_AUTOCOMPLETE, form);
169 mQueryMap[mQueryId] = new FormDataAndField(form, formField);
171 bool suggestions = mAutofillManager->OnQueryFormFieldAutoFillWrapper(*form, *formField);
176 // Tell Java no autofill suggestions for this form.
187 // Store the unique ID for the query and inform java that autofill suggestions for this form are available.
200 webkit_glue::FormData* form = mQueryMap[queryId]->form();
202 ASSERT(form);
    [all...]
FormManagerAndroid.cpp 10 * * Redistributions in binary form must reproduce the above copyright
90 // device experience where form filling can be time consuming and frustrating.
93 // The maximum number of form fields we are willing to parse, due to
97 // The maximum length allowed for form data.
309 // Contents of preceding <p> tag or preceding text element found in the form.
340 // Returns the form's |name| attribute if non-empty; otherwise the form's |id|
342 const string16 GetFormIdentifier(const HTMLFormElement& form) {
343 string16 identifier = WTFStringToString16(form.name());
345 identifier = WTFStringToString16(form.getIdAttribute())
618 FormData form; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewPage.java 42 * Page for overview settings, part of the AndroidManifest form editor.
72 * Creates the content in the form hosted in this page.
74 * @param managedForm the form hosted in this page.
79 ScrolledForm form = managedForm.getForm(); local
80 form.setText("Android Manifest");
81 form.setImage(AdtPlugin.getAndroidLogo());
83 Composite body = form.getBody();
  /external/chromium/chrome/browser/autofill/
form_structure.cc 38 const char kXMLElementForm[] = "form";
41 // The number of fillable fields necessary for a form to be fillable.
52 FormStructure::FormStructure(const FormData& form)
53 : form_name_(form.name),
54 source_url_(form.origin),
55 target_url_(form.action),
60 // Copy the form fields.
62 for (field = form.fields.begin();
63 field != form.fields.end(); field++) {
64 // Add all supported form fields (including with empty names) to th
229 FormStructure* form = *iter; local
    [all...]
autofill_manager_unittest.cc 147 // Populates |form| with data corresponding to a simple address form.
148 // Note that this actually appends fields to the form data, which can be useful
150 void CreateTestAddressFormData(FormData* form) {
151 form->name = ASCIIToUTF16("MyForm");
152 form->method = ASCIIToUTF16("POST");
153 form->origin = GURL("http://myform.com/form.html");
154 form->action = GURL("http://myform.com/submit.html");
155 form->user_submitted = true
605 FormData form; local
647 FormData form; local
682 FormData form; local
711 FormData form; local
757 FormData form; local
774 FormData form; local
841 FormData form; local
884 FormData form; local
920 FormData form; local
963 FormData form; local
1037 FormData form; local
1086 FormData form; local
1160 FormData form; local
1228 FormData form; local
1277 FormData form; local
1315 FormData form; local
1358 FormData form; local
1401 FormData form; local
1448 FormData form; local
1498 FormData form; local
1518 FormData form; local
1542 FormData form; local
1568 FormData form; local
1593 FormData form; local
1619 FormData form; local
1640 FormData form; local
1679 FormData form; local
1751 FormData form; local
1782 FormData form; local
1847 FormData form; local
1918 FormData form; local
1950 FormData form; local
1979 FormData form; local
2005 FormData form; local
    [all...]
  /external/icu4c/test/intltest/
tchcfmt.cpp 46 ChoiceFormat* form = new ChoiceFormat(limits, monthNames, 7); local
61 res1 = form->format(i, str, fpos, status );
63 delete form;
66 //form->parse(res1, f, parse_pos);
75 if(*formnew == *form){
78 if(!(*form == *formequal)){
87 gotLimits=(double*)form->getLimits(count);
99 gotFormats=(UnicodeString*)form->getFormats(count);
110 delete form;
tmsgfmt.cpp 70 DecimalFormat *form = 0; local
127 // form = (DecimalFormat*)NumberFormat::createCurrencyInstance(locale[i], success);
128 form = (DecimalFormat*)NumberFormat::createInstance(locale[i], success);
137 form->format(myNumber, buffer, pos);
140 form->parse(buffer, result, parsePos);
146 delete form;
292 MessageFormat *form = 0; local
295 form = new MessageFormat(testCases[i], Locale::getUS(), success);
301 if (form->toPattern(buffer) != testResultPatterns[i]) {
303 //form->toPattern(buffer)
360 MessageFormat *form = 0; local
458 MessageFormat* form = new MessageFormat( local
492 MessageFormat* form = new MessageFormat("The disk \\"{1}\\" contains {0}.", err); local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuth.java 42 public static final String FORM_ENCODED = "application/x-www-form-urlencoded";
88 * Construct a form-urlencoded document containing the given sequence of
100 * Write a form-urlencoded document into the given stream, containing the
122 /** Parse a form-urlencoded document. */
123 public static List<Parameter> decodeForm(String form) {
125 if (!isEmpty(form)) {
126 for (String nvp : form.split("\\&")) {
289 String form = formEncode(parameters); local
290 if (form == null || form.length() <= 0)
    [all...]
  /external/chromium/chrome/browser/importer/
ie_importer.cc 287 webkit_glue::PasswordForm form; local
293 form.origin = url.ReplaceComponents(rp);
294 form.username_value = ac_list[i].data[0];
295 form.password_value = ac_list[i].data[1];
296 form.signon_realm = url.GetOrigin().spec();
301 // of the doubt and DONT auto-fill it unless the form appears under
303 form.ssl_valid = url.SchemeIsSecure();
313 if (ac_list[list_it].data[item_it] == form.username_value) {
314 form.username_element = ac_list[list_it].key;
319 bridge_->SetPasswordForm(form);
    [all...]
  /external/harfbuzz/src/
harfbuzz-indic.cpp 51 enum Form {
903 static inline Form form(unsigned short uc) { function
911 return (Form)indicForms[uc-0x900];
950 Form form; member in struct:IndicOrdering
965 { (Form)0, None }
977 { (Form)0, None }
987 { (Form)0, None }
994 { (Form)0, None
    [all...]
  /external/srec/srec/EventLog/src/
riff.c 332 char form[4], tag[4]; local
355 if (fread(form, 1, 4, f) != 4) break;
360 if (strncmp(form, "RIFF", 4))
366 //GS_SetResult(res,"RIFF form type not found",GS_STATIC);
379 //if(feof(f)) GS_SetResult(res,"RIFF form type not found",GS_STATIC);
412 if (fread(form, 1, 4, f) != 4) break;
417 if (strncmp(form, "LIST", 4))
423 //GS_SetResult(res,"RIFF form type not found",GS_STATIC);
437 //if(feof(f)) GS_SetResult(res,"RIFF form type not found",GS_STATIC);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesf.h 46 # include <form.h>
296 // Return the index of the field in the field array of a form
297 // or -1 if the field is not associated to a form
329 void _nc_xx_frm_init(FORM *);
330 void _nc_xx_frm_term(FORM *);
331 void _nc_xx_fld_init(FORM *);
332 void _nc_xx_fld_term(FORM *);
337 // The class representing a form, wrapping the lowlevel FORM struct
343 FORM* form; // the lowlevel structur member in class:NCursesForm
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 54 unsigned Form, uint64_t Integer) {
55 if (!Form) Form = DIEInteger::BestForm(false, Integer);
58 Die->addValue(Attribute, Form, Value);
64 unsigned Form, int64_t Integer) {
65 if (!Form) Form = DIEInteger::BestForm(true, Integer);
67 Die->addValue(Attribute, Form, Value);
72 void CompileUnit::addString(DIE *Die, unsigned Attribute, unsigned Form,
75 Die->addValue(Attribute, Form, Value)
510 unsigned form = 0; local
    [all...]

Completed in 1382 milliseconds

1 2 3 45 6