Searched refs:fields (Results 1 - 25 of 257) sorted by relevance

1234567891011

/external/webkit/Source/WebKit/chromium/src/
H A DWebPasswordFormData.cpp54 bool locateSpecificPasswords(PasswordFormFields* fields, argument
58 ASSERT(fields);
61 switch (fields->passwords.size()) {
64 *password = fields->passwords[0];
67 if (fields->passwords[0]->value() == fields->passwords[1]->value())
69 *password = fields->passwords[0];
72 *oldPassword = fields->passwords[0];
73 *password = fields->passwords[1];
77 if (fields
[all...]
H A DWebPasswordFormUtils.cpp39 // fields.
57 // Maximum number of password fields we will observe before throwing our
61 void findPasswordFormFields(HTMLFormElement* form, PasswordFormFields* fields) argument
64 ASSERT(fields);
67 // First, find the password fields and activated submit button
74 fields->submit = formElement;
83 if ((fields->passwords.size() < maxPasswords)
86 if (fields->passwords.isEmpty())
88 fields->passwords.append(inputElement);
92 if (!fields
[all...]
H A DWebPasswordFormUtils.h44 // Helper structure to locate username, passwords and submit fields.
53 PasswordFormFields* fields);
/external/chromium/webkit/glue/
H A Dform_data.cc19 fields(data.fields) {
31 fields == form.fields);
H A Dform_data.h35 // A vector of all the input fields in the form.
36 std::vector<FormField> fields; member in struct:webkit_glue::FormData
/external/clang/bindings/python/tests/cindex/
H A Dtest_type.py32 fields = list(teststruct.get_children())
33 assert all(x.kind == CursorKind.FIELD_DECL for x in fields)
34 assert all(x.translation_unit is not None for x in fields)
36 assert fields[0].spelling == 'a'
37 assert not fields[0].type.is_const_qualified()
38 assert fields[0].type.kind == TypeKind.INT
39 assert fields[0].type.get_canonical().kind == TypeKind.INT
41 assert fields[1].spelling == 'b'
42 assert not fields[1].type.is_const_qualified()
43 assert fields[
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DDynamicMessage.java48 private final FieldSet<FieldDescriptor> fields; field in class:DynamicMessage
55 private DynamicMessage(Descriptor type, FieldSet<FieldDescriptor> fields, argument
58 this.fields = fields;
151 return fields.getAllFields();
156 return fields.hasField(field);
161 Object result = fields.getField(field);
174 return fields.getRepeatedFieldCount(field);
179 return fields.getRepeatedField(field, index);
187 FieldSet<FieldDescriptor> fields) {
186 isInitialized(Descriptor type, FieldSet<FieldDescriptor> fields) argument
254 private FieldSet<FieldDescriptor> fields; field in class:DynamicMessage.Builder
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DClassEditor.java123 Field[] fields = targetClass.fields;
126 if (fields.length <= fieldsCount)
128 targetClass.fields = new ProgramField[fieldsCount+1];
129 System.arraycopy(fields, 0,
130 targetClass.fields, 0,
132 fields = targetClass.fields;
141 fields[targetClass.u2fieldsCount++] = field;
152 Field[] fields
[all...]
/external/icu4c/test/intltest/
H A Ducdtest.h12 char *fields[][2], int32_t fieldCount,
17 char *fields[][2], int32_t fieldCount,
44 char *fields[][2], int32_t fieldCount,
49 char *fields[][2], int32_t fieldCount,
/external/chromium/testing/gmock/src/
H A Dgmock-matchers.cc68 // Joins a vector of strings as if they are fields of a tuple; returns
70 string JoinAsTuple(const Strings& fields) { argument
71 switch (fields.size()) {
75 return fields[0];
77 string result = "(" + fields[0];
78 for (size_t i = 1; i < fields.size(); i++) {
80 result += fields[i];
/external/regex-re2/re2/
H A Dunicode.py129 number of fields. The first field is known to be the Unicode value
132 The reader calls doline(codes, fields) for each entry in the table.
140 nfields: the number of expected fields per line in that file.
148 raise InputError("invalid number of fields %d" % (nfields,))
172 # Split fields on ";", chop more white space.
173 # Must have the expected number of fields.
174 fields = [s.strip() for s in line.split(";")]
175 if len(fields) != nfields:
176 raise InputError("wrong number of fields %d %d - %s" %
177 (len(fields), nfield
[all...]
/external/v8/tools/
H A Dlogreader.js131 * @param {Array.<string>} fields Log record.
134 LogReader.prototype.dispatchLogRow_ = function(fields) {
136 var command = fields[0];
145 // Parse fields.
150 parsedFields.push(fields[1 + i]);
152 parsedFields.push(parser(fields[1 + i]));
155 parsedFields.push(fields.slice(1 + i));
178 var fields = this.csvParser_.parseLine(line);
179 this.dispatchLogRow_(fields);
/external/chromium/chrome/browser/autofill/
H A Dpersonal_data_manager_unittest.cc525 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);
572 form.fields.push_back(field);
575 form.fields.push_back(field);
578 form.fields
[all...]
H A Dform_structure_unittest.cc31 form.fields.begin();
32 iter != form.fields.end(); ++iter) {
54 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("username"),
60 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("password"),
66 form.fields.push_back(webkit_glue::FormField(string16(),
74 // All fields are counted.
81 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("username"),
87 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("password"),
93 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("state"),
99 form.fields
[all...]
/external/protobuf/src/google/protobuf/
H A Dreflection_ops.cc60 vector<const FieldDescriptor*> fields; local
61 from_reflection->ListFields(from, &fields);
62 for (int i = 0; i < fields.size(); i++) {
63 const FieldDescriptor* field = fields[i];
126 vector<const FieldDescriptor*> fields; local
127 reflection->ListFields(*message, &fields);
128 for (int i = 0; i < fields.size(); i++) {
129 reflection->ClearField(message, fields[i]);
139 // Check required fields of this message.
149 vector<const FieldDescriptor*> fields; local
179 vector<const FieldDescriptor*> fields; local
234 vector<const FieldDescriptor*> fields; local
[all...]
/external/mesa3d/src/glsl/
H A Dglsl_types.cpp63 memset(& fields, 0, sizeof(fields));
78 memset(& fields, 0, sizeof(fields));
81 glsl_type::glsl_type(const glsl_struct_field *fields, unsigned num_fields, argument
93 this->fields.structure = hieralloc_array(this->mem_ctx,
96 this->fields.structure[i].type = fields[i].type;
97 this->fields.structure[i].name = hieralloc_strdup(this->fields
417 get_record_instance(const glsl_struct_field *fields, unsigned num_fields, const char *name) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPHeaderNamesCache.java15 Field[] fields = SIPHeaderNames.class.getFields();
16 for (int i = 0; i < fields.length; i++) {
17 Field field = fields[i];
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DStructure.java54 * The fields of the structure. Each field consists of a pair: name-type.
56 private Field[] fields; field in class:Structure
69 fields = new Field[structure.fields.length];
70 for (int i = 0; i < fields.length; ++i) {
71 fields[i] = (Field) structure.fields[i].clone();
82 * the names from which the name of structure and its fields will be taken
88 * this exception occurs if the amount of fields, defined in the file, is negative
96 throw new BlenderFileException("The amount of fields o
[all...]
/external/icu4c/tools/gensprep/
H A Dgensprep.c274 char *fields[][2], int32_t fieldCount,
284 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16);
286 fprintf(stderr, "gensprep: error parsing NormalizationCorrections.txt mapping at %s\n", fields[0][0]);
290 s = fields[1][0];
297 u_versionFromString(version,fields[3][0] );
319 char *fields[4][2]; local
325 u_parseDelimitedFile(filename, ';', fields, 4, normalizationCorrectionsLineFn, NULL, pErrorCode);
337 char *fields[][2], int32_t fieldCount,
349 s = u_skipWhitespace(fields[0][0]);
353 length = fields[
273 normalizationCorrectionsLineFn(void *context, char *fields[][2], int32_t fieldCount, UErrorCode *pErrorCode) argument
336 strprepProfileLineFn(void *context, char *fields[][2], int32_t fieldCount, UErrorCode *pErrorCode) argument
424 char *fields[3][2]; local
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
H A DFieldSerializer.java67 List<Field> fields = new ArrayList<Field>();
71 Collections.addAll(fields, processingClass.getDeclaredFields());
75 List<SavedField> cachedFields = new ArrayList<SavedField>(fields.size());
76 for (Field field : fields) {
97 // ...well, as long as the order of fields is consistent from one
122 SavedField[] fields = savedFields.get(c);
131 for (SavedField savedField : fields) {
159 SavedField[] fields = savedFields.get(object.getClass());
160 if (fields == null)
164 for (SavedField savedField : fields) {
[all...]
/external/icu4c/test/cintltst/
H A Dreapits.c1014 UChar *fields[10]; local
1034 memset(fields, -1, sizeof(fields));
1036 uregex_split(re, buf, sizeof(buf)/2, &requiredCapacity, fields, 10, &status);
1042 TEST_ASSERT_STRING("first ", fields[0], TRUE);
1043 TEST_ASSERT_STRING(" second", fields[1], TRUE);
1044 TEST_ASSERT_STRING(" third", fields[2], TRUE);
1045 TEST_ASSERT(fields[3] == NULL);
1066 memset(fields, -1, sizeof(fields));
1120 UChar *fields[10]; local
1928 UText *fields[10]; local
2004 UText *fields[10]; local
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dclient_for_testing.py108 # and the /origin/ value, converted to ASCII lowercase, to /fields/.
125 # character, and /hostport/, to /fields/.
153 # 4.1 32. let /fields/ be a list of name-value pairs, initially empty.
154 fields = {}
174 # 4.1 38. append an entry to the /fields/ list that has the name
179 fields.setdefault(name, []).append(value)
181 return fields
308 fields = []
309 fields.append(_UPGRADE_HEADER)
310 fields
[all...]
/external/icu4c/tools/toolutil/
H A Dudbgutil.cpp288 const Field *fields = _udbg_enumFields(type); local
289 if(fields == NULL) {
292 return fields[field].str + fields[field].prefix;
302 const Field *fields = _udbg_enumFields(type); local
303 if(fields == NULL) {
306 return fields[field].num;
315 const Field *fields = _udbg_enumFields(type); local
317 if(!strcmp(value, fields[field].str + fields[fiel
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Daccount_creation_view.cc53 for (size_t i = 0; i < form.fields.size(); i++) {
54 std::string name = UTF16ToASCII(form.fields[i].name);
56 user_name = UTF16ToASCII(form.fields[i].value);
58 domain = UTF16ToASCII(form.fields[i].value);
62 // We don't have password here because all password fields were
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIClassDefVisitor.java23 Object visit (IFieldCollection fields, Object ctx); argument

Completed in 1239 milliseconds

1234567891011