Searched defs:fields (Results 1 - 14 of 14) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/direct/
H A DFieldListParser.java28 * Parser for lists of fields in a class file.
32 private final StdFieldList fields; field in class:FieldListParser
45 fields = new StdFieldList(getCount());
55 return fields;
83 fields.set(n, field);
H A DDirectClassFile.java123 * {@code null-ok;} the class file field {@code fields}; only ever
126 private FieldList fields; field in class:DirectClassFile
287 return fields;
523 fields = flParser.getList();
/dalvik/libcore/luni/src/main/java/java/io/
H A DEmulatedFields.java21 * An EmulatedFields is an object that represents a set of emulated fields for
23 * different than the fields they were declared to have.
72 * @param fields
73 * an array of ObjectStreamFields, which describe the fields to
77 * fields.
79 public EmulatedFields(ObjectStreamField[] fields, argument
83 buildSlots(fields);
88 * Build emulated slots that correspond to emulated fields. A slot is a
91 * @param fields
92 * an array of ObjectStreamField, which describe the fields t
95 buildSlots(ObjectStreamField[] fields) argument
[all...]
H A DObjectStreamField.java21 // Harmony uses ObjectAccessors to access fields through JNI. Android has not
35 * collection of fields that are serialized, which may be different from the set
36 * of all declared fields.
142 * of the compared fields has a primitive type and the other one not. If so,
144 * fields are equal, their names are compared.
149 * fields are equal; 1 if this field is "greater" than field {@code
332 * Sorts the fields for dumping. Primitive types come first, then regular
335 * @param fields
336 * ObjectStreamField[] fields to be sorted
338 static void sortFields(ObjectStreamField[] fields) { argument
[all...]
H A DObjectStreamClass.java102 * Constant indicating that the class has no Serializable fields.
190 // Array of ObjectStreamField (see below) describing the fields of this
192 private transient ObjectStreamField[] fields; field in class:ObjectStreamClass
194 // Array of ObjectStreamField describing the serialized fields of this class
274 // Copy all fields to loadFields - they should be read by default in
276 ObjectStreamField[] fields = result.getFields();
278 if (fields != null) {
279 ObjectStreamField[] loadFields = new ObjectStreamField[fields.length];
281 for (int i = 0; i < fields.length; ++i) {
282 loadFields[i] = new ObjectStreamField(fields[
398 computeSerialVersionUID(Class<?> cl, Field[] fields) argument
702 ObjectStreamField[] fields() { method in class:ObjectStreamClass
[all...]
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DClassCache.java47 // TODO: Add caching for constructors and fields.
71 /** null-ok; list of all declared fields */
74 /** null-ok; list of all public declared fields */
77 /** null-ok; list of all fields, both direct and inherited */
80 /** null-ok; list of all public fields, both direct and inherited */
370 * Gets the list of all declared fields.
372 * @return non-null; the list of all declared fields
383 * Gets the list of all declared public fields.
385 * @return non-null; the list of all declared public fields
396 * Gets either the list of declared fields o
464 findAllfields(Class<?> clazz, ArrayList<Field> fields, HashSet<String> seen, boolean publicOnly) argument
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DMessageFormat.java530 Vector<FieldContainer> fields = new Vector<FieldContainer>();
532 // format the message, and find fields
533 formatImpl((Object[]) object, buffer, new FieldPosition(0), fields);
539 for (int i = 0; i < fields.size(); i++) {
540 FieldContainer fc = fields.elementAt(i);
572 FieldPosition position, Vector<FieldContainer> fields) {
585 position, fields);
597 argumentNumbers[i], position, fields);
607 position, fields);
608 handleformat(format, arg, begin, fields);
571 formatImpl(Object[] objects, StringBuffer buffer, FieldPosition position, Vector<FieldContainer> fields) argument
634 handleArgumentField(int begin, int end, int argnumber, FieldPosition position, Vector<FieldContainer> fields) argument
683 handleformat(Format format, Object arg, int begin, Vector<FieldContainer> fields) argument
[all...]
H A DSimpleDateFormat.java216 * "1997", "yy" produces "97".) Unlike other fields, fractional seconds are
286 * When numeric fields are adjacent directly, with no intervening delimiter
287 * characters, they constitute a run of adjacent numeric fields. Such runs are
680 Vector<FieldPosition> fields = new Vector<FieldPosition>();
682 // format the date, and find fields
683 formatImpl(date, buffer, null, fields);
689 for (int i = 0; i < fields.size(); i++) {
690 FieldPosition pos = fields.elementAt(i);
707 * If the Vector {@code fields} is not null, find fields o
725 formatImpl(Date date, StringBuffer buffer, FieldPosition field, Vector<FieldPosition> fields) argument
778 append(StringBuffer buffer, FieldPosition position, Vector<FieldPosition> fields, char format, int count) argument
[all...]
/dalvik/vm/native/
H A Djava_lang_Class.c250 ArrayObject* fields; local
252 fields = dvmGetDeclaredFields(clazz, publicOnly);
253 dvmReleaseTrackedAlloc((Object*) fields, NULL);
255 RETURN_PTR(fields);
/dalvik/libcore/luni/src/main/java/java/util/
H A DCalendar.java30 * {@code Date} object and a set of integer fields such as
44 * returns a calendar whose locale is based on system settings and whose time fields
56 * fields, as well as their meaning. For example, the first month of the year
82 * {@code WEEK_OF_YEAR} fields, {@code Calendar} must determine
94 * When computing a {@code Date} from time fields, two special
102 * information to specify the missing fields. This may vary by calendar; for the
107 * <strong>Inconsistent information.</strong> If fields conflict, the calendar
108 * will give preference to fields set more recently. For example, when
110 * combinations of fields. The most recent combination, as determined by the
157 * {@code Calendar} fields ca
302 protected int[] fields; field in class:Calendar
[all...]
/dalvik/vm/reflect/
H A DReflect.c115 LOGE("Could not find reflection fields\n");
169 LOGE("Found %d instance fields in '%s'\n",
301 * We use positive values starting from 0 for instance fields, negative
302 * values starting from -1 for static fields.
391 * Get an array with all fields declared by a class.
393 * This includes both static and instance fields.
398 Object** fields; local
404 /* count #of fields */
424 fields = (Object**) fieldArray->contents;
431 *fields
[all...]
/dalvik/libdex/
H A DDexSwapVerify.c1249 const DexFieldAnnotationsItem* fields = local
1252 dexGetFieldId(state->pDexFile, fields[0].fieldIdx);
1435 /* Helper for verifyClassDataItem(), which checks a list of fields. */
1437 DexField* fields, bool expectStatic) {
1441 DexField* field = &fields[i];
1514 LOGE("Trouble with static fields\n");
1522 LOGE("Trouble with instance fields\n");
2764 * Fix the byte ordering of all fields in the DEX file, and do structural
1436 verifyFields(const CheckState* state, u4 size, DexField* fields, bool expectStatic) argument
/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp1272 * optVal is a GenericIPMreq object. Extract the relevant fields from
1404 } fields[] = { local
1417 for (unsigned i = 0; i < sizeof(fields) / sizeof(fields[0]); i++) {
1418 fieldInfo f = fields[i];
/dalvik/dx/etc/
H A Djasmin.jar ... extends jas.CP { private java.util.Vector fields private jas.AsciiCP type private jas.Annotation parent ...

Completed in 464 milliseconds