HomeSort by relevance Sort by last modified time
    Searched refs:Field (Results 376 - 400 of 1003) sorted by null

<<11121314151617181920>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest4.java     [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 124 /// Emit the address of a field using a member data pointer.
683 FieldDecl *Field = MemberInit->getAnyMember();
685 // If we are initializing an anonymous union field, drill down to the field.
690 LHS = CGF.EmitLValueForFieldInitialization(LHS, Field);
705 FieldDecl *Field = MemberInit->getAnyMember();
706 QualType FieldType = Field->getType();
732 LValue Src = CGF.EmitLValueForFieldInitialization(ThisRHSLV, Field);
749 CGF.EmitInitializerForField(Field, LHS, MemberInit->getInit(), ArrayIndexes);
752 void CodeGenFunction::EmitInitializerForField(FieldDecl *Field, LValue LHS
1656 const FieldDecl *field; member in class:__anon6373::final
    [all...]
  /art/test/142-classloader2/src/
Main.java 18 import java.lang.reflect.Field;
64 // Secondary checks: get the static field values and make sure they aren't the same.
  /art/test/144-static-field-sigquit/src/
SigQuit.java 35 Field sigquitField = osConstants.getDeclaredField("SIGQUIT");
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format21c.java 75 // everything else is static field accesses
76 return PoolIndexKind.Field;
Format22c.java 70 return PoolIndexKind.Field;
  /cts/tests/core/runner/src/com/android/cts/runner/
CtsTestRunListener.java 38 import java.lang.reflect.Field;
171 Field[] fields = clazz.getDeclaredFields();
173 Field f = fields[i];
191 private static final Field sDateFormatIs24HourField;
  /external/guava/guava/src/com/google/common/collect/
Serialization.java 22 import java.lang.reflect.Field;
199 Field field = clazz.getDeclaredField(fieldName); local
200 return new FieldSetter<T>(field);
208 private final Field field; field in class:Serialization.FieldSetter
210 private FieldSetter(Field field) {
211 this.field = field;
    [all...]
  /external/javassist/sample/evolve/
VersionManager.java 23 Field f = c.getField(latestVersionField);
50 * initiaVersion() is used to initialize the _version field of the updatable
  /external/proguard/src/proguard/classfile/
LibraryClass.java 43 * An extra field pointing to the superclass of this class.
44 * This field is filled out by the {@link ClassSuperHierarchyInitializer}.
49 * An extra field pointing to the interfaces of this class.
50 * This field is filled out by the {@link ClassSuperHierarchyInitializer}.
55 * An extra field pointing to the subclasses of this class.
56 * This field is filled out by the {@link ClassSubHierarchyInitializer}.
61 * An extra field in which visitors can store information.
270 public Field findField(String name, String descriptor)
274 Field field = fields[index] local
468 Field field = fields[index]; local
479 Field field = findField(name, descriptor); local
    [all...]
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationsAttribute.java 75 * Applies the given visitor to all field annotations.
77 public void annotationsAccept(Clazz clazz, Field field, AnnotationVisitor annotationVisitor)
83 annotationVisitor.visitAnnotation(clazz, field, annotations[index]);
EnumConstantElementValue.java 38 * An extra field pointing to the Clazz objects referenced in the
39 * type name string. This field is typically filled out by the <code>{@link
47 * An extra field optionally pointing to the referenced enum Field object.
48 * This field is typically filled out by the <code>{@link
52 public Field referencedField;
115 * Applies the given visitor to the referenced field.
TypeAnnotationsAttribute.java 69 * Applies the given visitor to all field annotations.
71 public void typeAnnotationsAccept(Clazz clazz, Field field, TypeAnnotationVisitor typeAnnotationVisitor)
79 typeAnnotationVisitor.visitTypeAnnotation(clazz, field, annotations[index]);
  /external/proguard/src/proguard/classfile/attribute/annotation/target/
TargetInfo.java 75 * Accepts the given visitor, in the context of a type annotation on a field.
77 public void accept(Clazz clazz, Field field, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
79 throw new UnsupportedOperationException("Unsupported type annotation [0x"+Integer.toHexString(u1targetType)+"] on a field");
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotationTypeFilter.java 68 public void visitAnnotation(Clazz clazz, Field field, Annotation annotation)
72 annotationVisitor.visitAnnotation(clazz, field, annotation);
  /external/skia/include/svg/parser/
SkSVGPaintState.h 18 enum Field {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableClassDef.java 38 import org.jf.dexlib2.iface.Field;
70 @Nullable Iterable<? extends Field> fields,
97 @Nullable Iterable<? extends Field> staticFields,
98 @Nullable Iterable<? extends Field> instanceFields,
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
Rewriters.java 45 @Nonnull Rewriter<Field> getFieldRewriter();
  /frameworks/base/core/java/android/hardware/camera2/
CameraMetadata.java 25 import java.lang.reflect.Field;
57 * Set a camera metadata field to a value. The field definitions can be
61 * @param key The metadata field to write.
62 * @param value The value to set the field to, which must be of a matching
71 * Get a camera metadata field value.
73 * <p>The field definitions can be
82 * @param key The metadata field to read.
83 * @return The value of that key, or {@code null} if the field is not set.
115 * Return a list of all the Key<?> that are declared as a field inside of the clas
    [all...]
  /frameworks/support/compat/jellybean-mr1/android/support/v4/graphics/drawable/
DrawableCompatJellybeanMr1.java 23 import java.lang.reflect.Field;
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicIntegerFieldUpdater.java 10 import java.lang.reflect.Field;
29 * Because this class cannot ensure that all uses of the field
36 * @param <T> The type of the object holding the updatable field
40 * Creates and returns an updater for objects with the given field.
44 * @param tclass the class of the objects holding the field
45 * @param fieldName the name of the field to be updated
48 * @throws IllegalArgumentException if the field is not a
51 * exception if the class does not hold field or is the wrong type,
52 * or the field is inaccessible to the caller according to Java language
69 * Atomically sets the field of the given object managed by this update
355 final Field field; local
    [all...]
  /libcore/ojluni/src/main/java/java/lang/reflect/
AccessibleObject.java 36 * The AccessibleObject class is the base class for Field, Method and
52 * @see Field
135 } else if (clazz == Field.class) {
136 throw new SecurityException("Can not make a java.lang.reflect.Field" +
158 // by this object. Initializes to "false". This field is used by
159 // Field, Method, and Constructor.
161 // NOTE: for security purposes, this field must not be visible
165 // Reflection factory used by subclasses for creating field,
Constructor.java 269 sb.append(Field.getTypeName(getDeclaringClass()));
273 sb.append(Field.getTypeName(params[j]));
347 sb.append(Field.getTypeName(getDeclaringClass()));
352 Field.getTypeName((Class<?>)params[j]):
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 23 import java.lang.reflect.Field;
55 public static Field getField(final Class<?> targetClass, final String name) {
108 final Field field) {
109 if (field == null) {
113 return field.get(receiver);
120 public static void setFieldValue(final Object receiver, final Field field, final Object value) {
121 if (field == null) {
125 field.set(receiver, value)
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/
CarInfoManagerEmbedded.java 23 import java.lang.reflect.Field;

Completed in 3747 milliseconds

<<11121314151617181920>>