/external/icu4c/data/unidata/norm2/ |
uts46.txt | [all...] |
/external/chromium/chrome/browser/password_manager/ |
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...] |
password_store_mac_internal.h | 27 // |form|. Caller is responsible for deleting the returned forms. 32 // |form|. Differs from PasswordsFillingForm in that the username must match. 37 // Returns the PasswordForm for the Keychain entry that matches |form| on all 40 // Caller is responsible for deleting the returned form. 54 // Creates a new keychain entry from |form|, or updates the password of an 57 bool AddPassword(const webkit_glue::PasswordForm& form); 59 // Removes the keychain password matching |form| if any. Returns true if a 61 bool RemovePassword(const webkit_glue::PasswordForm& form); 75 // given form, and returns it (or NULL if no match is found). The caller is 78 const webkit_glue::PasswordForm& form); [all...] |
/external/apache-http/src/org/apache/commons/codec/net/ |
BCodec.java | 91 * Encodes a string into its Base64 form using the specified charset. Unsafe characters are escaped. 94 * string to convert to Base64 form 114 * Encodes a string into its Base64 form using the default charset. Unsafe characters are escaped. 117 * string to convert to Base64 form 131 * Decodes a Base64 string into its original form. Escaped characters are converted back to their original 135 * Base64 string to convert into its original form 154 * Encodes an object into its Base64 form using the default charset. Unsafe characters are escaped. 157 * object to convert to Base64 form 176 * Decodes a Base64 object into its original form. Escaped characters are converted back to their original 180 * Base64 object to convert into its original form [all...] |
/external/webkit/Tools/RebaselineQueueServer/templates/ |
builder-queue-edit.html | 2 <html id="add-form"> 12 <form method="POST" id="form-template" style="display: none"> 30 </form> 120 var form = document.getElementById('form-template').cloneNode(true); 121 form.action = '/builder/' + builderName + '/queue/' + formAction; 122 form.style.display = ''; 123 document.body.appendChild(form); 125 var testsTable = form.querySelector('.test-table') [all...] |
/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...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DIE.h | 36 /// Form - Dwarf form code. 38 uint16_t Form; 40 DIEAbbrevData(uint16_t A, uint16_t F) : Attribute(A), Form(F) {} 44 uint16_t getForm() const { return Form; } 85 void AddAttribute(uint16_t Attribute, uint16_t Form) { 86 Data.push_back(DIEAbbrevData(Attribute, Form)); 91 void AddFirstAttribute(uint16_t Attribute, uint16_t Form) { 92 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form)); 161 void addValue(unsigned Attribute, unsigned Form, DIEValue *Value) [all...] |
/libcore/luni/src/main/java/java/sql/ |
SQLInput.java | 49 * Returns the next attribute in the stream in the form of a {@code String}. 59 * Returns the next attribute in the stream in the form of a {@code boolean} 70 * Returns the next attribute in the stream in the form of a {@code byte}. 80 * Returns the next attribute in the stream in the form of a {@code short}. 90 * Returns the next attribute in the stream in the form of an {@code int}. 100 * Returns the next attribute in the stream in the form of a {@code long}. 110 * Returns the next attribute in the stream in the form of a {@code float}. 120 * Returns the next attribute in the stream in the form of a {@code double}. 130 * Returns the next attribute in the stream in the form of a {@code 142 * Returns the next attribute in the stream in the form of a byte array [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/ |
X509CertPathImpl.java | 65 * - PKCS #7 SignedData object provided in the form of 118 * list of certificates and their encoded form of specified type. 120 * @param type - the type of the encoded form on the base of which 122 * @param encoding - encoded form of certification path. 138 * encoded form provided via input stream. 146 throw new CertificateException("Incorrect encoded form: " + e.getMessage()); 152 * input stream. The format of provided encoded form is specified by 154 * @throws CertificateException if specified encoding form is not supported, 164 // generate the object from PkiPath encoded form 167 // generate the object from PKCS #7 encoded form [all...] |
/external/chromium/chrome/browser/autofill/ |
autofill_manager.cc | 101 // Precondition: |form| should be the cached version of the form that is to be 102 // autofilled, and |field| should be the field in the |form| that corresponds to 106 // gives the bounds of logical section within |form| that includes |field|. 112 void FindSectionBounds(const FormStructure& form, 120 // By default, the relevant section is the entire form. 122 *section_end = form.field_count(); 126 for (size_t i = 0; i < form.field_count(); ++i) { 127 const AutofillField* current_field = form.field(i); 183 // Precondition: |form_structure| and |form| should correspond to the sam [all...] |
/external/chromium/chrome/browser/resources/net_internals/ |
hstsview.js | 25 var form = document.getElementById(formId); 26 form.addEventListener('submit', this.onSubmitQuery_.bind(this), false); 27 form = document.getElementById(addFormId); 28 form.addEventListener('submit', this.onSubmitAdd_.bind(this), false); 29 form = document.getElementById(deleteFormId); 30 form.addEventListener('submit', this.onSubmitDelete_.bind(this), false);
|
/external/chromium/chrome/browser/resources/options/ |
autofill_edit_address_overlay.html | 14 <input type="text" class="autofill-form" id="company-name"> 20 <input type="text" class="autofill-form" id="addr-line-1"> 26 <input type="text" class="autofill-form" id="addr-line-2"> 45 <input type="text" class="autofill-form" id="city"> 48 <input type="text" class="autofill-form" id="state"> 51 <input type="text" class="autofill-form" id="postal-code">
|
/external/chromium/chrome/browser/resources/ |
safe_browsing_multiple_threat_block.html | 81 function agreed(form) { 82 form.continue_button.disabled = !form.continue_button.disabled; 133 <form class="submission"> 134 <input name="checky" id="checky" type="checkbox" onclick="agreed(this.form)"> <label for="checky" i18n-content="confirm_text"></label> 137 </form>
|
/external/webkit/Source/WebKit/chromium/src/ |
WebFormElement.cpp | 10 * * Redistributions in binary form must reproduce the above 89 const HTMLFormElement* form = constUnwrap<HTMLFormElement>(); local 93 // we don't call form->associatedElements() multiple times. 94 for (size_t i = 0; i < form->associatedElements().size(); i++) { 95 if (!form->associatedElements()[i]->isFormControlElement()) 97 HTMLFormControlElement* element = static_cast<HTMLFormControlElement*>(form->associatedElements()[i]);
|
/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. 58 * Creates the content in the form hosted in this page. 60 * @param managedForm the form hosted in this page. 65 ScrolledForm form = managedForm.getForm(); local 66 form.setText("Android Manifest Instrumentation"); 67 form.setImage(AdtPlugin.getAndroidLogo());
|
PermissionPage.java | 34 * Page for permissions settings, part of the AndroidManifest form editor. 62 * Creates the content in the form hosted in this page. 64 * @param managedForm the form hosted in this page. 69 ScrolledForm form = managedForm.getForm(); local 70 form.setText("Android Manifest Permissions"); 71 form.setImage(AdtPlugin.getAndroidLogo());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
SectionHelper.java | 44 * Helper for the AndroidManifest form editor. 50 * UI as used by the form editor for the AndroidManifest. 59 * methods for creating typically UI (label and text, form text.) 70 * @param toolkit Form Toolkit 84 * @param toolkit Form Toolkit. 102 * @param toolkit Form Toolkit 115 * @param toolkit Form Toolkit 131 * @param toolkit Form Toolkit 148 * @param toolkit Form Toolkit 149 * @param isHtml True if the form text will contain HTML that must be interpreted a [all...] |
/bionic/libc/inet/ |
ether_ntoa.c | 10 * * Redistributions in binary form must reproduce the above copyright 34 * Convert Ethernet address to standard hex-digits-and-colons printable form. 48 * Convert Ethernet address to standard hex-digits-and-colons printable form.
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/templates/ |
edit_avatar.html | 24 <form method="POST" action="/edit_avatar" enctype="multipart/form-data"> 40 </form>
|
/external/chromium/chrome/browser/ |
autocomplete_history_manager.h | 22 // Per-tab Autocomplete history manager. Handles receiving form data from the 23 // renderer and the storing and retrieving of form data through WebDataService. 47 void OnFormSubmitted(const webkit_glue::FormData& form);
|
/external/chromium/chrome/browser/sync/resources/ |
gaia_login.js | 30 var form = document.getElementById("gaia-login-form"); 31 if (form.email && (form.email.value == null || form.email.value == "")) { 32 form.email.focus(); 33 } else if (form.passwd) { 34 form.passwd.focus(); 44 var f = document.getElementById("gaia-login-form"); 150 var loginForm = document.getElementById("gaia-login-form"); [all...] |
setting_up.html | 14 form { 57 <form id="settingUpForm" onSubmit="return false;"> 66 </form>
|
/external/webkit/LayoutTests/fast/encoding/ |
char-encoding.html | 11 <form id="form" method="GET" target="subframe"><input type="text" id="text" name="text"></form>
|
/external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/ |
build-generated-files.sh | 17 # Do a little dance to get the path into 8.3 form to make it safe for gnu make 26 # Do a little dance to get the path into 8.3 form to make it safe for gnu make 34 # Do a little dance to get the path into 8.3 form to make it safe for gnu make
|