Searched defs:field (Results 151 - 175 of 695) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Daddress_data.cc73 bool AddressData::IsFieldEmpty(AddressField field) const {
74 assert(field >= 0);
75 assert(static_cast<size_t>(field) < arraysize(kStringField));
76 if (kStringField[field] != NULL) {
77 const std::string& value = GetFieldValue(field);
80 const std::vector<std::string>& value = GetRepeatedFieldValue(field);
88 AddressField field) const {
89 assert(field >= 0);
90 assert(static_cast<size_t>(field) < arraysize(kStringField));
91 assert(kStringField[field] !
95 SetFieldValue(AddressField field, const std::string& value) argument
122 IsRepeatedFieldValue(AddressField field) argument
[all...]
H A Daddress_formatter.cc167 // (1) Not preceding an empty field.
171 // (2) Not following a removed field.
190 AddressField field = element_it->GetField(); local
191 if (field == STREET_ADDRESS) {
192 // The field "street address" represents the street address lines of an
194 if (!address_data.IsFieldEmpty(field)) {
205 line.append(address_data.GetFieldValue(field));
H A Daddress_ui.cc40 AddressField field,
44 switch (field) {
108 // For avoiding showing an input field twice, when the field is displayed
131 component.field = format_it->GetField();
39 GetLabelForField(const Localization& localization, AddressField field, int admin_area_name_message_id, int postal_code_name_message_id) argument
H A Dlocalization.cc66 AddressField field,
70 if (field == POSTAL_CODE) {
102 if (AddressData::IsRepeatedFieldValue(field)) {
103 std::vector<std::string> values = address.GetRepeatedFieldValue(field);
107 parameters.push_back(address.GetFieldValue(field));
65 GetErrorMessage(const AddressData& address, AddressField field, AddressProblem problem, bool enable_examples, bool enable_links) const argument
H A Dlookup_key.cc92 AddressField field = kHierarchy[i]; local
93 const std::string& value = address.GetFieldValue(field);
97 nodes_.insert(std::make_pair(field, value));
125 AddressField field = kHierarchy[i];
126 std::map<AddressField, std::string>::const_iterator it = nodes_.find(field);
H A Dregion_data_constants.cc1415 // and not only the format field, but it doesn't really matter when just
1422 AddressField field = LookupKey::kHierarchy[depth]; local
1423 // Check to see if a particular field in the hierarchy is used by
1425 if (std::find(fields.begin(), fields.end(), FormatElement(field)) ==
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Dvalidation_task_test.cc74 AddressField field = kFields[i]; local
77 filter_.insert(std::make_pair(field, problem));
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DAddressField.java61 private AddressField(char field) { argument
62 mField = field;
69 static AddressField of(char field) { argument
70 return FIELD_MAPPING.get(field);
74 * Gets the field's identification character, as used in the metadata.
82 /** Returns default width type of the address field. */
/external/chromium_org/third_party/libxslt/libxslt/
H A Dextra.c177 long int field; local
204 field = strtol(digits, NULL, 10);
205 gmt_tm.tm_year = field - 1900;
209 field = strtol(digits, NULL, 10);
210 gmt_tm.tm_mon = field - 1;
214 field = strtol(digits, NULL, 10);
215 gmt_tm.tm_mday = field;
219 field = strtol(digits, NULL, 10);
220 gmt_tm.tm_hour = field;
224 field
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dreflection_ops.cc67 const FieldDescriptor* field = fields[i]; local
69 if (field->is_repeated()) {
70 int count = from_reflection->FieldSize(from, field);
72 switch (field->cpp_type()) {
75 to_reflection->Add##METHOD(to, field, \
76 from_reflection->GetRepeated##METHOD(from, field, j)); \
91 to_reflection->AddMessage(to, field)->MergeFrom(
92 from_reflection->GetRepeatedMessage(from, field, j));
97 switch (field->cpp_type()) {
100 to_reflection->Set##METHOD(to, field, \
156 const FieldDescriptor* field = fields[i]; local
187 const FieldDescriptor* field = fields[i]; local
202 SubMessagePrefix(const string& prefix, const FieldDescriptor* field, int index) argument
242 const FieldDescriptor* field = fields[i]; local
[all...]
H A Dwire_format.h78 // Given a field return its WireType
80 const FieldDescriptor* field);
131 // This is different from MakeTag(field->number(), field->type()) in the case
133 static uint32 MakeTag(const FieldDescriptor* field);
135 // Parse a single field. The input should start out positioned immidately
139 const FieldDescriptor* field, // May be NULL for unknown
143 // Serialize a single field.
145 const FieldDescriptor* field, // Cannot be NULL
149 // Compute size of a single field
199 WireTypeForField( const FieldDescriptor* field) argument
217 MakeTag(const FieldDescriptor* field) argument
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateBase.h53 // !!! make field part of a union with fFieldInfo, or fValues, something known later?
54 SkString field; // temporary; once target is known, this is reset member in class:SkAnimateBase
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_gasp.h54 } field; member in union:SkOTTableGridAndScanProcedure::GaspRange::behavior
/external/clang/test/CodeGenCXX/
H A Dskip-vtable-pointer-initialization.cpp49 Field field; member in struct:Test3::A
75 Field field; member in struct:Test4::A
99 Field field; member in struct:Test5::A
127 Field field; member in struct:Test6::A
153 Field field; member in struct:Test7::A
179 Field field; member in struct:Test8::A
/external/clang/test/Modules/
H A Dmodule-private.cpp30 vs.field = 0; // expected-error{{no member named 'field' in 'VisibleStruct'}}
95 int field; member in struct:LikeVisibleStruct
/external/clang/test/SemaCXX/
H A Dwarn-shadow.cpp32 int field; // expected-note {{previous declaration}} member in class:A
35 char *field; // expected-warning {{declaration shadows a field of 'A'}} local
43 static int field; member in class:B
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedField.java29 * Representation of a field of a class, of any sort.
33 /** {@code non-null;} constant for the field */
34 private final CstFieldRef field; field in class:EncodedField
39 * @param field {@code non-null;} constant for the field
42 public EncodedField(CstFieldRef field, int accessFlags) { argument
45 if (field == null) {
46 throw new NullPointerException("field == null");
54 this.field = field;
[all...]
/external/elfutils/0.153/libcpu/
H A Di386_parse.h77 struct known_bitfield *field; member in union:YYSTYPE
/external/emma/core/java12/com/vladium/jcd/cls/
H A DFieldCollection.java44 final Field_info field = (Field_info) m_fields.get (f);
46 if (field.getName (cls).equals (name))
108 public int add (final Field_info field) argument
111 m_fields.add (field);
116 public Field_info set (final int offset, final Field_info field) argument
118 return (Field_info) m_fields.set (offset, field);
/external/guava/guava/src/com/google/common/collect/
H A DSerialization.java199 Field field = clazz.getDeclaredField(fieldName);
200 return new FieldSetter<T>(field);
208 private final Field field; field in class:Serialization.FieldSetter
210 private FieldSetter(Field field) { argument
211 this.field = field;
212 field.setAccessible(true);
217 field.set(instance, value);
225 field.set(instance, value);
/external/icu/icu4c/source/i18n/
H A Dcecal.cpp82 CECalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const argument
84 return LIMITS[field][limitType];
/external/icu/icu4c/source/i18n/unicode/
H A Dfieldpos.h48 * field within the formatted output with two indices: the index
49 * of the first character of the field and the index of the last
50 * character of the field.
57 * formatted output (such as the position of a field).
109 * DONT_CARE may be specified as the field to indicate that the
110 * caller doesn't need to specify a field. Do not subclass.
115 * Creates a FieldPosition object with a non-specified field.
122 * Creates a FieldPosition object for the given field. Fields are
132 FieldPosition(int32_t field) argument
133 : UObject(), fField(field), fBeginInde
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Ddbgutil.cpp25 static const UnicodeString& _fieldString(UDebugEnumType type, int32_t field, UnicodeString& fillin) { argument
26 const char *str = udbg_enumName(type, field);
77 U_TOOLUTIL_API const UnicodeString& U_EXPORT2 udbg_enumString(UDebugEnumType type, int32_t field) { argument
88 //fprintf(stderr, "enumString [%d,%d]: typecount %d, fieldcount %d\n", type,field,UDBG_ENUM_COUNT,count);
90 if(field<0 || field > count) {
92 } else { return strs[type][field];
/external/javassist/src/main/javassist/
H A DCtNewMethod.java214 * of the specified field in the class to which this method is added.
215 * The created method is initially not static even if the field is
219 * @param field the field accessed.
221 public static CtMethod getter(String methodName, CtField field) argument
224 FieldInfo finfo = field.getFieldInfo2();
241 code.addReturn(field.getType());
248 return new CtMethod(minfo, field.getDeclaringClass());
253 * value of the first parameter to the specified field
255 * The created method is not static even if the field i
262 setter(String methodName, CtField field) argument
[all...]
/external/javassist/src/main/javassist/convert/
H A DTransformReadField.java31 public TransformReadField(Transformer next, CtField field, argument
35 this.fieldClass = field.getDeclaringClass();
36 this.fieldname = field.getName();
39 this.isPrivate = Modifier.isPrivate(field.getModifiers());

Completed in 4013 milliseconds

1234567891011>>