Searched defs:HIDDEN (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItem.java56 private static final int HIDDEN = 0x00000008; field in class:ActionMenuItem
130 return (mFlags & HIDDEN) == 0;
207 mFlags = (mFlags & HIDDEN) | (visible ? 0 : HIDDEN);
H A DMenuItemImpl.java76 private static final int HIDDEN = 0x00000008; field in class:MenuItemImpl
460 return (mFlags & HIDDEN) == 0 && mActionProvider.isVisible();
462 return (mFlags & HIDDEN) == 0;
476 mFlags = (mFlags & ~HIDDEN) | (shown ? 0 : HIDDEN);
/frameworks/base/core/java/android/view/
H A DSurface.java103 public static final int HIDDEN = 0x00000004; field in class:Surface
295 * created with the {@link #HIDDEN} flag set to ensure that they are not
299 * Good practice is to first create the surface with the {@link #HIDDEN} flag
307 * @param flags The surface creation flags. Should always include {@link #HIDDEN}
321 if ((flags & HIDDEN) == 0) {
322 Log.w(TAG, "Surfaces should always be created with the HIDDEN flag set "

Completed in 913 milliseconds