/external/icu/android_icu4j/src/main/java/android/icu/text/ |
NumberFormat.java | 137 * <code>field</code> = <code>INTEGER_FIELD</code>. On output, 227 * Field constant used to construct a FieldPosition object. Signifies that 234 * Field constant used to construct a FieldPosition object. Signifies that [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
NumberFormat.java | 136 * <code>field</code> = <code>INTEGER_FIELD</code>. On output, 237 * Field constant used to construct a FieldPosition object. Signifies that 245 * Field constant used to construct a FieldPosition object. Signifies that [all...] |
/external/proguard/src/proguard/classfile/editor/ |
ClassEditor.java | 118 * Adds the given field. 120 public void addField(Field field) 123 Field[] fields = targetClass.fields; 125 // Make sure there is enough space for the new field. 137 System.out.println(targetClass.getName()+": adding field ["+field.getName(targetClass)+" "+field.getDescriptor(targetClass)+"]"); 140 // Add the field. 141 fields[targetClass.u2fieldsCount++] = field; [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
ResultSetTest.java | 20 import java.lang.reflect.Field; 73 Field[] theFields = resultSetClass.getDeclaredFields(); 78 for (Field element : theFields) { 86 fail("Field " + fieldName + " missing!"); 88 assertEquals("Field " + fieldName + " value mismatch: ", 90 assertEquals("Field " + fieldName + " modifier mismatch: ", 94 fail("Illegal access to Field " + fieldName);
|
/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...] |
/frameworks/base/core/java/com/android/internal/util/ |
MessageUtils.java | 23 import java.lang.reflect.Field; 57 Field[] fields; 65 for (Field field : fields) { 66 int modifiers = field.getModifiers(); 71 String name = field.getName(); 79 // TODO: can we have the caller try to access the field instead, so we don't 81 field.setAccessible(true); 86 value = field.getInt(null); 88 // The field is not an integer (or short or byte), or c's stati [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
Field.java | 20 package org.apache.james.mime4j.field; 26 * The base class of all field classes. 29 * @version $Id: Field.java,v 1.6 2004/10/25 07:26:46 ntherning Exp $ 31 public abstract class Field { 63 protected Field(final String name, final String body, final String raw) { 71 * <code>Field</code> class. The type of the class returned depends on 72 * the field name: 75 * <td><em>Field name</em></td><td><em>Class returned</em></td> 76 * <td>Content-Type</td><td>org.apache.james.mime4j.field.ContentTypeField</td> 77 * <td>other</td><td>org.apache.james.mime4j.field.UnstructuredField</td [all...] |
/packages/services/Telephony/src/org/apache/james/mime4j/field/ |
Field.java | 20 package org.apache.james.mime4j.field; 26 * The base class of all field classes. 29 * @version $Id: Field.java,v 1.6 2004/10/25 07:26:46 ntherning Exp $ 31 public abstract class Field { 63 protected Field(final String name, final String body, final String raw) { 71 * <code>Field</code> class. The type of the class returned depends on 72 * the field name: 75 * <td><em>Field name</em></td><td><em>Class returned</em></td> 76 * <td>Content-Type</td><td>org.apache.james.mime4j.field.ContentTypeField</td> 77 * <td>other</td><td>org.apache.james.mime4j.field.UnstructuredField</td [all...] |
/art/test/497-inlining-and-class-loader/src/ |
Main.java | 17 import java.lang.reflect.Field; 25 // Some magic to get access to the pathList field of BaseDexClassLoader. 28 Field f = baseDexClassLoader.getDeclaredField("pathList"); 32 // Some magic to get access to the dexField field of pathList. 41 Field dexFileField; 108 Field f = Class.class.getDeclaredField("dexCache");
|
/cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/ |
UserDeviceInfo.java | 22 import java.lang.reflect.Field;
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ThunkerCreateTest.java | 20 import java.lang.reflect.Field;
|
/external/clang/test/SemaCXX/ |
empty-class-layout.cpp | 127 struct Field : virtual Empty { }; 129 Field f; 140 struct Field : virtual Empty { }; 142 Field f;
|
/external/guava/guava/src/com/google/common/base/internal/ |
Finalizer.java | 23 import java.lang.reflect.Field; 106 private static final Field inheritableThreadLocals 201 public static Field getInheritableThreadLocalsField() { 203 Field inheritableThreadLocals
|
/external/llvm/bindings/ocaml/bitwriter/ |
bitwriter_ocaml.c | 38 Unbuffered = Bool_val(Field(U, 0));
|
/external/proguard/src/proguard/classfile/attribute/ |
DeprecatedAttribute.java | 57 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor) 59 attributeVisitor.visitDeprecatedAttribute(clazz, field, this);
|
SyntheticAttribute.java | 57 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor) 59 attributeVisitor.visitSyntheticAttribute(clazz, field, this);
|
/external/proguard/src/proguard/classfile/attribute/annotation/ |
RuntimeInvisibleAnnotationsAttribute.java | 60 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor) 62 attributeVisitor.visitRuntimeInvisibleAnnotationsAttribute(clazz, field, this);
|
RuntimeVisibleAnnotationsAttribute.java | 60 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor) 62 attributeVisitor.visitRuntimeVisibleAnnotationsAttribute(clazz, field, this);
|
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/ |
AllAnnotationVisitor.java | 65 public void visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Field field, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute) 68 runtimeVisibleAnnotationsAttribute.annotationsAccept(clazz, field, annotationVisitor); 86 public void visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, Field field, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute) 89 runtimeInvisibleAnnotationsAttribute.annotationsAccept(clazz, field, annotationVisitor); 114 public void visitRuntimeVisibleTypeAnnotationsAttribute(Clazz clazz, Field field, RuntimeVisibleTypeAnnotationsAttribute runtimeVisibleTypeAnnotationsAttribute) 117 runtimeVisibleTypeAnnotationsAttribute.annotationsAccept(clazz, field, annotationVisitor); 142 public void visitRuntimeInvisibleTypeAnnotationsAttribute(Clazz clazz, Field field, RuntimeInvisibleTypeAnnotationsAttribute runtimeInvisibleTypeAnnotationsAttribute [all...] |
AnnotationVisitor.java | 38 public void visitAnnotation(Clazz clazz, Field field, Annotation annotation);
|
TypeAnnotationVisitor.java | 38 public void visitTypeAnnotation(Clazz clazz, Field field, TypeAnnotation typeAnnotation);
|
TypePathInfoVisitor.java | 38 public void visitTypePathInfo(Clazz clazz, Field field, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo);
|
/external/proguard/src/proguard/optimize/info/ |
ReadWriteFieldMarker.java | 62 // Mark the field, if any, as being read from and written to. 70 // Mark the field as being read from. 78 // Mark the field as being written to. 94 // Mark the referenced field, if any. 101 // Mark the referenced field. 113 // Mark the field if it is being read from. 119 // Mark the field if it is being written to. 129 private static void markAsRead(Field field) 131 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field); [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/ |
Field.java | 42 * This class represents a specific field definition in a class. 45 * and shouldn't take into account any non-FieldReference specifics of this field. 47 public interface Field extends FieldReference, Member { 49 * Gets the type of the class that defines this field. 51 * @return The type of the class that defines this field 56 * Gets the name of this field. 58 * @return The name of this field 63 * Gets the type of this field. 65 * @return The type of this field 70 * Gets the access flags for this field [all...] |
/external/tpm2/generator/ |
structure_generator_test.py | 83 struct.AddField(structure_generator.Field('UINT16', 'type', None, False)) 84 struct.AddField(structure_generator.Field('TPMI_TYPE', 'interfaceField0', 86 struct.AddField(structure_generator.Field('TPMI_TYPE', 'interfaceField1', 88 struct.AddField(structure_generator.Field('TPMU_SYM_MODE', 'unionField', 90 struct.AddField(structure_generator.Field('UINT16', 'arrayField', 97 union.AddField(structure_generator.Field('UINT16', 'aes', None)) 98 union.AddField(structure_generator.Field('UINT16', 'SM4', None)) 116 union.AddField(structure_generator.Field('UINT16', 'aes', None)) 117 union.AddField(structure_generator.Field('UINT16', 'SM4', None))
|