/libcore/ojluni/src/lambda/java/java/lang/invoke/ |
MethodHandles.java | 29 import java.lang.reflect.Field; 85 public MethodHandle unreflectGetter(Field f) throws IllegalAccessException { return null; } 87 public MethodHandle unreflectSetter(Field f) throws IllegalAccessException { return null; }
|
/packages/apps/CarrierConfig/tests/src/com/android/carrierconfig/ |
CarrierConfigTest.java | 14 import java.lang.reflect.Field; 165 Field[] fields = CarrierConfigManager.class.getDeclaredFields(); 167 for (Field f : fields) {
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
Message.java | 32 import org.apache.james.mime4j.field.Field; 33 import org.apache.james.mime4j.field.UnstructuredField; 72 * Gets the <code>Subject</code> field. 74 * @return the <code>Subject</code> field or <code>null</code> if it 78 return (UnstructuredField) getHeader().getField(Field.SUBJECT); 143 * @see org.apache.james.mime4j.ContentHandler#field(java.lang.String) 145 public void field(String fieldData) { method in class:Message.MessageBuilder 147 ((Header) stack.peek()).addField(Field.parse(fieldData));
|
/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/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
OpenIntToFieldHashMap.java | 26 import org.apache.commons.math.Field; 39 * @param <T> the type of the field elements 73 /** Field to which the elements belong. */ 74 private final Field<T> field; field in class:OpenIntToFieldHashMap 99 * @param field field to which the elements belong 101 public OpenIntToFieldHashMap(final Field<T>field) { 102 this(field, DEFAULT_EXPECTED_SIZE, field.getZero()) [all...] |
/art/runtime/ |
proxy_test.cc | 23 #include "mirror/field-inl.h" 176 // Test "Class[] interfaces" field. 177 ArtField* field = &static_fields->At(0); local 178 EXPECT_STREQ("interfaces", field->GetName()); 179 EXPECT_STREQ("[Ljava/lang/Class;", field->GetTypeDescriptor()); 180 EXPECT_EQ(interfacesFieldClass.Get(), field->GetType<true>()); 182 EXPECT_STREQ("L$Proxy1234;", field->GetDeclaringClass()->GetDescriptor(&temp)); 183 EXPECT_FALSE(field->IsPrimitiveType()); 185 // Test "Class[][] throws" field. 186 field = &static_fields->At(1) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
FieldVector.java | 19 import org.apache.commons.math.Field; 23 * Interface defining a field-valued vector with basic algebraic operations. 42 * @param <T> the type of the field elements 49 * Get the type of field elements of the vector. 50 * @return type of field elements of the vector 52 Field<T> getField();
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
ParameterSet.java | 27 import java.lang.reflect.Field; 43 for (Field field : theClass.getDeclaredFields()) { 44 if (field.isAnnotationPresent(annotationClass)) { 45 Parameter parameter = Parameter.create(field); 46 parametersBuilder.put(field.getName(), parameter);
|
/external/conscrypt/src/test/java/org/conscrypt/ |
OpenSSLX509CertificateTest.java | 27 import java.lang.reflect.Field; 42 Field targetUID = ZpenSSLX509Certificate.class.getDeclaredField("serialVersionUID");
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/ |
ModifiedSystemClassRuntime.java | 19 import java.lang.reflect.Field; 51 * name of the public static runtime access field 65 final Field field = systemClass.getField(accessFieldName); local 66 field.set(null, data); 113 * name of the added runtime access field 146 * Adds the static access method and data field to the given class 152 * name of the runtime access field
|
URLStreamHandlerRuntime.java | 15 import java.lang.reflect.Field; 55 final Field field = URL.class.getDeclaredField("handlers"); local 56 field.setAccessible(true); 58 final Map<String, URLStreamHandler> map = (Map<String, URLStreamHandler>) field
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
ModifiedSystemClassRuntimeTest.java | 23 import java.lang.reflect.Field; 162 // Check added field: 163 final Field f = targetClass.getField("$jacocoAccess");
|
/external/javassist/src/main/javassist/util/proxy/ |
SecurityActions.java | 19 import java.lang.reflect.Field; 113 static void set(final Field fld, final Object target, final Object value)
|
/external/littlemock/src/com/google/testing/littlemock/ |
AppDataDirGuesser.java | 20 import java.lang.reflect.Field; 63 // Prior to ICS, we can simply read the "path" field of the 66 Field pathField = pathClassLoaderClass.getDeclaredField("path");
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
MessageObject.java | 64 Field[] fields = myclass.getDeclaredFields(); 66 Field f = fields[i]; 148 continue; // we are accessing a private field...
|
/external/proguard/src/proguard/classfile/attribute/annotation/ |
TypeAnnotation.java | 78 public void targetInfoAccept(Clazz clazz, Field field, TargetInfoVisitor targetInfoVisitor) 82 targetInfo.accept(clazz, field, this, targetInfoVisitor); 125 public void typePathInfosAccept(Clazz clazz, Field field, TypePathInfoVisitor typePathVisitor) 131 typePathVisitor.visitTypePathInfo(clazz, field, this, typePath[index]);
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
MultiAttributeVisitor.java | 160 public void visitDeprecatedAttribute(Clazz clazz, Field field, DeprecatedAttribute deprecatedAttribute) 164 attributeVisitors[index].visitDeprecatedAttribute(clazz, field, deprecatedAttribute); 169 public void visitSyntheticAttribute(Clazz clazz, Field field, SyntheticAttribute syntheticAttribute) 173 attributeVisitors[index].visitSyntheticAttribute(clazz, field, syntheticAttribute); 178 public void visitSignatureAttribute(Clazz clazz, Field field, SignatureAttribute syntheticAttribute) 182 attributeVisitors[index].visitSignatureAttribute(clazz, field, syntheticAttribute); 214 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute [all...] |
/external/proguard/src/proguard/classfile/util/ |
EnumFieldReferenceInitializer.java | 35 * This ElementValueVisitor initializes the field references of the 60 private Field referencedEnumField; 77 // Try to find the enum field through the static enum 86 // Otherwise try to find the enum field through its name. 87 // The constant name could be different from the field name, if 143 referencedEnumField = (Field)fieldrefConstant.referencedMember;
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/ |
ResourceExtractor.java | 3 import java.lang.reflect.Field; 23 for (Field field : innerClass.getDeclaredFields()) { 24 if (field.getType().equals(Integer.TYPE) && Modifier.isStatic(field.getModifiers())) { 26 String name = section + "/" + field.getName(); 27 int value = field.getInt(null);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/ |
ParamsParser.java | 11 import java.lang.reflect.Field; 70 Field f = obj.getClass().getDeclaredField(name);
|
/external/skia/src/sfnt/ |
SkOTTable_OS_2_V0.h | 56 struct Field { 77 } field; member in union:SkOTTableOS2_V0::Type 101 struct Field { 122 } field; member in union:SkOTTableOS2_V0::Selection
|
SkOTTable_OS_2_VA.h | 56 struct Field { 77 } field; member in union:SkOTTableOS2_VA::Type 101 struct Field { 122 } field; member in union:SkOTTableOS2_VA::Selection
|
SkOTTable_head.h | 32 struct Field { 53 } field; member in union:SkOTTableHead::Flags 83 struct Field { 104 } field; member in union:SkOTTableHead::MacStyle
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
DexBackedField.java | 39 import org.jf.dexlib2.iface.Field; 46 public class DexBackedField extends BaseFieldReference implements Field {
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/ |
SmalideaField.java | 41 import org.jf.dexlib2.iface.Field; 50 public class SmalideaField extends BaseFieldReference implements Field {
|