/frameworks/base/core/java/com/android/internal/view/inline/ |
D | InlineTooltipUi.java | 152 public void update(View anchor) { in update() 188 private void removeDelayShowTooltip(View anchor) { in removeDelayShowTooltip() 195 private void updateInner(View anchor) { in updateInner() 214 private int getPreferHeight(View anchor) { in getPreferHeight() 222 protected boolean findDropDownPosition(View anchor, WindowManager.LayoutParams outParams, in findDropDownPosition() 243 protected void update(View anchor, WindowManager.LayoutParams params) { in update() 253 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { in showAsDropDown() 272 protected void attachToAnchor(View anchor, int xoff, int yoff, int gravity) { in attachToAnchor() 279 final View anchor = getAnchor(); in detachFromAnchor() local 305 View anchor = getAnchor(); in adjustPosition() local [all …]
|
/frameworks/base/core/java/android/view/autofill/ |
D | AutofillPopupWindow.java | 107 public void update(View anchor, int offsetX, int offsetY, int width, int height, in update() 241 protected void update(View anchor, WindowManager.LayoutParams params) { in update() 249 protected boolean findDropDownPosition(View anchor, LayoutParams outParams, in findDropDownPosition() 265 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { in showAsDropDown() 289 protected void attachToAnchor(View anchor, int xoff, int yoff, int gravity) { in attachToAnchor() 296 final View anchor = getAnchor(); in detachFromAnchor() local
|
D | AutofillClientController.java | 445 public boolean autofillClientRequestShowFillUi(@NonNull View anchor, int width, in autofillClientRequestShowFillUi() 461 public void autofillClientDispatchUnhandledKey(View anchor, KeyEvent keyEvent) { in autofillClientDispatchUnhandledKey()
|
D | AutofillManager.java | 795 boolean autofillClientRequestShowFillUi(@NonNull View anchor, int width, int height, in autofillClientRequestShowFillUi() 803 void autofillClientDispatchUnhandledKey(@NonNull View anchor, @NonNull KeyEvent keyEvent); in autofillClientDispatchUnhandledKey() 2886 final View anchor = findView(id); in requestShowFillUi() local 2936 final View anchor = findView(id); in dispatchUnhandledKey() local 3496 final View anchor = id == null ? null : findView(id); in requestHideFillUi() local 3512 private void requestHideFillUi(AutofillId id, View anchor) { in requestHideFillUi() 3574 final View anchor = findView(id); in notifyNoFillUi() local 3593 final View anchor = findView(id); in notifyCallback() local
|
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/transformation/ |
D | AnchoredTranslate.kt | 31 private val anchor: ElementKey, constant in com.android.compose.animation.scene.transformation.AnchoredTranslate 49 val anchor = layoutImpl.elements[anchor] ?: throwException(scene = null) in transform() constant
|
D | AnchoredSize.kt | 30 private val anchor: ElementKey, constant in com.android.compose.animation.scene.transformation.AnchoredSize
|
/frameworks/base/core/java/android/security/net/config/ |
D | TrustedCertificateStoreAdapter.java | 37 TrustAnchor anchor = mConfig.findTrustAnchorByIssuerAndSignature(cert); in findIssuer() local 51 TrustAnchor anchor = mConfig.findTrustAnchorBySubjectAndPublicKey(cert); in getTrustAnchor() local 61 TrustAnchor anchor = mConfig.findTrustAnchorBySubjectAndPublicKey(cert); in isUserAddedCertificate() local
|
D | KeyStoreCertificateSource.java | 78 java.security.cert.TrustAnchor anchor = mIndex.findBySubjectAndPublicKey(cert); in findBySubjectAndPublicKey() local 88 java.security.cert.TrustAnchor anchor = mIndex.findByIssuerAndSignature(cert); in findByIssuerAndSignature() local
|
D | ResourceCertificateSource.java | 88 java.security.cert.TrustAnchor anchor = mIndex.findBySubjectAndPublicKey(cert); in findBySubjectAndPublicKey() local 98 java.security.cert.TrustAnchor anchor = mIndex.findByIssuerAndSignature(cert); in findByIssuerAndSignature() local
|
D | NetworkSecurityConfig.java | 136 TrustAnchor anchor = ref.findBySubjectAndPublicKey(cert); in findTrustAnchorBySubjectAndPublicKey() local 147 TrustAnchor anchor = ref.findByIssuerAndSignature(cert); in findTrustAnchorByIssuerAndSignature() local
|
/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/ |
D | TestCertificateSource.java | 44 java.security.cert.TrustAnchor anchor = mIndex.findBySubjectAndPublicKey(cert); in findBySubjectAndPublicKey() local 53 java.security.cert.TrustAnchor anchor = mIndex.findByIssuerAndSignature(cert); in findByIssuerAndSignature() local
|
/frameworks/base/core/java/android/widget/ |
D | PopupMenu.java | 63 public PopupMenu(Context context, View anchor) { in PopupMenu() 78 public PopupMenu(Context context, View anchor, int gravity) { in PopupMenu() 99 public PopupMenu(Context context, View anchor, int gravity, int popupStyleAttr, in PopupMenu()
|
D | PopupWindow.java | 1361 public void showAsDropDown(View anchor) { in showAsDropDown() 1382 public void showAsDropDown(View anchor, int xoff, int yoff) { in showAsDropDown() 1406 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { in showAsDropDown() 1589 View anchor = mAnchor.get(); in setLayoutDirectionFromAnchor() local 1733 protected boolean findDropDownPosition(View anchor, WindowManager.LayoutParams outParams, in findDropDownPosition() 1941 public int getMaxAvailableHeight(@NonNull View anchor) { in getMaxAvailableHeight() 1956 public int getMaxAvailableHeight(@NonNull View anchor, int yOffset) { in getMaxAvailableHeight() 1975 public int getMaxAvailableHeight( in getMaxAvailableHeight() 2112 final View anchor = mAnchor != null ? mAnchor.get() : null; in getTransitionEpicenter() local 2222 protected void update(View anchor, WindowManager.LayoutParams params) { in update()
|
D | ListPopupWindow.java | 433 public void setAnchorView(@Nullable View anchor) { in setAnchorView()
|
/frameworks/base/core/tests/coretests/src/android/widget/espresso/ |
D | ContextMenuUtils.java | 133 public static void assertContextMenuAlignment(View anchor, int offsetX, int offsetY) { in assertContextMenuAlignment()
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
D | StandardMenuPopup.java | 174 final View anchor = mShownAnchorView; in tryShow() local 335 public void setAnchorView(View anchor) { in setAnchorView()
|
D | CascadingMenuPopup.java | 203 public CascadingMenuPopup(@NonNull Context context, @NonNull View anchor, in CascadingMenuPopup() 700 public void setAnchorView(@NonNull View anchor) { in setAnchorView()
|
D | MenuPopup.java | 58 public abstract void setAnchorView(View anchor); in setAnchorView()
|
D | MenuPopupHelper.java | 98 public void setAnchorView(@NonNull View anchor) { in setAnchorView()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/keyguard/ |
D | KeyguardSecurityContainerTest.java | 317 ViewGroup anchor = mKeyguardSecurityContainer.findViewById(R.id.user_switcher_anchor); in testLessThanTwoUsersDoesNotAllowDropDown() local 332 ViewGroup anchor = mKeyguardSecurityContainer.findViewById(R.id.user_switcher_anchor); in testTwoOrMoreUsersDoesAllowDropDown() local
|
/frameworks/base/core/java/com/android/internal/view/ |
D | RecyclerViewCaptureHelper.java | 87 View anchor = findChildNearestTarget(recyclerView, requestedContainerBounds); in onScrollRequested() local
|
/frameworks/base/core/java/android/util/ |
D | RecurrenceRule.java | 204 final ZonedDateTime anchor = (end != null) ? end in RecurringIterator() local
|
/frameworks/rs/script_api/ |
D | GenerateDocumentation.cpp | 109 string anchor = systemSpecification.getHtmlAnchor(s); in getHtmlStringForType() local 193 string anchor = systemSpecification.getHtmlAnchor(id); in convertDocumentationRefences() local
|
/frameworks/base/media/java/android/media/ |
D | SubtitleController.java | 471 public void setAnchor(Anchor anchor) { in setAnchor()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
D | ControlsUiControllerImpl.kt | 544 val anchor = parent.requireViewById<ImageView>(R.id.controls_more) in <lambda>() constant 611 val anchor = parent.requireViewById<View>(R.id.app_or_structure_spinner) in <lambda>() constant
|