HomeSort by relevance Sort by last modified time
    Searched refs:TYPE_NULL (Results 1 - 25 of 214) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/base/libs/androidfw/
AttributeResolution.cpp 112 value.dataType = Res_value::TYPE_NULL;
140 if (value.dataType != Res_value::TYPE_NULL) {
168 // Deal with the special @null value -- it turns back to TYPE_NULL.
173 value.dataType = Res_value::TYPE_NULL;
191 (value.dataType != Res_value::TYPE_NULL || value.data == Res_value::DATA_NULL_EMPTY)) {
239 value.dataType = Res_value::TYPE_NULL;
286 value.dataType = Res_value::TYPE_NULL;
304 if (value.dataType == Res_value::TYPE_NULL && value.data != Res_value::DATA_NULL_EMPTY) {
318 if (value.dataType == Res_value::TYPE_NULL && value.data != Res_value::DATA_NULL_EMPTY) {
333 if (value.dataType != Res_value::TYPE_NULL) {
    [all...]
  /frameworks/base/core/java/android/text/
InputType.java 75 public static final int TYPE_NULL = 0x00000000;
  /frameworks/base/core/java/android/content/res/
TypedArray.java 181 if (type == TypedValue.TYPE_NULL) {
192 // We already checked for TYPE_NULL. This should never happen.
218 if (type == TypedValue.TYPE_NULL) {
230 // We already checked for TYPE_NULL. This should never happen.
293 if (type == TypedValue.TYPE_NULL) {
305 // We already checked for TYPE_NULL. This should never happen.
334 if (type == TypedValue.TYPE_NULL) {
347 // We already checked for TYPE_NULL. This should never happen.
373 if (type == TypedValue.TYPE_NULL) {
386 // We already checked for TYPE_NULL. This should never happen
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
object_writer.cc 80 case DataPiece::TYPE_NULL: {
datapiece.h 75 TYPE_NULL = 11, // explicit NULL type
102 static DataPiece NullData() { return DataPiece(TYPE_NULL, 0); }
datapiece.cc 241 case TYPE_NULL:
263 if (type_ == TYPE_NULL) return google::protobuf::NULL_VALUE;
  /frameworks/base/core/java/android/view/animation/
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/support/compat/src/main/java/androidx/core/view/
PointerIconCompat.java 35 /** Synonym for {@link android.view.PointerIcon#TYPE_NULL} */
36 public static final int TYPE_NULL = 0;
  /frameworks/base/libs/androidfw/tests/
AttributeResolution_test.cpp 141 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]);
151 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]);
168 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]);
176 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]);
200 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]);
223 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]);
263 EXPECT_EQ(Res_value::TYPE_NULL, values_cursor[STYLE_TYPE]);
  /frameworks/support/compat/src/androidTest/java/androidx/core/view/
PointerIconCompatTest.java 81 compareSystemIcon(PointerIcon.TYPE_NULL, PointerIconCompat.TYPE_NULL);
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSRecordType.java 57 TYPE_NULL("null", 10),
  /cts/tests/tests/content/src/android/content/res/cts/
Resources_ThemeTest.java 180 assertEquals(TypedValue.TYPE_NULL, tv.type);
186 assertEquals(TypedValue.TYPE_NULL, tv.type);
192 assertNotSame(TypedValue.TYPE_NULL, tv.type);
TypedArrayTest.java 95 assertEquals(TypedValue.TYPE_NULL, t.getType(R.styleable.style1_typeEmpty));
96 assertEquals(TypedValue.TYPE_NULL, t.getType(R.styleable.style1_typeUndefined));
175 // R.styleable.style1_typeUndefined is not expected because TYPE_NULL values do not get
262 assertEquals(TypedValue.TYPE_NULL, ta.getType(R.styleable.style1_type1));
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ContentFrameLayout.java 108 if (tvw != null && tvw.type != TypedValue.TYPE_NULL) {
127 if (tvh != null && tvh.type != TypedValue.TYPE_NULL) {
152 if (tv != null && tv.type != TypedValue.TYPE_NULL) {
  /frameworks/base/core/java/android/view/
PointerIcon.java 54 public static final int TYPE_NULL = 0;
144 private static final PointerIcon gNullIcon = new PointerIcon(TYPE_NULL);
167 * @see #TYPE_NULL
202 if (type == TYPE_NULL) {
339 if (type == TYPE_NULL) {
368 if (mType != TYPE_NULL) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TypedValueTest.java 34 String nullString = TypedValue.coerceToString(TypedValue.TYPE_NULL, 0);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTypedArray.java 77 if (type != TypedValue.TYPE_NULL) {
93 .put(TypedValue.TYPE_NULL, "TYPE_NULL")
  /frameworks/base/core/java/android/util/
TypedValue.java 28 public static final int TYPE_NULL = 0x00;
145 * {@link #TYPE_NULL} data indicating the value was not specified.
149 * {@link #TYPE_NULL} data indicating the value was explicitly set to null.
483 case TYPE_NULL:
  /frameworks/base/tools/aapt/
XMLNode.h 80 value.dataType = Res_value::TYPE_NULL;
85 || value.dataType == Res_value::TYPE_NULL
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputAttributes.java 74 } else if (InputType.TYPE_NULL == inputType) {
75 // TODO: We should honor TYPE_NULL specification.
76 Log.i(TAG, "InputType.TYPE_NULL is specified");
145 return InputType.TYPE_NULL == mInputType;
  /device/google/contexthub/util/common/
JSONObject.cpp 353 : mType(TYPE_NULL) {
357 : mType(TYPE_NULL) {
518 mType = TYPE_NULL;
595 case TYPE_NULL:
  /frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
EmojiExtractTextLayout.java 172 && ei.inputType != InputType.TYPE_NULL);
  /frameworks/base/tools/aapt2/
ResourceUtils_test.cpp 199 ASSERT_THAT(ResourceUtils::MakeEmpty(), Pointee(ValueEq(BinaryPrimitive(Res_value::TYPE_NULL, Res_value::DATA_NULL_EMPTY))));
200 ASSERT_THAT(ResourceUtils::TryParseNullOrEmpty("@empty"), Pointee(ValueEq(BinaryPrimitive(Res_value::TYPE_NULL, Res_value::DATA_NULL_EMPTY))));
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h 52 TYPE_NULL = 0,
104 default: assert(0); return TYPE_NULL;
353 bool IsNull() const { return type_ == TYPE_NULL; }
388 case TYPE_NULL: return 0;
416 case TYPE_NULL: return 0;
444 case TYPE_NULL: return 0.0;
723 return PackedType(BIT_WIDTH_8, TYPE_NULL);
    [all...]
  /frameworks/layoutlib/bridge/src/android/content/res/
BridgeTypedArray.java 55 import static android.util.TypedValue.TYPE_NULL;
803 case TYPE_NULL:
824 return TYPE_NULL;
    [all...]

Completed in 922 milliseconds

1 2 3 4 5 6 7 8 9