/frameworks/base/core/java/android/content/res/ |
D | TypedArray.java | 231 if (type == TypedValue.TYPE_NULL) { in getText() 268 if (type == TypedValue.TYPE_NULL) { in getString() 344 if (type == TypedValue.TYPE_NULL) { in getNonConfigurationString() 386 if (type == TypedValue.TYPE_NULL) { in getBoolean() 425 if (type == TypedValue.TYPE_NULL) { in getInt() 462 if (type == TypedValue.TYPE_NULL) { in getFloat() 513 if (type == TypedValue.TYPE_NULL) { in getColor() 634 if (type == TypedValue.TYPE_NULL) { in getInteger() 683 if (type == TypedValue.TYPE_NULL) { in getDimension() 732 if (type == TypedValue.TYPE_NULL) { in getDimensionPixelOffset() [all …]
|
D | XmlBlock.java | 237 if (t == TypedValue.TYPE_NULL) { in getAttributeValue()
|
/frameworks/base/libs/androidfw/ |
D | AttributeResolution.cpp | 167 if (value.type != Res_value::TYPE_NULL) { in ResolveAttrs() 191 value.type = Res_value::TYPE_NULL; in ResolveAttrs() 207 (value.type != Res_value::TYPE_NULL || value.data == Res_value::DATA_NULL_EMPTY)) { in ResolveAttrs() 275 if (value.type == Res_value::TYPE_NULL && value.data != Res_value::DATA_NULL_EMPTY) { in ApplyStyle() 287 if (value.type == Res_value::TYPE_NULL && value.data != Res_value::DATA_NULL_EMPTY) { in ApplyStyle() 299 if (value.type != Res_value::TYPE_NULL) { in ApplyStyle() 324 value.type = Res_value::TYPE_NULL; in ApplyStyle() 340 if (value.type != Res_value::TYPE_NULL || value.data == Res_value::DATA_NULL_EMPTY) { in ApplyStyle() 386 if (value.type != Res_value::TYPE_NULL) { in RetrieveAttributes() 396 value.type = Res_value::TYPE_NULL; in RetrieveAttributes() [all …]
|
/frameworks/base/libs/androidfw/tests/ |
D | AttributeResolution_test.cpp | 141 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]); in TEST_F() 151 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]); in TEST_F() 168 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]); in TEST_F() 176 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]); in TEST_F() 200 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]); in TEST_F() 223 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]); in TEST_F() 263 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]); in TEST_F()
|
D | ResTable_test.cpp | 285 ASSERT_EQ(out.TYPE_NULL, out.dataType) << "Failed with " << s; in testU16StringToInt()
|
/frameworks/base/core/java/android/view/animation/ |
D | ScaleAnimation.java | 38 private int mFromXType = TypedValue.TYPE_NULL; 39 private int mToXType = TypedValue.TYPE_NULL; 40 private int mFromYType = TypedValue.TYPE_NULL; 41 private int mToYType = TypedValue.TYPE_NULL;
|
/frameworks/layoutlib/bridge/tests/src/android/content/res/ |
D | BridgeTypedArrayTest.java | 31 import static android.util.TypedValue.TYPE_NULL; 40 assertEquals(TYPE_NULL, BridgeTypedArray.getType(null)); in getType()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/input/ |
D | InputManagerServiceTests.kt | 233 verify(native).setPointerIconType(eq(PointerIcon.TYPE_NULL)) in onDisplayRemoved_resetAllAdditionalInputProperties() 256 verify(native).setPointerIconType(eq(PointerIcon.TYPE_NULL)) in updateAdditionalInputPropertiesForOverrideDisplay() 274 verify(native).setPointerIconType(eq(PointerIcon.TYPE_NULL)) in updateAdditionalInputPropertiesForOverrideDisplay() 287 verify(native).setPointerIconType(eq(PointerIcon.TYPE_NULL)) in setAdditionalInputPropertiesBeforeOverride()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | BinaryXmlSerializer.java | 80 static final int TYPE_NULL = 1 << 4; field in BinaryXmlSerializer 117 mOut.writeByte(token | TYPE_NULL); in writeToken() 155 mOut.writeByte(START_DOCUMENT | TYPE_NULL); in startDocument() 160 mOut.writeByte(END_DOCUMENT | TYPE_NULL); in endDocument()
|
D | BinaryXmlPullParser.java | 31 import static com.android.internal.util.BinaryXmlSerializer.TYPE_NULL; 227 case TYPE_NULL: in consumeToken() 713 case TYPE_NULL: in getValueString() 746 case TYPE_NULL: in getValueBytesHex() 765 case TYPE_NULL: in getValueBytesBase64()
|
/frameworks/base/core/java/android/view/ |
D | PointerIcon.java | 58 public static final int TYPE_NULL = 0; field in PointerIcon 148 private static final PointerIcon gNullIcon = new PointerIcon(TYPE_NULL); 219 if (type == TYPE_NULL) { in getSystemIcon() 370 if (type == TYPE_NULL) { 399 if (mType != TYPE_NULL) { in writeToParcel()
|
/frameworks/base/core/java/android/text/ |
D | InputType.java | 81 public static final int TYPE_NULL = 0x00000000; field
|
/frameworks/base/tools/aapt/ |
D | XMLNode.h | 80 value.dataType = Res_value::TYPE_NULL; in attribute_entry() 85 || value.dataType == Res_value::TYPE_NULL in needStringValue()
|
/frameworks/base/cmds/idmap2/libidmap2/ |
D | ResourceUtils.cpp | 38 case Res_value::TYPE_NULL: in DataTypeToString()
|
/frameworks/base/core/java/android/util/ |
D | TypedValue.java | 34 public static final int TYPE_NULL = 0x00; field in TypedValue 643 case TYPE_NULL: in coerceToString()
|
/frameworks/base/media/java/android/media/ |
D | MediaFormat.java | 1616 public static final int TYPE_NULL = 0; field in MediaFormat 1625 TYPE_NULL, 1641 return TYPE_NULL; in getValueTypeForKey()
|
/frameworks/base/core/java/android/content/ |
D | RestrictionsManager.java | 633 case RestrictionEntry.TYPE_NULL: // hidden in loadRestriction() 718 case RestrictionEntry.TYPE_NULL: in addRestrictionToBundle()
|
D | RestrictionEntry.java | 43 public static final int TYPE_NULL = 0; field in RestrictionEntry
|
/frameworks/base/tools/aapt2/ |
D | ResourceUtils_test.cpp | 215 …ASSERT_THAT(ResourceUtils::MakeEmpty(), Pointee(ValueEq(BinaryPrimitive(Res_value::TYPE_NULL, Res_… in TEST() 216 …yParseNullOrEmpty("@empty"), Pointee(ValueEq(BinaryPrimitive(Res_value::TYPE_NULL, Res_value::DATA… in TEST()
|
D | ResourceUtils.cpp | 366 return util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_NULL, in MakeEmpty() 588 case android::Res_value::TYPE_NULL: in AndroidTypeToAttributeTypeMask()
|
/frameworks/layoutlib/bridge/src/android/content/res/ |
D | BridgeTypedArray.java | 62 import static android.util.TypedValue.TYPE_NULL; 786 case TYPE_NULL: in getValue() 989 return TYPE_NULL; in getType()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | ScreenshotTests.java | 131 PointerIcon.getSystemIcon(this, PointerIcon.TYPE_NULL)); in onCreate()
|
/frameworks/base/core/java/android/text/method/ |
D | TextKeyListener.java | 219 return InputType.TYPE_NULL; in getInputType()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | ScaleDrawable.java | 176 if (type == TypedValue.TYPE_FRACTION || type == TypedValue.TYPE_NULL) { in getPercent()
|
/frameworks/base/cmds/content/src/com/android/commands/content/ |
D | Content.java | 162 private static final String TYPE_NULL = "n"; field in Content.Parser 457 } else if (TYPE_NULL.equalsIgnoreCase(type)) { in parseBindValue()
|