HomeSort by relevance Sort by last modified time
    Searched refs:Field (Results 1 - 25 of 435) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/
Field.java 26 * Representation of a field from a class.
30 public interface Field extends Member
  /external/clang/test/CodeGenCXX/
vtable-pointer-initialization.cpp 3 struct Field {
4 Field();
5 ~Field();
19 Field field; member in struct:A
39 Field field; member in struct:B
skip-vtable-pointer-initialization.cpp 40 // and Field's destructor body is also trivial.
41 struct Field {
42 ~Field() { }
49 Field field; member in struct:Test3::A
62 // Check that we do initialize the vtable pointer in A::~A(), since Field's destructor body
67 struct Field {
68 ~Field() { f(); }
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
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_SimpleDateFormat.java 23 import java.text.DateFormat.Field;
73 // test if field positions are set correctly for these fields occuring
75 t_FormatWithField(0, format, date, null, Field.ERA, 0, 2);
76 t_FormatWithField(1, format, date, null, Field.YEAR, 15, 17);
77 t_FormatWithField(2, format, date, null, Field.MONTH, 26, 27);
78 t_FormatWithField(3, format, date, null, Field.DAY_OF_MONTH, 45, 47);
79 t_FormatWithField(4, format, date, null, Field.HOUR_OF_DAY1, 55, 57);
80 t_FormatWithField(5, format, date, null, Field.HOUR_OF_DAY0, 65, 67);
81 t_FormatWithField(6, format, date, null, Field.HOUR1, 75, 76);
82 t_FormatWithField(7, format, date, null, Field.MINUTE, 84, 86)
    [all...]
DataFormatFieldTest.java 28 import java.text.DateFormat.Field;
37 MyField field = new MyField("day of month", Calendar.ERA); local
39 assertEquals("field has wrong name", "day of month", field.getName());
40 assertEquals("field has wrong Calendar field number", Calendar.ERA,
41 field.getCalendarField());
43 DateFormat.Field realField = DateFormat.Field
45 assertSame("Modified calendar field with the same field number"
70 MyField field = new MyField("a field", Calendar.DAY_OF_WEEK); local
86 MyField field = new MyField("day of month", Calendar.ERA); local
182 MyField field; local
    [all...]
Support_MessageFormat.java 23 import java.text.MessageFormat.Field;
58 // test with MessageFormat.Field.ARGUMENT
59 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15);
62 t_FormatWithField(2, format, objects, null, DateFormat.Field.AM_PM, 0,
65 NumberFormat.Field.FRACTION, 0, 0);
68 t_FormatWithField(4, format, objects, null, DateFormat.Field.ERA, 0, 0);
70 NumberFormat.Field.EXPONENT_SIGN, 0, 0);
88 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4));
89 v.add(new FieldContainer(3, 6, DateFormat.Field.MONTH));
90 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4))
    [all...]
Support_DecimalFormat.java 48 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY,
50 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER,
53 NumberFormat.Field.GROUPING_SEPARATOR, 3, 4);
55 NumberFormat.Field.DECIMAL_SEPARATOR, 11, 12);
56 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION,
60 t_FormatWithField(5, format, number, text, NumberFormat.Field.SIGN, 0,
62 t_FormatWithField(6, format, number, text, NumberFormat.Field.EXPONENT,
65 NumberFormat.Field.EXPONENT_SIGN, 0, 0);
67 NumberFormat.Field.EXPONENT_SYMBOL, 0, 0);
68 t_FormatWithField(9, format, number, text, NumberFormat.Field.PERCENT
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/
DefaultFieldParser.java 16 package org.apache.james.mime4j.field;
21 setFieldParser(Field.CONTENT_TRANSFER_ENCODING, new ContentTransferEncodingField.Parser());
22 setFieldParser(Field.CONTENT_TYPE, new ContentTypeField.Parser());
25 setFieldParser(Field.DATE, dateTimeParser);
26 setFieldParser(Field.RESENT_DATE, dateTimeParser);
29 setFieldParser(Field.FROM, mailboxListParser);
30 setFieldParser(Field.RESENT_FROM, mailboxListParser);
33 setFieldParser(Field.SENDER, mailboxParser);
34 setFieldParser(Field.RESENT_SENDER, mailboxParser);
37 setFieldParser(Field.TO, addressListParser);
    [all...]
FieldParser.java 16 package org.apache.james.mime4j.field;
20 Field parse(final String name, final String body, final String raw);
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConstants.java 122 * Designation that an "int" field is not set.
127 * <p>A constant that represents the years field.</p>
129 public static final Field YEARS = new Field("YEARS", 0);
132 * <p>A constant that represents the months field.</p>
134 public static final Field MONTHS = new Field("MONTHS", 1);
137 * <p>A constant that represents the days field.</p>
139 public static final Field DAYS = new Field("DAYS", 2)
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_MessageFormat.java 23 import java.text.MessageFormat.Field;
57 // test with MessageFormat.Field.ARGUMENT
58 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15);
61 t_FormatWithField(2, format, objects, null, DateFormat.Field.AM_PM, 0,
64 NumberFormat.Field.FRACTION, 0, 0);
67 t_FormatWithField(4, format, objects, null, DateFormat.Field.ERA, 0, 0);
69 NumberFormat.Field.EXPONENT_SIGN, 0, 0);
87 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4));
88 v.add(new FieldContainer(3, 6, DateFormat.Field.MONTH));
89 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4))
    [all...]
