Home | History | Annotate | Download | only in view

Lines Matching refs:NO_ID

690     public static final int NO_ID = -1;
1555 int mID = NO_ID;
1560 int mAccessibilityViewId = NO_ID;
2838 private int mLabelForId = View.NO_ID;
3006 private int mNextFocusLeftId = View.NO_ID;
3012 private int mNextFocusRightId = View.NO_ID;
3018 private int mNextFocusUpId = View.NO_ID;
3024 private int mNextFocusDownId = View.NO_ID;
3030 int mNextFocusForwardId = View.NO_ID;
3405 mID = a.getResourceId(attr, NO_ID);
3480 setLabelFor(a.getResourceId(attr, NO_ID));
3543 mNextFocusLeftId = a.getResourceId(attr, View.NO_ID);
3546 mNextFocusRightId = a.getResourceId(attr, View.NO_ID);
3549 mNextFocusUpId = a.getResourceId(attr, View.NO_ID);
3552 mNextFocusDownId = a.getResourceId(attr, View.NO_ID);
3555 mNextFocusForwardId = a.getResourceId(attr, View.NO_ID);
3581 String idText = id == NO_ID ? "" : " with id '"
3777 if (id != NO_ID) {
4868 return provider.createAccessibilityNodeInfo(View.NO_ID);
4978 if (mID != View.NO_ID) {
4989 if (mLabelForId != View.NO_ID) {
5180 * If this {@link View} is not attached to any window, {@value #NO_ID} is returned.
5187 if (mAccessibilityViewId == NO_ID) {
5201 return mAttachInfo != null ? mAttachInfo.mAccessibilityWindowId : NO_ID;
5268 if (mLabelForId != View.NO_ID
5269 && mID == View.NO_ID) {
5426 * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
5436 * @param nextFocusLeftId The next focus ID, or {@link #NO_ID} if the framework should
5447 * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
5457 * @param nextFocusRightId The next focus ID, or {@link #NO_ID} if the framework should
5468 * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
5478 * @param nextFocusUpId The next focus ID, or {@link #NO_ID} if the framework should
5489 * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
5499 * @param nextFocusDownId The next focus ID, or {@link #NO_ID} if the framework should
5510 * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
5520 * @param nextFocusForwardId The next focus ID, or {@link #NO_ID} if the framework should
6306 if (mNextFocusLeftId == View.NO_ID) return null;
6309 if (mNextFocusRightId == View.NO_ID) return null;
6312 if (mNextFocusUpId == View.NO_ID) return null;
6315 if (mNextFocusDownId == View.NO_ID) return null;
6318 if (mNextFocusForwardId == View.NO_ID) return null;
6321 if (mID == View.NO_ID) return null;
12015 if (mID != NO_ID && (mViewFlags & SAVE_DISABLED_MASK) == 0) {
12082 if (mID != NO_ID) {
15200 * @see #NO_ID
15210 if (mID == View.NO_ID && mLabelForId != View.NO_ID) {
15241 * @return a positive integer used to identify the view or {@link #NO_ID}
17912 int mAccessibilityWindowId = View.NO_ID;