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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/widget/
RtlSpacingHelper.java 26 public static final int UNDEFINED = Integer.MIN_VALUE;
30 private int mStart = UNDEFINED;
31 private int mEnd = UNDEFINED;
59 if (end != UNDEFINED) mLeft = end;
60 if (start != UNDEFINED) mRight = start;
62 if (start != UNDEFINED) mLeft = start;
63 if (end != UNDEFINED) mRight = end;
69 if (left != UNDEFINED) mLeft = mExplicitLeft = left;
70 if (right != UNDEFINED) mRight = mExplicitRight = right;
80 mLeft = mEnd != UNDEFINED ? mEnd : mExplicitLeft
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
RtlSpacingHelper.java 26 public static final int UNDEFINED = Integer.MIN_VALUE;
30 private int mStart = UNDEFINED;
31 private int mEnd = UNDEFINED;
59 if (end != UNDEFINED) mLeft = end;
60 if (start != UNDEFINED) mRight = start;
62 if (start != UNDEFINED) mLeft = start;
63 if (end != UNDEFINED) mRight = end;
69 if (left != UNDEFINED) mLeft = mExplicitLeft = left;
70 if (right != UNDEFINED) mRight = mExplicitRight = right;
80 mLeft = mEnd != UNDEFINED ? mEnd : mExplicitLeft
    [all...]
  /frameworks/base/core/java/android/util/
LayoutDirection.java 30 * An undefined layout direction.
33 public static final int UNDEFINED = -1;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
mask_1.s 8 .inst 0xfefb0ae0 @ <UNDEFINED> instruction: 0xfefb0ae0
9 .inst 0xfefb0be0 @ <UNDEFINED> instruction: 0xfefb0be0
10 .inst 0xfefb0ae0 @ <UNDEFINED> instruction: 0xfefb0ae0
11 .inst 0xfefb0be0 @ <UNDEFINED> instruction: 0xfefb0be0
12 .inst 0xfef80ae0 @ <UNDEFINED> instruction: 0xfef80ae0
13 .inst 0xfef80be0 @ <UNDEFINED> instruction: 0xfef80be0
14 .inst 0xfef90ae0 @ <UNDEFINED> instruction: 0xfef90ae0
15 .inst 0xfef90be0 @ <UNDEFINED> instruction: 0xfef90be0
16 .inst 0xfefa0ae0 @ <UNDEFINED> instruction: 0xfefa0ae0
17 .inst 0xfefa0be0 @ <UNDEFINED> instruction: 0xfefa0be
    [all...]
mask_1.d 19 0+018 <.*> fefb0ae0 ; <UNDEFINED> instruction: 0xfefb0ae0
20 0+01c <.*> fefb0be0 ; <UNDEFINED> instruction: 0xfefb0be0
21 0+020 <.*> fefb0ae0 ; <UNDEFINED> instruction: 0xfefb0ae0
22 0+024 <.*> fefb0be0 ; <UNDEFINED> instruction: 0xfefb0be0
23 0+028 <.*> fef80ae0 ; <UNDEFINED> instruction: 0xfef80ae0
24 0+02c <.*> fef80be0 ; <UNDEFINED> instruction: 0xfef80be0
25 0+030 <.*> fef90ae0 ; <UNDEFINED> instruction: 0xfef90ae0
26 0+034 <.*> fef90be0 ; <UNDEFINED> instruction: 0xfef90be0
27 0+038 <.*> fefa0ae0 ; <UNDEFINED> instruction: 0xfefa0ae0
28 0+03c <.*> fefa0be0 ; <UNDEFINED> instruction: 0xfefa0be
    [all...]
  /frameworks/base/core/java/android/app/servertransaction/
