/cts/tools/vm-tests/src/dot/junit/opcodes/sput_wide/d/ |
T_sput_wide_1.d | 19 .field public static st_i1 J 20 .field protected static st_p1 J 21 .field private static st_pvt1 J
|
/dalvik/vm/mterp/armv4t/ |
OP_SPUT_WIDE.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 8 /* sput-wide vAA, field@BBBB */ 10 FETCH(r1, 1) @ r1<- field ref BBBB 17 .L${opcode}_finish: @ field ptr in r0, AA in r9 22 stmia r0, {r2-r3} @ field<- vAA/vAA+1 27 * Continuation if the field has not yet been resolved. 28 * r1: BBBB field ref
|
/dalvik/vm/mterp/armv5te/ |
OP_IGET.S | 4 %verify "field already resolved" 5 %verify "field not yet resolved" 6 %verify "field cannot be resolved" 8 * General 32-bit instance field get. 12 /* op vA, vB, field@CCCC */ 15 FETCH(r1, 1) @ r1<- field ref CCCC 32 * r0 holds resolved field 38 ldr r3, [r0, #offInstField_byteOffset] @ r3<- byte offset of field 40 $load r0, [r9, r3] @ r0<- obj.field (8/16/32 bits)
|
OP_SGET.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 10 /* op vAA, field@BBBB */ 12 FETCH(r1, 1) @ r1<- field ref BBBB 17 .L${opcode}_finish: @ field ptr in r0 18 ldr r1, [r0, #offStaticField_value] @ r1<- field value 27 * Continuation if the field has not yet been resolved. 28 * r1: BBBB field ref
|
OP_SPUT.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 10 /* op vAA, field@BBBB */ 12 FETCH(r1, 1) @ r1<- field ref BBBB 17 .L${opcode}_finish: @ field ptr in r0 22 str r1, [r0, #offStaticField_value] @ field<- vAA 27 * Continuation if the field has not yet been resolved. 28 * r1: BBBB field ref
|
OP_SPUT_WIDE.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 8 /* sput-wide vAA, field@BBBB */ 10 FETCH(r1, 1) @ r1<- field ref BBBB 17 .L${opcode}_finish: @ field ptr in r0, AA in r9 21 strd r2, [r0, #offStaticField_value] @ field<- vAA/vAA+1 26 * Continuation if the field has not yet been resolved. 27 * r1: BBBB field ref
|
/dalvik/vm/mterp/armv6t2/ |
OP_IGET.S | 4 %verify "field already resolved" 5 %verify "field not yet resolved" 6 %verify "field cannot be resolved" 8 * General 32-bit instance field get. 12 /* op vA, vB, field@CCCC */ 15 FETCH(r1, 1) @ r1<- field ref CCCC 32 * r0 holds resolved field 38 ldr r3, [r0, #offInstField_byteOffset] @ r3<- byte offset of field 40 $load r0, [r9, r3] @ r0<- obj.field (8/16/32 bits)
|
OP_IGET_WIDE.S | 3 %verify "field already resolved" 4 %verify "field not yet resolved" 5 %verify "field cannot be resolved" 7 * Wide 32-bit instance field get. 9 /* iget-wide vA, vB, field@CCCC */ 12 FETCH(r1, 1) @ r1<- field ref CCCC 29 * r0 holds resolved field 34 ldr r3, [r0, #offInstField_byteOffset] @ r3<- byte offset of field 36 ldrd r0, [r9, r3] @ r0/r1<- obj.field (64-bit align ok)
|
OP_IPUT.S | 4 %verify "field already resolved" 5 %verify "field not yet resolved" 6 %verify "field cannot be resolved" 8 * General 32-bit instance field put. 12 /* op vA, vB, field@CCCC */ 15 FETCH(r1, 1) @ r1<- field ref CCCC 32 * r0 holds resolved field 37 ldr r3, [r0, #offInstField_byteOffset] @ r3<- byte offset of field 44 $store r0, [r9, r3] @ obj.field (8/16/32 bits)<- r0
|
/dalvik/vm/mterp/x86/ |
OP_SGET.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 10 /* op vAA, field@BBBB */ 12 movzwl 2(rPC),%eax # eax<- field ref BBBB 18 .L${opcode}_finish: # field ptr in eax 28 * Go resolve the field 32 movzwl 2(rPC),%eax # eax<- field ref BBBB
|
OP_SGET_WIDE.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 9 /* sget-wide vAA, field@BBBB */ 11 movzwl 2(rPC),%eax # eax<- field ref BBBB 17 .L${opcode}_finish: # field ptr in eax 29 * Go resolve the field 33 movzwl 2(rPC),%eax # eax<- field ref BBBB
|
OP_SPUT.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 10 /* op vAA, field@BBBB */ 12 movzwl 2(rPC),%eax # eax<- field ref BBBB 18 .L${opcode}_finish: # field ptr in eax 28 * Go resolve the field 32 movzwl 2(rPC),%eax # eax<- field ref BBBB
|
OP_SPUT_WIDE.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 10 /* op vAA, field@BBBB */ 12 movzwl 2(rPC),%eax # eax<- field ref BBBB 18 .L${opcode}_finish: # field ptr in eax 30 * Go resolve the field 34 movzwl 2(rPC),%eax # eax<- field ref BBBB
|
/dalvik/vm/mterp/x86-atom/ |
OP_SGET.S | 19 * Code: Generic 32-bit static field "get" operation. Uses no substitutions. 23 * Description: Perform the identified object static field operation 24 * with the identified static field; load the field value 45 movl %eax, -4(%esp) # push parameter CCCC; field ref 58 movl offStaticField_value(%ecx), %eax # %eax<- field value 59 SET_VREG %eax, rINST # vAA<- field value
|
OP_SGET_WIDE.S | 19 * Code: 64-bit static field "get" operation. Uses no substitutions. 23 * Description: Perform the identified object static field operation 24 * with the identified static field, loading or storing 42 movq offStaticField_value(%ecx), %xmm0 # %xmm0<- field value 43 movq %xmm0, (rFP, rINST, 4) # vAA<- field value 48 * Continuation if the field has not yet been resolved. 49 * %edx: BBBB field ref 55 movl %edx, -4(%esp) # push parameter CCCC; field ref
|
OP_SPUT_WIDE.S | 19 * Code: Generic 32-bit static field "put" operation. Uses no substitutions. 23 * Description: Perform the identified object static field operation 24 * with the identified static field; store the field value 43 movq %xmm0, offStaticField_value(%ecx) # field value<- field value 48 * Continuation if the field has not yet been resolved. 49 * %edx: BBBB field ref 55 movl %edx, -4(%esp) # push parameter CCCC; field ref
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/ |
AndroidJarLoaderTest.java | 23 import java.lang.reflect.Field; 134 * Retrieves the private mFrameworkClassLoader.mClassCache field using reflection. 145 Field field = AndroidJarLoader.class.getDeclaredField("mClassCache"); //$NON-NLS-1$ local 146 field.setAccessible(true); 147 return (HashMap<String, Class<?>>) field.get(mFrameworkClassLoader); 151 * Retrieves the private mFrameworkClassLoader.mEntryCache field using reflection. 162 Field field = AndroidJarLoader.class.getDeclaredField("mEntryCache"); //$NON-NLS-1$ local 163 field.setAccessible(true) [all...] |
/external/icu4c/i18n/ |
hebrwcal.cpp | 185 * Add a signed amount to a specified field, using this calendar's rules. 190 * need to be changed. For example, when adding one to the {@link #MONTH MONTH} field 191 * for the date "30 Av 5758", the {@link #DAY_OF_MONTH DAY_OF_MONTH} field 201 * of a <tt>HebrewCalendar</tt>. Since the {@link #MONTH MONTH} field behaves 204 * @param field the time field. 205 * @param amount the amount to add to the field. 207 * @exception IllegalArgumentException if the field is invalid or refers 208 * to a field that cannot be handled by this method. 211 void HebrewCalendar::add(UCalendarDateFields field, int32_t amount, UErrorCode& status [all...] |
/external/proguard/src/proguard/classfile/attribute/visitor/ |
MultiAttributeVisitor.java | 151 public void visitDeprecatedAttribute(Clazz clazz, Field field, DeprecatedAttribute deprecatedAttribute) 155 attributeVisitors[index].visitDeprecatedAttribute(clazz, field, deprecatedAttribute); 160 public void visitSyntheticAttribute(Clazz clazz, Field field, SyntheticAttribute syntheticAttribute) 164 attributeVisitors[index].visitSyntheticAttribute(clazz, field, syntheticAttribute); 169 public void visitSignatureAttribute(Clazz clazz, Field field, SignatureAttribute syntheticAttribute) 173 attributeVisitors[index].visitSignatureAttribute(clazz, field, syntheticAttribute); 205 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute [all...] |
/external/proguard/src/proguard/classfile/util/ |
MemberFinder.java | 44 * Finds the field with the given name and descriptor in the given 47 public Field findField(Clazz referencingClass, 52 return (Field)findMember(referencingClass, clazz, name, descriptor, true); 142 * Returns whether the given field is shadowed anywhere down the class 146 Field field) 148 String name = field.getName(clazz); 149 String descriptor = field.getDescriptor(clazz); 151 // Go looking for the field down the class hierarchy. 162 // We've found a shadowing field [all...] |
/external/proguard/src/proguard/obfuscate/ |
NameMarker.java | 143 * Ensures the name of the given field name will be kept. 145 private void keepFieldName(Clazz clazz, Field field) 147 MemberObfuscator.setFixedNewMemberName(field, 148 field.getName(clazz));
|
/external/wpa_supplicant/wpa_gui-qt4/ |
userdatarequest.cpp | 56 field = tmp; 78 queryField->setText(field + ":"); 95 QString cmd = QString(WPA_CTRL_RSP) + field + '-' +
|
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/ |
userdatarequest.cpp | 56 field = tmp; 78 queryField->setText(field + ":"); 95 QString cmd = QString(WPA_CTRL_RSP) + field + '-' +
|
/packages/apps/Email/src/org/apache/james/mime4j/field/address/ |
AddressList.java | 20 package org.apache.james.mime4j.field.address;
22 import org.apache.james.mime4j.field.address.parser.AddressListParser;
23 import org.apache.james.mime4j.field.address.parser.ParseException;
|
/packages/apps/Email/src/org/apache/james/mime4j/message/ |
Entity.java | 25 import org.apache.james.mime4j.field.ContentTransferEncodingField;
26 import org.apache.james.mime4j.field.ContentTypeField;
27 import org.apache.james.mime4j.field.Field;
99 * is derived by looking at the parent's Content-Type field if no
100 * Content-Type field is set for this <code>Entity</code>.
106 (ContentTypeField) getHeader().getField(Field.CONTENT_TYPE);
109 getField(Field.CONTENT_TYPE)
122 (ContentTypeField) getHeader().getField(Field.CONTENT_TYPE));
132 getHeader().getField(Field.CONTENT_TRANSFER_ENCODING); [all...] |