Searched refs:fields (Results 1 - 11 of 11) 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.java126 * {@code null-ok;} the class file field {@code fields}; only ever
129 private FieldList fields; field in class:DirectClassFile
290 return fields;
526 fields = flParser.getList();
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DOutput.java112 * Prints the list of fields in a simple human-readable format.
117 FieldRef[] fields = classes[i].getFieldArray();
119 for (int j = 0; j < fields.length; j++) {
120 FieldRef ref = fields[j];
155 * the matching fields and methods.
191 * Prints the externally-visible fields in XML format.
194 FieldRef[] fields = cref.getFieldArray();
195 for (int i = 0; i < fields.length; i++) {
196 FieldRef fref = fields[i];
/dalvik/vm/
H A DInitRefs.cpp258 static struct { const char* name; const struct FieldInfo* fields; } classes[] = { member in struct:__anon24
279 const struct FieldInfo* fields = classes[i].fields; local
287 for (j = 0; fields[j].offset != NULL; j++) {
288 if (!initFieldOffset(clazz, fields[j].offset, fields[j].name, fields[j].type)) {
465 * offsets to a few fields of the class String. This code verifies
/dalvik/dx/src/com/android/dx/command/findusages/
H A DFindUsages.java152 * Returns the fields with {@code memberNameIndex} declared by {@code
156 Set<Integer> fields = new HashSet<Integer>();
161 fields.add(fieldIndex);
165 return fields;
/dalvik/tests/044-proxy/src/
H A DBasicTest.java79 Field[] fields = proxy.getClass().getDeclaredFields();
80 System.out.println("Proxy fields: " + Arrays.deepToString(fields));
/dalvik/dx/src/com/android/dx/dex/cf/
H A DCfTranslator.java140 * Processes the fields of the given class.
147 FieldList fields = cf.getFields();
148 int sz = fields.size();
151 Field one = fields.get(i);
/dalvik/vm/native/
H A Djava_lang_Class.cpp251 ArrayObject* fields; local
253 fields = dvmGetDeclaredFields(clazz, publicOnly);
254 dvmReleaseTrackedAlloc((Object*) fields, NULL);
256 RETURN_PTR(fields);
/dalvik/libdex/
H A DDexSwapVerify.cpp1251 const DexFieldAnnotationsItem* fields = local
1254 dexGetFieldId(state->pDexFile, fields[0].fieldIdx);
1437 /* Helper for verifyClassDataItem(), which checks a list of fields. */
1439 DexField* fields, bool expectStatic) {
1443 DexField* field = &fields[i];
1516 ALOGE("Trouble with static fields");
1524 ALOGE("Trouble with instance fields");
2811 * Fix the byte ordering of all fields in the DEX file, and do
1438 verifyFields(const CheckState* state, u4 size, DexField* fields, bool expectStatic) argument
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java77 /** individual annotations, each containing zero or more fields */
767 private void transformFields(IndexMap indexMap, ClassData.Field[] fields) { argument
769 for (ClassData.Field field : fields) {
/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 451 milliseconds