ClientTransactionItem.java 20 import static android.app.servertransaction.ActivityLifecycleItem.UNDEFINED;
38 return UNDEFINED;
ActivityLifecycleItem.java 30 @IntDef(prefix = { "UNDEFINED", "PRE_", "ON_" }, value = {
31 UNDEFINED,
43 public static final int UNDEFINED = -1;
TransactionExecutorHelper.java 27 import static android.app.servertransaction.ActivityLifecycleItem.UNDEFINED;
60 if (start == UNDEFINED || finish == UNDEFINED) {
61 throw new IllegalArgumentException("Can't resolve lifecycle path for undefined state");
124 * {@link ActivityLifecycleItem#UNDEFINED} if there is not path.
130 case UNDEFINED:
131 return UNDEFINED;
146 * @return One of the provided final states, or {@link ActivityLifecycleItem#UNDEFINED} if none
152 return UNDEFINED;
156 int closestState = UNDEFINED;
    [all...]
  /external/cblas/testing/
auxiliary.c 15 else *trans = UNDEFINED;
23 else *uplo = UNDEFINED;
30 else *diag = UNDEFINED;
37 else *side = UNDEFINED;
  /frameworks/support/room/common/src/main/java/androidx/room/
ColumnInfo.java 45 * If it is not specified, the value defaults to {@link #UNDEFINED} and Room resolves it based
51 * @return The type affinity of the column. This is either {@link #UNDEFINED}, {@link #TEXT},
54 @SuppressWarnings("unused") @SQLiteTypeAffinity int typeAffinity() default UNDEFINED;
83 * Undefined type affinity. Will be resolved based on the type.
87 int UNDEFINED = 1;
116 @IntDef({UNDEFINED, TEXT, INTEGER, REAL, BLOB})
  /build/kati/testcase/
ifeq_without_parens.mk 4 UNDEFREF=UNDEFINED
30 ifeq "$(UNDEFINED)" ""
35 ifeq "" "$(UNDEFINED)"
cond_syntax.mk 4 UNDEFREF=UNDEFINED
22 ifdef UNDEFINED
48 ifndef UNDEFINED
70 ifeq ($(UNDEFINED),)
75 ifeq (,$(UNDEFINED))
  /external/compiler-rt/make/
lib_platforms.mk 28 $$(call Set,$$(var),UNDEFINED))
31 $$(call Set,$$(var).$$(config),UNDEFINED)))
34 $$(call Set,$$(var).$$(arch),UNDEFINED)))
40 # Check for undefined required variables.
42 $$(if $$(call strneq,UNDEFINED,$$($$(var))),, \
43 $$(error $(Dir): variable '$$(var)' was not undefined)))
46 $$(if $$(and $$(call strneq,UNDEFINED,$$(UniversalArchs)),\
47 $$(call strneq,UNDEFINED,$$(Arch))),\
49 $$(if $$(or $$(call strneq,UNDEFINED,$$(UniversalArchs)),\
50 $$(call strneq,UNDEFINED,$$(Arch))),,
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/focus/
NavigateTaskViewEvent.java 27 UNDEFINED, UP, DOWN, LEFT, RIGHT;
46 return Direction.UNDEFINED;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
hex.l 14 NO UNDEFINED SYMBOLS
1cjmp1b.l 15 NO UNDEFINED SYMBOLS
1hjmp1b.l 15 NO UNDEFINED SYMBOLS
get-op.l 18 NO UNDEFINED SYMBOLS
list-pseudoints.l 20 NO UNDEFINED SYMBOLS
list-textfirst.l 18 NO UNDEFINED SYMBOLS
reloc16.l 15 UNDEFINED SYMBOLS
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
NameLookupBuilderTest.java 86 mBuilder.insertNameLookup(0, 0, "", FullNameStyle.UNDEFINED);
91 mBuilder.insertNameLookup(0, 0, "Foo", FullNameStyle.UNDEFINED);
96 mBuilder.insertNameLookup(0, 0, "Mr. Foo", FullNameStyle.UNDEFINED);
101 mBuilder.insertNameLookup(0, 0, "Foo Bar", FullNameStyle.UNDEFINED);
106 mBuilder.insertNameLookup(0, 0, "Foo Bar Baz", FullNameStyle.UNDEFINED);
121 mBuilder.insertNameLookup(0, 0, "Foo Bar Baz Biz", FullNameStyle.UNDEFINED);
155 mBuilder.insertNameLookup(0, 0, "Bill", FullNameStyle.UNDEFINED);
160 mBuilder.insertNameLookup(0, 0, "Al", FullNameStyle.UNDEFINED);
165 mBuilder.insertNameLookup(0, 0, "Foo Al", FullNameStyle.UNDEFINED);
174 mBuilder.insertNameLookup(0, 0, "Bill Al", FullNameStyle.UNDEFINED);
    [all...]
  /external/clang/test/Frontend/
verify.c 69 # ifdef UNDEFINED // expected-note {{line_69_ignored}}
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityRecord.java 63 private static final int UNDEFINED = -1;
87 int mCurrentItemIndex = UNDEFINED;
88 int mItemCount = UNDEFINED;
89 int mFromIndex = UNDEFINED;
90 int mToIndex = UNDEFINED;
91 int mScrollX = UNDEFINED;
92 int mScrollY = UNDEFINED;
94 int mScrollDeltaX = UNDEFINED;
95 int mScrollDeltaY = UNDEFINED;
96 int mMaxScrollX = UNDEFINED;
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/database/
FilteredNumberContract.java 36 int UNDEFINED = 0;
44 int UNDEFINED = 0;

Completed in 3340 milliseconds

1 2 3 4 5 6 7 8 91011>>