Searched refs:hidden (Results 51 - 75 of 88) sorted by relevance

1234

/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A DFilt_6k_7k_opt.s32 .hidden fir_6k_7k
H A Dpred_lt4_1_opt.s35 .hidden inter4_2
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
H A DFilt_6k_7k_neon.s31 .hidden fir_6k_7k
/frameworks/av/media/libstagefright/codecs/mp3dec/src/asm/
H A Dpvmp3_polyphase_filter_window_gcc.s38 .hidden pqmfSynthWin
/frameworks/base/core/java/android/content/pm/
H A DIPackageManager.aidl541 boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden, int userId);
/frameworks/base/libs/hwui/
H A DAndroid.mk147 hwui_cflags += -fvisibility=hidden
/frameworks/base/services/tests/servicestests/src/com/android/server/webkit/
H A DWebViewUpdateServiceTest.java167 boolean installed, Signature[] signatures, long updateTime, boolean hidden) {
170 if (hidden) {
867 checkVisiblePackageUserOverNonVisible(false /* true == uninstalled, false == hidden */);
871 checkVisiblePackageUserOverNonVisible(true /* true == uninstalled, false == hidden */);
898 checkCantSwitchToNonVisiblePackage(false /* true == uninstalled, false == hidden */);
903 checkCantSwitchToNonVisiblePackage(true /* true == uninstalled, false == hidden */);
907 * Ensure that we won't prioritize an uninstalled (or hidden) package even if it is user-chosen,
908 * and that an uninstalled (or hidden) package is not considered valid (in the
928 (testHidden ? true : false) /* hidden */));
952 false /* true == uninstalled, false == hidden */);
166 createPackageInfo(String packageName, boolean enabled, boolean valid, boolean installed, Signature[] signatures, long updateTime, boolean hidden) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiMetrics.java106 sb.append(", mHidden=" + mRouterFingerPrintProto.hidden);
115 // Is this a hidden network
116 mRouterFingerPrintProto.hidden = config.hiddenSSID;
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiMetricsTest.java216 private ScanDetail buildMockScanDetail(boolean hidden, NetworkDetail.HSRelease hSRelease, argument
223 when(mockNetworkDetail.isHiddenBeaconFrame()).thenReturn(hidden);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseStaggeredGridLayoutManagerTest.java687 final boolean hidden = childEnd <= start || childStart >= end;
688 if (hidden) {
H A DRecyclerViewLayoutTest.java1792 RecyclerView.ViewHolder hidden = null;
1799 assertThat(hidden, CoreMatchers.nullValue());
1800 hidden = vh;
1807 assertThat(hidden, CoreMatchers.notNullValue());
1812 // first put the hidden child back
1813 int index1 = mRecyclerView.indexOfChild(hidden.itemView);
1839 // now remove updated. re-assert fallback to the hidden one
1844 CoreMatchers.sameInstance(hidden));
1846 CoreMatchers.sameInstance(hidden));
1848 CoreMatchers.sameInstance(hidden));
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java174 // This is a non-system overlay window that is currently force hidden.
177 boolean mAttachedHidden; // is our parent window hidden?
1197 * of running an exit animation that will remove the surface, or its app token has been hidden.
1205 * Like {@link #isVisibleLw}, but also counts a window that is currently "hidden" behind the
1208 * "hidden behind keyguard" state rather than overloading mPolicyVisibility. Ungh.
1219 && ((!mAttachedHidden && mViewVisibility == View.VISIBLE && !mRootToken.hidden)
1233 * The same as isVisible(), but follows the current hidden state of the associated app token,
1234 * not the pending requested hidden state.
1237 return (!mRootToken.hidden || mAttrs.type == TYPE_APPLICATION_STARTING)
1324 && ((!mAttachedHidden && mViewVisibility == View.VISIBLE && !mRootToken.hidden)
[all...]
H A DWindowManagerService.java493 /** List of window currently causing non-system overlay windows to be hidden. */
2097 // toast focusable to force it not being hidden after the timeout.
2469 // Do not set mAnimatingExit to true here, it will cause the surface to be hidden
3033 // its layer recomputed. However, if the IME was hidden
3468 if (!wtoken.hidden) {
3495 wtoken.hidden = true;
3588 // Application tokens start out hidden.
3589 atoken.hidden = true;
3714 if (!findingBehind && !atoken.hidden && atoken.hiddenRequested) {
3731 // We ignore any hidden application
[all...]
H A DWindowSurfacePlacer.java363 // something that was hidden.
961 + win.mRelayoutCalled + " hidden="
962 + win.mRootToken.hidden + " hiddenRequested="
967 + win.mRelayoutCalled + " hidden="
968 + win.mRootToken.hidden + " hiddenRequested="
H A DWindowAnimator.java396 + " hidden=" + win.mRootToken.hidden
401 // Was already hidden
405 "Now policy hidden: " + win);
518 // being force-hidden, apply the appropriate animation to them if animations are not
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePackageManager.java738 public boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden, argument
/frameworks/rs/api/
H A DSpecification.h174 bool hidden() const { return mHidden; } function in class:Definition
/frameworks/base/core/java/android/app/admin/
H A DIDevicePolicyManager.aidl195 boolean setApplicationHidden(in ComponentName admin, in String packageName, boolean hidden);
H A DDevicePolicyManager.java584 * is hidden or not.
4035 * A suspended package will not be able to start activities. Its notifications will be hidden,
5210 * Called by profile or device owners to hide or unhide packages. When a package is hidden it is
5215 * @param hidden {@code true} if the package should be hidden, {@code false} if it should be
5217 * @return boolean Whether the hidden setting of the package was successfully updated.
5221 boolean hidden) {
5225 return mService.setApplicationHidden(admin, packageName, hidden);
5234 * Called by profile or device owners to determine if a package is hidden.
5237 * @param packageName The name of the package to retrieve the hidden statu
5220 setApplicationHidden(@onNull ComponentName admin, String packageName, boolean hidden) argument
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java776 // ensure it is not hidden because for adapter helper, the only thing matter is that
780 Log.d(TAG, "assuming view holder cannot be find because it is hidden");
3230 // only recover focus if RV itself has the focus or the focused view is hidden
3311 // * A VH is currently hidden but not deleted
3312 // * The hidden item is changed in the adapter
3520 * Records the animation information for a view holder that was bounced from hidden list. It
3525 // looks like this view bounced back from hidden list!
4150 // hidden VHs are not preferred but if that is the only one we find, we rather return it
4151 ViewHolder hidden = null;
4156 hidden
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsActivity.java520 // Notify that recents is now hidden
524 MetricsLogger.hidden(this, MetricsEvent.OVERVIEW_ACTIVITY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackStateAnimator.java281 && !viewState.gone && !viewState.hidden) {
/frameworks/base/services/core/java/com/android/server/pm/
H A DEphemeralApplicationRegistry.java400 if (userState == null || !userState.installed || userState.hidden) {
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragment.java276 // Set to true when the app has requested that this fragment be hidden
778 * (3) is not hidden.
786 * Return true if the fragment has been hidden. By default fragments
788 * {@link #onHiddenChanged}. Note that the hidden state is orthogonal
790 * must be both started and not hidden.
809 * Called when the hidden state (as returned by {@link #isHidden()} of
810 * the fragment has changed. Fragments start out not hidden; this will
812 * @param hidden True if the fragment is now hidden, false otherwise.
814 public void onHiddenChanged(boolean hidden) { argument
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java2133 public boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden, argument
2136 return mPM.setApplicationHiddenSettingAsUser(packageName, hidden,

Completed in 3023 milliseconds

1234