Searched refs:fieldId (Results 1 - 6 of 6) sorted by relevance

/external/dexmaker/src/main/java/com/google/dexmaker/
H A DDexMaker.java286 public void declare(FieldId<?, ?> fieldId, int flags, Object staticValue) { argument
287 TypeDeclaration typeDeclaration = getTypeDeclaration(fieldId.declaringType);
288 if (typeDeclaration.fields.containsKey(fieldId)) {
289 throw new IllegalStateException("already declared: " + fieldId);
303 FieldDeclaration fieldDeclaration = new FieldDeclaration(fieldId, flags, staticValue);
304 typeDeclaration.fields.put(fieldId, fieldDeclaration);
453 final FieldId<?, ?> fieldId; field in class:DexMaker.FieldDeclaration
457 FieldDeclaration(FieldId<?, ?> fieldId, int accessFlags, Object staticValue) { argument
461 this.fieldId = fieldId;
[all...]
H A DCode.java571 * Copies the value in instance field {@code fieldId} of {@code instance} to
574 public <D, V> void iget(FieldId<D, V> fieldId, Local<V> target, Local<D> instance) { argument
576 RegisterSpecList.make(instance.spec()), catches, fieldId.constant));
581 * Copies the value in {@code source} to the instance field {@code fieldId}
584 public <D, V> void iput(FieldId<D, V> fieldId, Local<D> instance, Local<V> source) { argument
586 RegisterSpecList.make(source.spec(), instance.spec()), catches, fieldId.constant));
590 * Copies the value in the static field {@code fieldId} to {@code target}.
592 public <V> void sget(FieldId<?, V> fieldId, Local<V> target) { argument
594 RegisterSpecList.EMPTY, catches, fieldId.constant));
599 * Copies the value in {@code source} to the static field {@code fieldId}
601 sput(FieldId<?, V> fieldId, Local<V> source) argument
[all...]
/external/srec/srec/cfront/
H A Dnisthdr.h198 #define Nist1AHeaderSetDef(fname, argType, unionKey, fieldId)\
200 mpFields[fieldId].mbInUse = TRUE;\
201 mpFields[fieldId].mValue.##unionKey = x;}
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java421 FieldId<G, Integer> fieldId = generated.getField(TypeId.INT, "a");
422 dexMaker.declare(fieldId, PUBLIC | FINAL, null);
428 code.iput(fieldId, thisRef, parameter);
962 FieldId<Instance, V> fieldId = objectType.getField(valueType, fieldName);
968 code.iget(fieldId, localOldValue, localInstance);
969 code.iput(fieldId, localInstance, localNewValue);
1045 FieldId<Static, V> fieldId = objectType.getField(valueType, fieldName);
1050 code.sget(fieldId, localOldValue);
1051 code.sput(fieldId, localNewValue);
1766 FieldId<?, ?> fieldId
[all...]
/external/webkit/Source/WebKit/android/jni/
H A DWebSettings.cpp301 inline string16 getStringFieldAsString16(JNIEnv* env, jobject autoFillProfile, jfieldID fieldId) argument
303 jstring str = static_cast<jstring>(env->GetObjectField(autoFillProfile, fieldId));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 134 milliseconds