Support_DecimalFormat.java 47 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY,
49 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER,
52 NumberFormat.Field.GROUPING_SEPARATOR, 3, 4);
54 NumberFormat.Field.DECIMAL_SEPARATOR, 11, 12);
55 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION,
59 t_FormatWithField(5, format, number, text, NumberFormat.Field.SIGN, 0,
61 t_FormatWithField(6, format, number, text, NumberFormat.Field.EXPONENT,
64 NumberFormat.Field.EXPONENT_SIGN, 0, 0);
66 NumberFormat.Field.EXPONENT_SYMBOL, 0, 0);
67 t_FormatWithField(9, format, number, text, NumberFormat.Field.PERCENT
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
FieldList.java 42 * Get the {@code n}th field.
44 * @param n {@code n >= 0, n < size();} which field
45 * @return {@code non-null;} the field in question
47 public Field get(int n);
StdFieldList.java 23 * an array of {@link Field} objects and can be made immutable.
36 public Field get(int n) {
37 return (Field) get0(n);
41 * Sets the field at the given index.
43 * @param n {@code >= 0, < size();} which field
44 * @param field {@code null-ok;} the field object
46 public void set(int n, Field field) {
47 set0(n, field);
    [all...]
Field.java 24 public interface Field
27 * Get the constant value for this field, if any. This only returns
28 * non-{@code null} for a {@code static final} field which
32 * field isn't a constant
  /dalvik/dx/src/com/android/dx/cf/iface/
StdFieldList.java 23 * an array of {@link Field} objects and can be made immutable.
36 public Field get(int n) {
37 return (Field) get0(n);
41 * Sets the field at the given index.
43 * @param n {@code >= 0, < size();} which field
44 * @param field {@code null-ok;} the field object
46 public void set(int n, Field field) {
47 set0(n, field);
    [all...]
FieldList.java 42 * Get the {@code n}th field.
44 * @param n {@code n >= 0, n < size();} which field
45 * @return {@code non-null;} the field in question
47 public Field get(int n);
  /dalvik/dx/src/com/android/dx/io/
ClassData.java 20 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 {
    [all...]
  /libcore/luni/src/main/java/java/text/
DateFormat.java 114 * <li>align any particular field.
169 * The {@code FieldPosition} selector for 'G' field alignment, corresponds
170 * to the {@link Calendar#ERA} field.
175 * The {@code FieldPosition} selector for 'y' field alignment, corresponds
176 * to the {@link Calendar#YEAR} field.
181 * The {@code FieldPosition} selector for 'M' field alignment, corresponds
182 * to the {@link Calendar#MONTH} field.
187 * The {@code FieldPosition} selector for 'd' field alignment, corresponds
188 * to the {@link Calendar#DATE} field.
193 * The {@code FieldPosition} selector for 'k' field alignment, correspond
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/message/
Header.java 35 import org.apache.james.mime4j.field.ContentTypeField;
36 import org.apache.james.mime4j.field.Field;
47 private List<Field> fields = new LinkedList<Field>();
48 private HashMap<String, List<Field>> fieldMap = new HashMap<String, List<Field>>();
69 public void field(String fieldData) {
70 addField(Field.parse(fieldData));
77 * Adds a field to the end of the list of fields.
    [all...]
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/junit/
DbModelTest.java 29 import com.motorolamobility.studio.android.db.core.model.Field;
30 import com.motorolamobility.studio.android.db.core.model.Field.AutoIncrementType;
31 import com.motorolamobility.studio.android.db.core.model.Field.DataType;
54 Field idField = new Field("_id", DataType.INTEGER, true, AutoIncrementType.ASCENDING, null);
55 Field textField =
56 new Field("_text", DataType.TEXT, false, AutoIncrementType.NONE, "DanDan");
57 Field numField = new Field("_num", DataType.INTEGER, false, AutoIncrementType.NONE, "5");
59 List<Field> fields = new ArrayList<Field>(2)
    [all...]
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/model/
TableModel.java 32 private List<Field> fields;
36 fields = new LinkedList<Field>();
44 public TableModel(String name, List<Field> fields)
69 public List<Field> getFields()
77 public void setFields(List<Field> fields)
82 public void addField(Field field)
84 fields.add(field);
88 public void removeField(Field field)
147 Field field = it.next(); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
FieldTest.java 19 import java.lang.reflect.Field;
27 Field field = getClass().getDeclaredField("MY_LONG"); local
28 assertEquals(5073258162644648461L, field.getLong(null));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SettingsSecureCompatUtils.java 19 import java.lang.reflect.Field;
22 private static final Field FIELD_ACCESSIBILITY_SPEAK_PASSWORD = CompatUtils.getField(
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/db/wizards/model/
Table.java 32 private final List<Field> fields = new ArrayList<Field>();
42 Iterator<Field> it = fields.iterator();
43 Field fie;
78 public List<Field> getFields()
83 public void setFields(List<Field> fields)
88 for (Field field : fields)
90 this.fields.add(field);
96 * Add {@code field} to the table
125 Field field = it.next(); local
    [all...]

Completed in 7106 milliseconds

1 2 3 4 5 6 7 8 91011>>