Searched refs:propertyReader (Results 1 – 9 of 9) sorted by relevance
/aosp12/frameworks/base/tools/processors/view_inspector/test/resources/android/processor/view/inspector/InspectionCompanionGeneratorTest/ |
H A D | SimpleProperties.java.txt | 103 propertyReader.readBoolean(mBooleanId, node.getBoolean()); 104 propertyReader.readByte(mByteId, node.getByte()); 105 propertyReader.readChar(mCharId, node.getChar()); 106 propertyReader.readColor(mColorId, node.getColor()); 107 propertyReader.readDouble(mDoubleId, node.getDouble()); 108 propertyReader.readFloat(mFloatId, node.getFloat()); 109 propertyReader.readGravity(mGravityId, node.getGravity()); 110 propertyReader.readInt(mIntId, node.getInt()); 111 propertyReader.readLong(mLongId, node.getLong()); 112 propertyReader.readObject(mObjectId, node.getObject()); [all …]
|
H A D | NoAttributeId.java.txt | 32 public void readProperties(TestNode node, PropertyReader propertyReader) { 36 propertyReader.readInt(mNoAttributePropertyId, node.getNoAttributeProperty());
|
H A D | FieldProperty.java.txt | 33 public void readProperties(TestNode node, PropertyReader propertyReader) { 37 propertyReader.readInt(mFieldPropertyId, node.fieldProperty);
|
H A D | SuppliedAttributeId.java.txt | 32 public void readProperties(TestNode node, PropertyReader propertyReader) { 36 propertyReader.readInt(mSuppliedAttributePropertyId, node.getSuppliedAttributeProperty());
|
H A D | IntFlag.java.txt | 37 public void readProperties(TestNode node, PropertyReader propertyReader) { 41 propertyReader.readIntFlag(mIntFlagId, node.getIntFlag());
|
H A D | IntEnum.java.txt | 39 public void readProperties(TestNode node, PropertyReader propertyReader) { 43 propertyReader.readIntEnum(mIntEnumPropertyId, node.getIntEnumProperty());
|
H A D | NestedClass.java.txt | 26 public void readProperties(Outer.Inner node, PropertyReader propertyReader) {
|
/aosp12/frameworks/base/core/java/android/widget/ |
H A D | RelativeLayout.java | 1835 @NonNull PropertyReader propertyReader in readProperties() argument 1843 propertyReader.readResourceId(mAboveId, rules[ABOVE]); in readProperties() 1846 propertyReader.readResourceId(mAlignEndId, rules[ALIGN_END]); in readProperties() 1847 propertyReader.readResourceId(mAlignLeftId, rules[ALIGN_LEFT]); in readProperties() 1848 propertyReader.readBoolean( in readProperties() 1857 propertyReader.readResourceId(mAlignTopId, rules[ALIGN_TOP]); in readProperties() 1859 propertyReader.readResourceId(mBelowId, rules[BELOW]); in readProperties() 1863 propertyReader.readResourceId(mToEndOfId, rules[END_OF]); in readProperties() 1864 propertyReader.readResourceId(mToLeftOfId, rules[LEFT_OF]); in readProperties() 1865 propertyReader.readResourceId(mToRightOfId, rules[RIGHT_OF]); in readProperties() [all …]
|
/aosp12/frameworks/base/core/java/android/view/inspector/ |
H A D | InspectionCompanion.java | 62 void readProperties(@NonNull T inspectable, @NonNull PropertyReader propertyReader); in readProperties() argument
|