Searched defs:decor (Results 1 - 9 of 9) 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);
/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/app/
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...]
/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/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/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/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/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 109 milliseconds