Home | History | Annotate | Download | only in oo

Lines Matching refs:field

23  * Find a matching field, in the current class only.
25 * Returns NULL if the field can't be found. (Does not throw an exception.)
36 * Find a field with a matching name and signature. The Java programming
43 if (strcmp(fieldName, pField->field.name) == 0 &&
44 strcmp(signature, pField->field.signature) == 0)
54 * Find a matching field, in this class or a superclass.
59 * Returns NULL if the field can't be found. (Does not throw an exception.)
81 * Find a matching field, in this class or an interface.
83 * Returns NULL if the field can't be found. (Does not throw an exception.)
94 * Find a field with a matching name and signature. As with instance
100 if (strcmp(fieldName, pField->field.name) == 0 &&
101 strcmp(signature, pField->field.signature) == 0)
111 * Find a matching field, in this class or a superclass.
113 * Returns NULL if the field can't be found. (Does not throw an exception.)
153 * Find a matching field, in this class or a superclass.
155 * We scan both the static and instance field lists in the class. If it's
161 * instance field and there's no value in searching through both types.
165 Field* dvmFindFieldHier(const ClassObject* clazz, const char* fieldName,
168 Field* pField;
174 pField = (Field*) dvmFindStaticField(clazz, fieldName, signature);
177 pField = (Field*) dvmFindInstanceField(clazz, fieldName, signature);
192 pField = (Field*) dvmFindStaticField(iface, fieldName, signature);
602 * instance field and there's no value in searching through both types.
710 char type = pField->field.signature[0];
721 pField->field.name, pField->field.signature,
722 pField->field.accessFlags, pField->byteOffset, dval);
734 pField->field.name, pField->field.signature,
735 pField->field.accessFlags, pField->byteOffset, lval);