Searched defs:Field (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/java/text/
H A DFormat.java233 public static class Field extends AttributedCharacterIterator.Attribute { class in class:Format
238 * Constructs a new instance of {@code Field} with the given field name.
243 protected Field(String fieldName) { method in class:Format.Field
H A DMessageFormat.java535 * {@code MessageFormat.Field.ARGUMENT}, then the begin and end index of
601 * Adds a new FieldContainer with MessageFormat.Field.ARGUMENT field,
603 * position's begin and end index if it has MessageFormat.Field.ARGUMENT as
609 fields.add(new FieldContainer(begin, end, Field.ARGUMENT, Integer.valueOf(argIndex)));
612 && position.getFieldAttribute() == Field.ARGUMENT
675 * {@code MessageFormat.Field.ARGUMENT}, then the begin and end index of
1278 public static class Field extends Format.Field { class in class:MessageFormat
1285 public static final Field ARGUMENT = new Field("messag
1294 protected Field(String fieldName) { method in class:MessageFormat.Field
[all...]
H A DNumberFormat.java147 * Field constant identifying the integer part of a number.
152 * Field constant identifying the fractional part of a number.
750 public static class Field extends Format.Field { class in class:NumberFormat
757 public static final Field SIGN = new Field("sign");
762 public static final Field INTEGER = new Field("integer");
767 public static final Field FRACTION = new Field("fractio
816 protected Field(String fieldName) { method in class:NumberFormat.Field
[all...]
H A DDateFormat.java666 public static class Field extends Format.Field { class in class:DateFormat
670 private static Hashtable<Integer, Field> table = new Hashtable<Integer, Field>();
675 public static final Field ERA = new Field("era", Calendar.ERA);
680 public static final Field YEAR = new Field("year", Calendar.YEAR);
685 public static final Field MONTH = new Field("mont
779 protected Field(String fieldName, int calendarField) { method in class:DateFormat.Field
[all...]
/libcore/dex/src/main/java/com/android/dex/
H A DClassData.java20 private final Field[] staticFields;
21 private final Field[] instanceFields;
25 public ClassData(Field[] staticFields, Field[] instanceFields,
33 public Field[] getStaticFields() {
37 public Field[] getInstanceFields() {
49 public Field[] allFields() {
50 Field[] result = new Field[staticFields.length + instanceFields.length];
63 public static class Field { class in class:ClassData
67 public Field(int fieldIndex, int accessFlags) { method in class:ClassData.Field
[all...]
/libcore/libart/src/main/java/java/lang/reflect/
H A DField.java47 public final class Field extends AccessibleObject implements Member { class in inherits:AccessibleObject,Member
54 public static final Comparator<Field> ORDER_BY_NAME_AND_DECLARING_CLASS
55 = new Comparator<Field>() {
56 @Override public int compare(Field a, Field b) {
79 public Field(ArtField artField) { method in class:Field
170 if (!(other instanceof Field)) {
174 return this.artField == ((Field) other).artField;
264 * <p>If this Field object is enforcing access control (see AccessibleObject)
289 * If this Field objec
[all...]
/libcore/luni/src/main/java/javax/xml/datatype/
H A DDatatypeConstants.java129 public static final Field YEARS = new Field("YEARS", 0);
134 public static final Field MONTHS = new Field("MONTHS", 1);
139 public static final Field DAYS = new Field("DAYS", 2);
144 public static final Field HOURS = new Field("HOURS", 3);
149 public static final Field MINUTES = new Field("MINUTE
160 public static final class Field { class in class:DatatypeConstants
179 private Field(final String str, final int id) { method in class:DatatypeConstants.Field
[all...]
/libcore/libdvm/src/main/java/java/lang/reflect/
H A DField.java45 public final class Field extends AccessibleObject implements Member { class in inherits:AccessibleObject,Member
52 public static final Comparator<Field> ORDER_BY_NAME_AND_DECLARING_CLASS
53 = new Comparator<Field>() {
54 @Override public int compare(Field a, Field b) {
94 private Field(Class<?> declaringClass, Class<?> type, String name, int slot, int fieldDexIndex) { method in class:Field
226 * {@code Field} with the same declaring class, type and name as this field.
236 return object instanceof Field && toString().equals(object.toString());
251 * <p>If this Field object is enforcing access control (see AccessibleObject)
278 * If this Field objec
[all...]

Completed in 6502 milliseconds