Searched refs:decor (Results 1 - 23 of 23) sorted by relevance

/frameworks/rs/rsov/compiler/spirit/
H A Dinstructions.cpp30 DecorateInst *Instruction::decorate(Decoration decor) { argument
35 DecorateInst *decorInst = new DecorateInst(this, decor);
42 MemberDecorateInst *Instruction::memberDecorate(int member, Decoration decor) { argument
48 MemberDecorateInst *decorInst = new MemberDecorateInst(this, member, decor);
H A Dmodule.cpp591 if (auto decor = Deserialize<DecorateInst>(IS)) {
592 mAnnotations.push_back(decor);
593 } else if (auto decor = Deserialize<MemberDecorateInst>(IS)) {
594 mAnnotations.push_back(decor);
595 } else if (auto decor = Deserialize<GroupDecorateInst>(IS)) {
596 mAnnotations.push_back(decor);
597 } else if (auto decor = Deserialize<GroupMemberDecorateInst>(IS)) {
598 mAnnotations.push_back(decor);
599 } else if (auto decor = Deserialize<DecorationGroupInst>(IS)) {
600 mAnnotations.push_back(decor);
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuDialogHelper.java95 View decor = win.getDecorView();
96 if (decor != null) {
97 KeyEvent.DispatcherState ds = decor.getKeyDispatcherState();
107 View decor = win.getDecorView();
108 if (decor != null) {
109 KeyEvent.DispatcherState ds = decor.getKeyDispatcherState();
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/menu/
H A DMenuDialogHelper.java99 View decor = win.getDecorView();
100 if (decor != null) {
101 KeyEvent.DispatcherState ds = decor.getKeyDispatcherState();
111 View decor = win.getDecorView();
112 if (decor != null) {
113 KeyEvent.DispatcherState ds = decor.getKeyDispatcherState();
/frameworks/base/core/java/android/app/
H A DActivityTransitionState.java305 ViewGroup decor = null;
309 decor = mEnterTransitionCoordinator.getDecor();
312 if (enterViewsTransition != null && decor != null) {
313 enterViewsTransition.pause(decor);
320 if (enterViewsTransition != null && decor != null) {
321 enterViewsTransition.resume(decor);
323 if (delayExitBack && decor != null) {
324 final ViewGroup finalDecor = decor;
325 OneShotPreDrawListener.add(decor, () -> {
H A DActivityTransitionCoordinator.java860 ViewGroup decor = getDecor();
861 if (decor != null) {
869 GhostView.addGhost(view, decor, tempMatrix);
871 if (moveWithParent && !isInTransitionGroup(parent, decor)) {
872 GhostViewListeners listener = new GhostViewListeners(view, parent, decor);
886 public static boolean isInTransitionGroup(ViewParent viewParent, ViewGroup decor) { argument
887 if (viewParent == decor || !(viewParent instanceof ViewGroup)) {
894 return isInTransitionGroup(parent.getParent(), decor);
909 ViewGroup decor = getDecor();
910 if (decor !
1061 GhostViewListeners(View view, View parent, ViewGroup decor) argument
[all...]
H A DEnterTransitionCoordinator.java156 final ViewGroup decor = getDecor();
158 if (decor == null || (decor.isAttachedToWindow() &&
162 mViewsReadyListener = OneShotPreDrawListener.add(decor, () -> {
166 decor.invalidate();
272 final ViewGroup decor = getDecor();
273 if (decor != null && mViewsReadyListener != null) {
646 * any transition started on the decor will do nothing.
H A DExitTransitionCoordinator.java294 ViewGroup decor = getDecor();
296 if (decor != null && (background = decor.getBackground()) != null) {
H A DActivity.java2700 * a traditional window decor action bar. The toolbar's menu will be populated with the
2713 "by the window decor. Do not request Window.FEATURE_ACTION_BAR and set " +
2746 // Initializing the window decor can change window feature flags.
3224 View decor = mDecor;
3225 if (decor != null && decor.getParent() != null) {
3226 getWindowManager().updateViewLayout(decor, params);
3363 View decor = mDecor;
3364 if (decor == null) decor
[all...]
H A DActivityThread.java3846 View decor = r.window.getDecorView();
3847 decor.setVisibility(View.INVISIBLE);
3850 a.mDecor = decor;
3858 // the decor view we have to notify the view root that the
3860 ViewRootImpl impl = decor.getViewRootImpl();
3868 wm.addView(decor, l);
3871 // earlier. However, at that time the decor will not be set (this is set
3873 // callback occurs with the decor set.
3910 View decor = r.window.getDecorView();
3911 wm.updateViewLayout(decor,
[all...]
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
H A DFillUi.java142 final ViewGroup decor;
144 decor = (ViewGroup) inflater.inflate(R.layout.autofill_dataset_picker_fullscreen, null);
146 decor = (ViewGroup) inflater.inflate(R.layout.autofill_dataset_picker_header_footer,
149 decor = (ViewGroup) inflater.inflate(R.layout.autofill_dataset_picker, null);
151 final TextView titleView = decor.findViewById(R.id.autofill_dataset_title);
155 final ImageView iconView = decor.findViewById(R.id.autofill_dataset_icon);
174 decor.addOnUnhandledKeyEventListener((View view, KeyEvent event) -> {
219 ViewGroup container = decor.findViewById(R.id.autofill_dataset_picker);
223 content = response.getPresentation().apply(mContext, decor, interceptionHandler);
246 decor
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DPixelCopyWindow.java83 View decor = getWindow().getDecorView();
85 decor.getGlobalVisibleRect(srcRect);
/frameworks/support/car/src/main/java/androidx/car/widget/
H A DPagedListView.java618 RecyclerView.ItemDecoration decor = mRecyclerView.getItemDecorationAt(i);
619 if (decor instanceof DividerDecoration) {
620 ((DividerDecoration) decor).setVisibilityManager(dvm);
679 * @param decor The decoration to add.
682 public void addItemDecoration(@NonNull RecyclerView.ItemDecoration decor) { argument
683 mRecyclerView.addItemDecoration(decor);
692 * @param decor The decoration to remove.
695 public void removeItemDecoration(@NonNull RecyclerView.ItemDecoration decor) { argument
696 mRecyclerView.removeItemDecoration(decor);
781 RecyclerView.ItemDecoration decor
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java65 * by devices of all screen sizes as part of the window decor layout.
66 * If it detects a compatible decor, it will split contextual modes
167 View decor = window.getDecorView();
169 init(decor);
171 mContentView = decor.findViewById(android.R.id.content);
189 private void init(View decor) { argument
190 mOverlayLayout = (ActionBarOverlayLayout) decor.findViewById(
195 mDecorToolbar = getDecorToolbar(decor.findViewById(com.android.internal.R.id.action_bar));
196 mContextView = (ActionBarContextView) decor.findViewById(
198 mContainerView = (ActionBarContainer) decor
[all...]
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
H A DWindowDecorActionBar.java75 * by devices of all screen sizes as part of the window decor layout.
172 View decor = window.getDecorView();
173 init(decor);
175 mContentView = decor.findViewById(android.R.id.content);
194 private void init(View decor) { argument
195 mOverlayLayout = (ActionBarOverlayLayout) decor.findViewById(R.id.decor_content_parent);
199 mDecorToolbar = getDecorToolbar(decor.findViewById(R.id.action_bar));
200 mContextView = (ActionBarContextView) decor.findViewById(
202 mContainerView = (ActionBarContainer) decor.findViewById(
207 "with a compatible window decor layou
[all...]
/frameworks/rs/rsov/compiler/
H A DWrapper.cpp280 auto decor = StructTy->memberDecorate(i, Decoration::Offset); local
281 if (!decor) {
287 decor->addExtraOperand(offset);
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java425 View decor = getWindow().getWindow().getDecorView();
426 info.contentInsets.top = info.visibleInsets.top = decor.getHeight();
1394 View decor = getWindow().getWindow().getDecorView();
1395 loc[1] = decor.getHeight();
1399 View decor = getWindow().getWindow().getDecorView();
1400 outInsets.contentTopInsets = decor.getHeight();
/frameworks/base/core/java/android/view/
H A DWindow.java774 View decor = peekDecorView();
775 if (decor != null) {
776 wp.token = decor.getWindowToken();
1654 * Retrieve the top-level window decor view (containing the standard
1662 * @return Returns the top-level window decor view.
1667 * Retrieve the current decor view, but only if it has already been created;
1670 * @return Returns the top-level window decor or null.
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java1585 View decor = getWindow().getWindow().getDecorView();
1586 outInsets.contentInsets.top = decor.getHeight();
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java143 // This is the top-level view of the window, containing the window decor.
146 // When we reuse decor views, we need to recreate the content root. This happens when the decor
314 // Only main activity windows use decor context, all the other windows depend on whatever
407 // decor, when theme attributes and the like are crystalized. Do not check the feature
438 // decor, when theme attributes and the like are crystalized. Do not check the feature
754 // Causes the decor view to be recreated
814 // Initialize the panel decor, this will populate st.decorView
948 // force a refresh of the decor
1354 * PanelFeatureState.decor t
2313 generateLayout(DecorView decor) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java148 * Keeps track of popup's parent's decor view. This is needed to dispatch
651 // Attach popup window in decor frame of parent window by default for
653 // behavior of not attaching to decor frame for older SDKs.
922 * <p>Indicates whether the popup window will be attached in the decor frame of its parent
925 * @return true if the window will be attached to the decor frame of its parent window.
935 * <p>This will attach the popup window to the decor frame of the parent window to avoid
942 * @param enabled true if the popup should be attached to the decor frame of its parent window.
960 * the way that decor views behave for full-screen windows.
1341 // The old decor view may be transitioning out. Make sure it finishes
1909 // The decor vie
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java1366 * @param decor Decoration to add
1370 public void addItemDecoration(ItemDecoration decor, int index) { argument
1379 mItemDecorations.add(decor);
1381 mItemDecorations.add(index, decor);
1397 * @param decor Decoration to add
1399 public void addItemDecoration(ItemDecoration decor) { argument
1400 addItemDecoration(decor, -1);
1409 * @param decor Decoration to remove
1412 public void removeItemDecoration(ItemDecoration decor) { argument
1417 mItemDecorations.remove(decor);
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java1512 * @param decor Decoration to add
1516 public void addItemDecoration(@NonNull ItemDecoration decor, int index) { argument
1525 mItemDecorations.add(decor);
1527 mItemDecorations.add(index, decor);
1543 * @param decor Decoration to add
1545 public void addItemDecoration(@NonNull ItemDecoration decor) { argument
1546 addItemDecoration(decor, -1);
1595 * @param decor Decoration to remove
1598 public void removeItemDecoration(@NonNull ItemDecoration decor) { argument
1603 mItemDecorations.remove(decor);
[all...]

Completed in 224 milliseconds