Searched refs:field (Results 176 - 200 of 2343) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dcalendar.h83 * A <code>Calendar</code> object can produce all the time field values
97 * the Gregorian calendar, the default for a field is the same as that of the
105 * most recently set single field, will be used.
152 * <code>Calendar</code> provides an API for field "rolling", where fields
159 * adding the specified (signed) amount of time to a particular time field.
213 * who create locale resources for the field of first-day-of-week should be aware of
399 * to previous calls to set time field values. The time specified is non-local UTC
404 * previously set in the time field is invalid or restricted by
418 * set in the time field is invalid or restricted by
467 * previously set in the time field i
1372 internalGet(UCalendarDateFields field, int32_t defaultValue) const argument
2215 roll(UCalendarDateFields field, UBool up, UErrorCode& status) argument
2221 roll(EDateFields field, UBool up, UErrorCode& status) argument
2235 internalSet(UCalendarDateFields field, int32_t value) argument
[all...]
/external/icu4c/i18n/unicode/
H A Dcalendar.h84 * A <code>Calendar</code> object can produce all the time field values
99 * the Gregorian calendar, the default for a field is the same as that of the
107 * most recently set single field, will be used.
174 * <code>Calendar</code> provides an API for field "rolling", where fields
181 * adding the specified (signed) amount of time to a particular time field.
249 * who create locale resources for the field of first-day-of-week should be aware of
430 * to previous calls to set time field values. The time specified is non-local UTC
435 * previously set in the time field is invalid or restricted by
449 * set in the time field is invalid or restricted by
498 * previously set in the time field i
1558 internalGet(UCalendarDateFields field, int32_t defaultValue) const argument
2444 roll(UCalendarDateFields field, UBool up, UErrorCode& status) argument
2451 roll(EDateFields field, UBool up, UErrorCode& status) argument
2466 internalSet(UCalendarDateFields field, int32_t value) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dfldset.h72 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
86 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
99 * This function is called when parsing a field name, such as "MONTH" in "MONTH=4".
106 * @param name the field name (key side)
109 * @return field number, or negative if field should be skipped.
120 * @param field which field is being parsed
126 int32_t field,
133 * Implementations of this function should call set(field,
[all...]
/external/icu4c/test/intltest/
H A Dfldset.h72 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
86 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
99 * This function is called when parsing a field name, such as "MONTH" in "MONTH=4".
106 * @param name the field name (key side)
109 * @return field number, or negative if field should be skipped.
120 * @param field which field is being parsed
126 int32_t field,
133 * Implementations of this function should call set(field,
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs43 public static object get( this FieldInfo field, object obj ) argument
45 return field.GetValue( obj );
63 FieldInfo field = type.GetField( name );
64 if ( field == null )
67 return field;
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dudbgutil.cpp26 7. Define the field names, in order.
41 10. Find the function _udbg_enumFields and add the field macro:
61 * Define another field name. Used in an array of Field s
283 const char * udbg_enumName(UDebugEnumType type, int32_t field) { argument
284 if(field<0 ||
285 field>=_udbg_enumCount(type,FALSE)) { // also will catch unsupported items
292 return fields[field].str + fields[field].prefix;
297 int32_t udbg_enumArrayValue(UDebugEnumType type, int32_t field) { argument
298 if(field<
[all...]
H A Dudbgutil.h49 * @param field field number
52 U_CAPI const char * U_EXPORT2 udbg_enumName(UDebugEnumType type, int32_t field);
65 * @param field field number
66 * @return should be equal to 'field' or -1 if out of range.
68 U_CAPI int32_t U_EXPORT2 udbg_enumArrayValue(UDebugEnumType type, int32_t field);
71 * Locate the specified field value by name.
74 * @return should be a field value or -1 if not found.
/external/mockito/src/org/mockito/internal/util/reflection/
H A DLenientCopyTool.java35 Field field = fields[i];
36 if (Modifier.isStatic(field.getModifiers())) {
41 accessibilityChanger.enableAccess(field);
42 fieldCopier.copyValue(from, mock, field);
44 //Ignore - be lenient - if some field cannot be copied then let's be it
46 accessibilityChanger.safelyDisableAccess(field);
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.cc169 string FieldName(const FieldDescriptor* field) { argument
170 string result = field->name();
178 string FieldConstantName(const FieldDescriptor *field) { argument
179 string field_name = UnderscoresToCamelCase(field->name(), true);
182 if (!field->is_extension() &&
183 field->containing_type()->FindFieldByCamelcaseName(
184 field->camelcase_name()) != field) {
185 // This field's camelcase name is not unique. As a hack, add the field
194 FieldMessageTypeName(const FieldDescriptor* field) argument
259 DefaultValue(const FieldDescriptor* field) argument
[all...]
H A Dcpp_helpers.h71 // Get the (unqualified) name that should be used for this field in C++ code.
73 // should be using lowercase-with-underscores style for proto field names
74 // anyway, so normally this just returns field->name().
75 string FieldName(const FieldDescriptor* field);
77 // Get the unqualified name that should be used for a field's field
79 string FieldConstantName(const FieldDescriptor *field);
81 // Returns the scope where the field was defined (for extensions, this is
82 // different from the message type to which the field applies).
83 inline const Descriptor* FieldScope(const FieldDescriptor* field) { argument
[all...]
/external/chromium_org/v8/tools/
H A Dgc-nvp-trace-processor.py74 fields[field] = field_count
91 def __init__(self, title, field, axis = x1y1, **keywords):
95 if type(field) is types.ListType:
96 self.field = field
98 self.field = [field]
101 return self.field
105 'using %s' % context.format_fieldref(self.field),
142 return ':'.join([str(self.field_to_index[field]) fo
[all...]
/external/v8/tools/
H A Dgc-nvp-trace-processor.py74 fields[field] = field_count
91 def __init__(self, title, field, axis = x1y1, **keywords):
95 if type(field) is types.ListType:
96 self.field = field
98 self.field = [field]
101 return self.field
105 'using %s' % context.format_fieldref(self.field),
142 return ':'.join([str(self.field_to_index[field]) fo
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DDataFormatFieldTest.java37 MyField field = new MyField("day of month", Calendar.ERA);
39 assertEquals("field has wrong name", "day of month", field.getName());
40 assertEquals("field has wrong Calendar field number", Calendar.ERA,
41 field.getCalendarField());
45 assertSame("Modified calendar field with the same field number",
50 assertSame("Modified calendar field with the same field numbe
[all...]
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable.h263 inline void put(MetahandleField field, int64 value) { argument
264 int64_fields[field - INT64_FIELDS_BEGIN] = value;
266 inline void put(Int64Field field, int64 value) { argument
267 int64_fields[field - INT64_FIELDS_BEGIN] = value;
269 inline void put(IdField field, const Id& value) { argument
270 id_fields[field - ID_FIELDS_BEGIN] = value;
272 inline void put(BaseVersion field, int64 value) { argument
273 int64_fields[field - INT64_FIELDS_BEGIN] = value;
275 inline void put(IndexedBitField field, bool value) { argument
276 bit_fields[field
278 put(IsDelField field, bool value) argument
281 put(BitField field, bool value) argument
284 put(StringField field, const std::string& value) argument
287 put(ProtoField field, const sync_pb::EntitySpecifics& value) argument
290 put(BitTemp field, bool value) argument
327 mutable_ref(StringField field) argument
330 mutable_ref(ProtoField field) argument
333 mutable_ref(IdField field) argument
501 Put(IsDelField field, bool value) argument
[all...]
/external/chromium_org/v8/test/webkit/
H A Dfunction-declaration-statement.js120 for (a in { field: false })
134 for (var a in { field: false })
148 for (var a = false in { field: false })
/external/compiler-rt/BlocksRuntime/tests/
H A DobjectRRGC.c39 long field; member in struct:MyStruct
48 xp->field = 10;
49 void (^myBlock)(void) = ^{ printf("field is %ld\n", xp->field); };
H A Dobjectassign.c38 long field; member in struct:MyStruct
51 xp->field = 10;
52 void (^myBlock)(void) = ^{ printf("field is %ld\n", xp->field); };
/external/mockito/src/org/mockito/internal/configuration/
H A DMockAnnotationProcessor.java14 * Instantiates a mock on a field annotated by {@link Mock}
17 public Object process(Mock annotation, Field field) { argument
23 mockSettings.name(field.getName());
33 return Mockito.mock(field.getType(), mockSettings);
/external/mockito/src/org/mockito/internal/configuration/injection/filter/
H A DTypeBasedCandidateFilter.java20 public OngoingInjecter filterCandidate(Collection<Object> mocks, Field field, Object fieldInstance) { argument
23 if (field.getType().isAssignableFrom(mock.getClass())) {
28 return next.filterCandidate(mockTypeMatches, field, fieldInstance);
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DMessage.java47 * the field values dynamically.
75 * contents (known and unknown field values). Subclasses must implement this;
115 * Merging occurs as follows. For each field:<br>
116 * * For singular primitive fields, if the field is set in {@code other},
118 * * For singular message fields, if the field is set in {@code other},
146 * field. Messages built with this can then be passed to setField(),
149 Builder newBuilderForField(Descriptors.FieldDescriptor field); argument
152 * Get a nested builder instance for the given field.
155 * message type field. Some implementations(the generated message builders),
157 * builder) for the field
167 getFieldBuilder(Descriptors.FieldDescriptor field) argument
174 setField(Descriptors.FieldDescriptor field, Object value) argument
180 clearField(Descriptors.FieldDescriptor field) argument
190 setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value) argument
198 addRepeatedField(Descriptors.FieldDescriptor field, Object value) argument
[all...]
/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/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_helpers.h53 // Converts the field's name to camel-case, e.g. "foo_bar_baz" becomes
55 string UnderscoresToCamelCase(const FieldDescriptor* field);
56 string UnderscoresToCapitalizedCamelCase(const FieldDescriptor* field);
104 // Get the unqualified name that should be used for a field's field
106 string FieldConstantName(const FieldDescriptor *field);
122 inline JavaType GetJavaType(const FieldDescriptor* field) { argument
123 return GetJavaType(field->type());
131 string DefaultValue(const Params& params, const FieldDescriptor* field);
/external/chromium_org/chrome/browser/resources/
H A Dgesture_config.js47 var field = this.fields[i];
57 label.setAttribute('for', field.key);
58 label.innerHTML = field.label;
59 input.id = field.key;
60 input.min = field.min || 0;
62 if (field.max)
63 input.max = field.max;
65 input.step = field.step || 'any';
67 if (field.units)
68 units.innerHTML = field
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dpassword_autofill_manager.h31 bool DidAcceptAutofillSuggestion(const FormFieldData& field,
57 bool FindLoginInfo(const FormFieldData& field,
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddynamic_message.cc93 // Compute the byte size of the in-memory representation of the field.
94 int FieldSpaceUsed(const FieldDescriptor* field) { argument
96 if (field->label() == FD::LABEL_REPEATED) {
97 switch (field->cpp_type()) {
109 switch (field->options().ctype()) {
117 switch (field->cpp_type()) {
131 switch (field->options().ctype()) {
185 // looking back at this field. This would assume details about the
255 const FieldDescriptor* field = descriptor->field( local
335 const FieldDescriptor* field = descriptor->field(i); local
403 const FieldDescriptor* field = descriptor->field(i); local
[all...]

Completed in 977 milliseconds

1234567891011>>