Searched defs:field (Results 251 - 275 of 402) sorted by relevance

<<11121314151617

/external/chromium/chrome/browser/autofill/
H A Dform_structure.cc39 const char kXMLElementField[] = "field";
61 std::vector<webkit_glue::FormField>::const_iterator field; local
62 for (field = form.fields.begin();
63 field != form.fields.end(); field++) {
67 form_signature_field_names_.append(UTF16ToUTF8(field->name));
69 // Generate a unique name for this field by appending a counter to the name.
70 string16 unique_name = field->name +
72 fields_.push_back(new AutofillField(*field, unique_name));
99 AutofillField* field local
309 AutofillField* field = *iter; local
332 const AutofillField* field = cached_form.field(i); local
338 AutofillField* field = *iter; local
359 const AutofillField* field = this->field(i); local
476 const AutofillField* FormStructure::field(int index) const { function in class:FormStructure
527 FormFieldSet::const_iterator field; local
550 const AutofillField* field = fields_[index]; local
586 const AutofillField* field = fields_[i]; local
[all...]
/external/chromium/net/base/
H A Dx509_certificate_openssl.cc65 std::string field; local
66 if (!nxou::ParsePrincipalValueByIndex(name, index, &field))
68 fields->push_back(field);
/external/icu4c/i18n/
H A Dchnsecal.cpp168 int32_t ChineseCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const { argument
169 return LIMITS[field][limitType];
180 * YEAR field as the cycle and year-of-cycle, or the EXTENDED_YEAR
181 * field as the continuous year count, depending on which is newer.
199 * <p>Note: This method also reads the IS_LEAP_MONTH field to determine
225 * <p>Compute the ChineseCalendar-specific field IS_LEAP_MONTH.
264 * Override Calendar to add IS_LEAP_MONTH to the field resolution
276 * <p>Note: This method reads the IS_LEAP_MONTH field to determine
280 * by reading the IS_LEAP_MONTH field.
307 // Ignore IS_LEAP_MONTH field i
336 add(UCalendarDateFields field, int32_t amount, UErrorCode& status) argument
358 add(EDateFields field, int32_t amount, UErrorCode& status) argument
366 roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) argument
424 roll(EDateFields field, int32_t amount, UErrorCode& status) argument
[all...]
H A Ddtitvinf.cpp179 UCalendarDateFields field,
188 IntervalPatternIndex index = calendarFieldToIntervalIndex(field, status);
478 // 1 means having the same field, but with different length,
480 // -1 means having different field.
495 // clear skeleton field width
544 DateIntervalInfo::calendarFieldToIntervalIndex(UCalendarDateFields field, argument
550 switch ( field ) {
178 getIntervalPattern(const UnicodeString& skeleton, UCalendarDateFields field, UnicodeString& result, UErrorCode& status) const argument
H A Ducal.cpp427 UCalendarDateFields field,
434 ((Calendar*)cal)->add(field, amount, *status);
439 UCalendarDateFields field,
446 ((Calendar*)cal)->roll(field, amount, *status);
451 UCalendarDateFields field,
457 return ((Calendar*)cal)->get(field, *status);
462 UCalendarDateFields field,
466 ((Calendar*)cal)->set(field, value);
471 UCalendarDateFields field)
474 return ((Calendar*)cal)->isSet(field);
426 ucal_add( UCalendar* cal, UCalendarDateFields field, int32_t amount, UErrorCode* status) argument
438 ucal_roll( UCalendar* cal, UCalendarDateFields field, int32_t amount, UErrorCode* status) argument
450 ucal_get( const UCalendar* cal, UCalendarDateFields field, UErrorCode* status ) argument
461 ucal_set( UCalendar* cal, UCalendarDateFields field, int32_t value) argument
470 ucal_isSet( const UCalendar* cal, UCalendarDateFields field) argument
478 ucal_clearField( UCalendar* cal, UCalendarDateFields field) argument
493 ucal_getLimit( const UCalendar* cal, UCalendarDateFields field, UCalendarLimitType type, UErrorCode *status) argument
611 ucal_getFieldDifference(UCalendar* cal, UDate target, UCalendarDateFields field, UErrorCode* status ) argument
[all...]
H A Dudat.cpp84 udat_toCalendarDateField(UDateFormatField field) { argument
85 return gDateFieldMapping[field];
225 fp.setField(position->field);
/external/linux-tools-perf/util/
H A Dtrace-event.h69 struct format_field *field; member in struct:print_arg_field
84 struct print_arg *field; member in struct:print_arg_flags
90 struct print_arg *field; member in struct:print_arg_symbol
124 struct print_arg_field field; member in union:print_arg::__anon9193
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpsURLConnectionImpl.java251 public void addRequestProperty(String field, String newValue) { argument
252 delegate.addRequestProperty(field, newValue);
261 public long getHeaderFieldDate(String field, long defaultValue) { argument
262 return delegate.getHeaderFieldDate(field, defaultValue);
266 public int getHeaderFieldInt(String field, int defaultValue) { argument
267 return delegate.getHeaderFieldInt(field, defaultValue);
301 public String getRequestProperty(String field) { argument
302 return delegate.getRequestProperty(field);
341 public void setRequestProperty(String field, String newValue) { argument
342 delegate.setRequestProperty(field, newValu
[all...]
/external/openssl/crypto/bn/
H A Dbn_gf2m.c664 BIGNUM *field; local
669 if ((field = BN_CTX_get(ctx)) == NULL) goto err;
670 if (!BN_GF2m_arr2poly(p, field)) goto err;
672 ret = BN_GF2m_mod_inv(r, xx, field, ctx);
790 BIGNUM *field; local
797 if ((field = BN_CTX_get(ctx)) == NULL) goto err;
798 if (!BN_GF2m_arr2poly(p, field)) goto err;
800 ret = BN_GF2m_mod_div(r, yy, xx, field, ctx);
/external/openssl/crypto/ec/
H A Dec_asn1.c298 static int ec_asn1_group2fieldid(const EC_GROUP *group, X9_62_FIELDID *field) argument
303 if (group == NULL || field == NULL)
307 if (field->fieldType != NULL)
308 ASN1_OBJECT_free(field->fieldType);
309 if (field->p.other != NULL)
310 ASN1_TYPE_free(field->p.other);
313 /* set OID for the field */
314 if ((field->fieldType = OBJ_nid2obj(nid)) == NULL)
334 field->p.prime = BN_to_ASN1_INTEGER(tmp,NULL);
335 if (field
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DTextFormat.java113 for (final Map.Entry<FieldDescriptor, Object> field :
115 printField(field.getKey(), field.getValue(), generator);
120 public static void printField(final FieldDescriptor field, argument
125 printField(field, value, generator);
128 public static String printFieldToString(final FieldDescriptor field, argument
132 printField(field, value, text);
141 private static void printField(final FieldDescriptor field, argument
145 if (field.isRepeated()) {
146 // Repeated field
155 printSingleField(final FieldDescriptor field, final Object value, final TextGenerator generator) argument
197 printFieldValue(final FieldDescriptor field, final Object value, final TextGenerator generator) argument
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DTestUtil.java313 * Set every field of {@code message} to the values expected by
383 // Add a second one of each field.
843 // field. In addition to verifying this, we also verify that the first
931 * Set every field of {@code message} to a unique value.
948 // Add a second one of each field.
966 * Set every field of {@code message} to a unique value. Must correspond with
984 // Add a second one of each field.
1179 * Set every field of {@code message} to the values expected by
1249 // Add a second one of each field.
1757 // field
2807 newBuilderForField( Message.Builder parent, Descriptors.FieldDescriptor field) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.cc442 bool Parser::ParseMessageField(FieldDescriptorProto* field, argument
447 field->set_label(label);
449 RecordLocation(field, DescriptorPool::ErrorCollector::TYPE);
454 field->set_type(type);
456 field->set_type_name(type_name);
460 RecordLocation(field, DescriptorPool::ErrorCollector::NAME);
462 DO(ConsumeIdentifier(field->mutable_name(), "Expected field name."));
463 DO(Consume("=", "Missing field number."));
465 // Parse field numbe
505 ParseFieldOptions(FieldDescriptorProto* field) argument
521 ParseDefaultAssignment(FieldDescriptorProto* field) argument
812 FieldDescriptorProto* field; local
[all...]
/external/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.cc144 // Returns a Python literal giving the default value for a field.
145 // If the field specifies no explicit default value, we'll return
146 // the default default value for the field type (zero for numbers,
154 string StringifyDefaultValue(const FieldDescriptor& field) { argument
155 if (field.is_repeated()) {
159 switch (field.cpp_type()) {
161 return SimpleItoa(field.default_value_int32());
163 return SimpleItoa(field.default_value_uint32());
165 return SimpleItoa(field.default_value_int64());
167 return SimpleItoa(field
686 FixForeignFieldsInField(const Descriptor* containing_type, const FieldDescriptor& field, const string& python_dict_name) const argument
714 FieldReferencingExpression( const Descriptor* containing_type, const FieldDescriptor& field, const string& python_dict_name) const argument
838 PrintFieldDescriptor( const FieldDescriptor& field, bool is_extension) const argument
[all...]
/external/quake/quake/src/QW/server/
H A Dpr_edict.c44 char field[MAX_FIELD_LEN]; member in struct:__anon12401
236 eval_t *GetEdictFieldValue(edict_t *ed, char *field) argument
244 if (!strcmp(field, gefvCache[i].field))
251 def = ED_FindField (field);
253 if (strlen(field) < MAX_FIELD_LEN)
256 strcpy (gefvCache[rep].field, field);
372 padded to 20 field width
453 // if the value is still all 0, skip the field
[all...]
/external/quake/quake/src/WinQuake/
H A Dpr_edict.cpp58 char field[MAX_FIELD_LEN]; member in struct:__anon12645
241 eval_t *GetEdictFieldValue(edict_t *ed, const char *field) argument
249 if (!strcmp(field, gefvCache[i].field))
256 def = ED_FindField (field);
258 if (strlen(field) < MAX_FIELD_LEN)
261 strcpy (gefvCache[rep].field, field);
378 padded to 20 field width
460 // if the value is still all 0, skip the field
[all...]
/external/skia/legacy/src/animator/
H A DSkScript.cpp37 "expected field name", // kExpectedFieldName
375 const char* field = script; local
382 return evaluateDotParam(script, suppressed, field, fieldLength);
386 const char* field, size_t fieldLength) {
405 if ((success = handleMember(field, fieldLength, object)) == false)
413 (success = handleMemberFunction(field, fieldLength, object, params)) == false)
963 bool SkScriptEngine::handleMember(const char* field, size_t len, void* object) { argument
969 success = (*callBack->fMemberCallBack)(field, len, object, callBack->fUserStorage, &callbackResult);
983 bool SkScriptEngine::handleMemberFunction(const char* field, size_t len, void* object, SkTDArray<SkScriptValue>& params) { argument
989 success = (*callBack->fMemberFunctionCallBack)(field, le
385 evaluateDotParam(const char*& script, bool suppressed, const char* field, size_t fieldLength) argument
[all...]
/external/skia/src/animator/
H A DSkScript.cpp37 "expected field name", // kExpectedFieldName
375 const char* field = script; local
382 return evaluateDotParam(script, suppressed, field, fieldLength);
386 const char* field, size_t fieldLength) {
405 if ((success = handleMember(field, fieldLength, object)) == false)
413 (success = handleMemberFunction(field, fieldLength, object, params)) == false)
963 bool SkScriptEngine::handleMember(const char* field, size_t len, void* object) { argument
969 success = (*callBack->fMemberCallBack)(field, len, object, callBack->fUserStorage, &callbackResult);
983 bool SkScriptEngine::handleMemberFunction(const char* field, size_t len, void* object, SkTDArray<SkScriptValue>& params) { argument
989 success = (*callBack->fMemberFunctionCallBack)(field, le
385 evaluateDotParam(const char*& script, bool suppressed, const char* field, size_t fieldLength) argument
[all...]
/external/skia/src/sfnt/
H A DSkOTTable_glyf.h93 } field; member in union:SkOTTableGlyphData::Simple::Flags
133 } field; member in union:SkOTTableGlyphData::Composite::Component::Flags
/external/smack/src/org/jivesoftware/smackx/packet/
H A DVCard.java130 * Set generic VCard field.
132 * @param field value of field. Possible values: NICKNAME, PHOTO, BDAY, JABBERID, MAILER, TZ,
135 public String getField(String field) { argument
136 return otherSimpleFields.get(field);
140 * Set generic VCard field.
142 * @param value value of field
143 * @param field field to set. See {@link #getField(String)}
146 public void setField(String field, Strin argument
158 setField(String field, String value, boolean isUnescapable) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DConfigureForm.java28 * <p>Unlike the {@link Form}.setAnswer(XXX)} methods, which throw an exception if the field does not
29 * exist, all <b>ConfigureForm.setXXX</b> methods will create the field in the wrapped form
676 private String getFieldValue(ConfigureNodeFields field) argument
678 FormField formField = getField(field.getFieldName());
683 private Iterator<String> getFieldValues(ConfigureNodeFields field) argument
685 FormField formField = getField(field.getFieldName());
696 FormField field = new FormField(fieldName);
697 field.setType(type);
698 addField(field);
/external/v8/samples/
H A Dprocess.cc324 Handle<External> field = Handle<External>::Cast(obj->GetInternalField(0)); local
325 void* ptr = field->Value();
431 Handle<External> field = Handle<External>::Cast(obj->GetInternalField(0)); local
432 void* ptr = field->Value();
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DOutputHLSL.cpp1789 const TType &field = *fields[i].type; local
1791 string += " " + typeString(field) + " " + field.getFieldName() + arrayString(field) + ";\n";
1912 const TType &field = *fields[i].type; local
1914 structure += " " + typeString(field) + " " + field.getFieldName() + arrayString(field) + ";\n";
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
H A DFormManagerAndroid.cpp86 // label for each field is a costly operation and we can't spare the cycles if
367 void FormManager::HTMLFormControlElementToFormField(HTMLFormControlElement* element, ExtractMask extract_mask, FormField* field) { argument
368 DCHECK(field);
374 field->name = nameForAutofill(*element);
375 field->form_control_type = formControlType(*element);
383 field->max_length = input_element->maxLength();
384 field->is_autofilled = input_element->isAutofilled();
386 // Set option strings on the field is available.
391 field->option_strings = option_strings;
425 field
500 FormField* field = new FormField; local
875 FillFormField(HTMLFormControlElement* field, const FormField* data, bool is_initiating_node) argument
901 PreviewFormField(HTMLFormControlElement* field, const FormField* data, bool is_initiating_node) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 826 milliseconds

<<11121314151617