/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/v4/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;
|
/external/guava/guava-tests/test/com/google/common/net/ |
MediaTypeTest.java | 50 import java.lang.reflect.Field; 77 for (Field field : getConstantFields()) { 78 Optional<Charset> charset = ((MediaType) field.get(null)).charset(); 79 if (field.getName().endsWith("_UTF_8")) { 87 @GwtIncompatible("reflection") private static FluentIterable<Field> getConstantFields() { 89 .filter(new Predicate<Field>() { 90 @Override public boolean apply(Field input) { 100 .transform(new Function<Field, MediaType>() { 101 @Override public MediaType apply(Field input) [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/ |
ICUDurationTest.java | 18 import javax.xml.datatype.DatatypeConstants.Field; 37 * The ICU DurationFormat just extracts the field values, 44 private final Map<Field, Number> fields; 47 fields = new HashMap<Field, Number>(); 80 fields = new HashMap<Field, Number>(); 89 private ICUTestDuration(int sgn, Map<Field, Number> f) { 110 public Number getField(Field field) { 111 return fields.get(field); 125 public boolean isSet(Field field) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/ |
ICUDurationTest.java | 17 import javax.xml.datatype.DatatypeConstants.Field; 33 * The ICU DurationFormat just extracts the field values, 40 private final Map<Field, Number> fields; 43 fields = new HashMap<Field, Number>(); 76 fields = new HashMap<Field, Number>(); 85 private ICUTestDuration(int sgn, Map<Field, Number> f) { 106 public Number getField(Field field) { 107 return fields.get(field); 121 public boolean isSet(Field field) [all...] |
/frameworks/support/v4/jellybean/android/support/v4/app/ |
NotificationCompatJellybean.java | 29 import java.lang.reflect.Field; 55 private static Field sExtrasField; 60 private static Field sActionsField; 61 private static Field sActionIconField; 62 private static Field sActionTitleField; 63 private static Field sActionIntentField; 222 * Jellybean notifications, but the field was private until KitKat. 231 Field extrasField = Notification.class.getDeclaredField("extras"); 233 Log.e(TAG, "Notification.extras field is not of type Bundle");
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
SimpleDateFormat.java | 76 * <th>Field</th> 442 * <td>Milliseconds in day. This field behaves <i>exactly</i> like a composite of all time-related fields, 445 * reflects the fact that is must be combined with the offset field to obtain a unique local time value.</td> 466 * The format is equivalent to RFC 822 zone format (when optional seconds field is absent). 545 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field. 568 * (Note: The seconds field is not supported by the ISO8601 specification.) 577 * (Note: The seconds field is not supported by the ISO8601 specification.) 585 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field.</td 1529 final int field = PATTERN_INDEX_TO_CALENDAR_FIELD[patternCharIndex]; local 2200 PatternItem field = (PatternItem)items[i]; local 2830 int field = PATTERN_INDEX_TO_CALENDAR_FIELD[patternCharIndex]; \/\/ -1 if irrelevant local 3971 final int field = PATTERN_INDEX_TO_CALENDAR_FIELD[patternCharIndex]; local 4043 char field = fields.charAt(i); local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
SimpleDateFormat.java | 75 * <th>Field</th> 441 * <td>Milliseconds in day. This field behaves <i>exactly</i> like a composite of all time-related fields, 444 * reflects the fact that is must be combined with the offset field to obtain a unique local time value.</td> 465 * The format is equivalent to RFC 822 zone format (when optional seconds field is absent). 544 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field. 567 * (Note: The seconds field is not supported by the ISO8601 specification.) 576 * (Note: The seconds field is not supported by the ISO8601 specification.) 584 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field.</td 1539 final int field = PATTERN_INDEX_TO_CALENDAR_FIELD[patternCharIndex]; local 2213 PatternItem field = (PatternItem)items[i]; local 2846 int field = PATTERN_INDEX_TO_CALENDAR_FIELD[patternCharIndex]; \/\/ -1 if irrelevant local 4000 final int field = PATTERN_INDEX_TO_CALENDAR_FIELD[patternCharIndex]; local 4073 char field = fields.charAt(i); local [all...] |
/external/llvm/bindings/ocaml/target/ |
target_ocaml.c | 261 CPUStr = String_val(Field(CPU, 0)); 263 FeaturesStr = String_val(Field(Features, 0)); 265 OptLevelEnum = Int_val(Field(OptLevel, 0)); 267 RelocModeEnum = Int_val(Field(RelocMode, 0)); 269 CodeModelEnum = Int_val(Field(CodeModel, 0));
|
/frameworks/base/core/java/android/view/ |
ViewDebug.java | 44 import java.lang.reflect.Field; 91 @Target({ ElementType.FIELD, ElementType.METHOD }) 95 * When resolveId is true, and if the annotated field/method return value 276 @Target({ ElementType.FIELD, ElementType.METHOD }) 319 private static HashMap<Class<?>, Field[]> mCapturedViewFieldsForClasses = null; 333 private static HashMap<Class<?>, Field[]> sFieldsForClasses; 1258 final Field field = fields[i]; local 1472 final Field field = fields[i]; local 1571 final Field field = fields[i]; local [all...] |
/libcore/ojluni/src/main/java/java/text/ |
MessageFormat.java | [all...] |
/external/clang/lib/AST/ |
DeclCXX.cpp | 205 // Record if this base is the first non-literal field or base. 625 if (FieldDecl *Field = dyn_cast<FieldDecl>(D)) { 627 // A declaration for a bit-field that omits the identifier declares an 628 // unnamed bit-field. Unnamed bit-fields are not members and cannot be 630 if (Field->isUnnamedBitfield()) 658 if (Field->isMutable()) 664 if (isUnion() && !Field->isAnonymousStructOrUnion()) 675 QualType T = Context.getBaseElementType(Field->getType()); 696 if (!Field->hasInClassInitializer()) 705 // Record if this field is the first non-literal or volatile field or base [all...] |
/external/conscrypt/src/compat/java/org/conscrypt/ |
Platform.java | 25 import java.lang.reflect.Field; 76 Field f_impl = Socket.class.getDeclaredField("impl"); 80 Field f_fd = c_socketImpl.getDeclaredField("fd"); 133 Field f_os = c_Libcore.getField("os"); 138 Field f_SOL_SOCKET = c_osConstants.getField("SOL_SOCKET"); 139 Field f_SO_SNDTIMEO = c_osConstants.getField("SO_SNDTIMEO");
|
/frameworks/compile/slang/ |
slang_rs_export_type.h | 540 class Field { 543 // Field name 545 // Link to the struct that contain this field 551 Field(const RSExportType *T, 567 typedef std::list<const Field*>::const_iterator const_field_iterator; 577 std::list<const Field*> mFields; 610 inline const std::list<const Field*>& getFields() const { return mFields; } 624 for (std::list<const Field*>::iterator I = mFields.begin(),
|
/external/icu/icu4c/source/tools/toolutil/ |
udbgutil.cpp | 34 7. Define the field names, in order. 35 " static const Field names_UShoeSize[] = { 49 10. Find the function _udbg_enumFields and add the field macro: 57 struct Field { 69 * Define another field name. Used in an array of Field s 72 * @see Field 86 static const Field names_UCalendarDateFields[] = 115 static const Field names_UCalendarMonths[] = 136 static const Field names_UDateFormatStyle[] [all...] |
/external/proguard/src/proguard/classfile/util/ |
SimplifiedVisitor.java | 289 public void visitDeprecatedAttribute(Clazz clazz, Field field, DeprecatedAttribute deprecatedAttribute) 291 visitDeprecatedAttribute(clazz, (Member)field, deprecatedAttribute); 316 public void visitSyntheticAttribute(Clazz clazz, Field field, SyntheticAttribute syntheticAttribute) 318 visitSyntheticAttribute(clazz, (Member)field, syntheticAttribute); 343 public void visitSignatureAttribute(Clazz clazz, Field field, SignatureAttribute signatureAttribute) 345 visitSignatureAttribute(clazz, (Member)field, signatureAttribute); 355 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute [all...] |
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
simulcast_unittest.h | 30 using ::testing::Field; 333 AllOf(Field(&EncodedImage::_frameType, frame_type), 334 Field(&EncodedImage::_encodedWidth, kDefaultWidth / 4), 335 Field(&EncodedImage::_encodedHeight, kDefaultHeight / 4)), 344 AllOf(Field(&EncodedImage::_frameType, frame_type), 345 Field(&EncodedImage::_encodedWidth, kDefaultWidth / 2), 346 Field(&EncodedImage::_encodedHeight, kDefaultHeight / 2)), 354 Encoded(AllOf(Field(&EncodedImage::_frameType, frame_type), 355 Field(&EncodedImage::_encodedWidth, kDefaultWidth), 356 Field(&EncodedImage::_encodedHeight, kDefaultHeight)) [all...] |
/libcore/ojluni/src/main/java/java/lang/ |
Class.java | 33 import java.lang.reflect.Field; 192 * All instance fields that refer to objects are guaranteed to be at the beginning of the field [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/ |
SensorFeaturesDeactivator.java | 26 import java.lang.reflect.Field; 133 // static field is not hidden anymore 135 Field dozeEnabledField;
|