/external/chromium_org/ui/android/java/src/org/chromium/ui/base/ |
ViewAndroidDelegate.java | 31 * @param anchorView The anchor view that needs to be released. 33 void releaseAnchorView(View anchorView);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
RecentsCallback.java | 29 void handleLongPress(View selectedView, View anchorView, View thumbnailView);
|
RecentsHorizontalScrollView.java | 141 final View anchorView = view.findViewById(R.id.app_description); 142 mCallback.handleLongPress(view, anchorView, thumbnailView);
|
RecentsVerticalScrollView.java | 145 final View anchorView = view.findViewById(R.id.app_description); 146 mCallback.handleLongPress(view, anchorView, thumbnailView);
|
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_header.h | 33 - (NSView*)anchorView;
|
autofill_notification_container.h | 47 // with center of anchorView. (horizontally only). 48 - (void)setAnchorView:(NSView*)anchorView;
|
autofill_notification_controller.h | 54 // Displays arrow on top of notification if set to YES. |anchorView| determines 56 // midpoint of the anchorView. 57 - (void)setHasArrow:(BOOL)hasArrow withAnchorView:(NSView*)anchorView;
|
autofill_main_container.h | 61 - (void)setAnchorView:(NSView*)anchorView;
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/ |
AppMenuHandler.java | 47 * @param anchorView Anchor view (usually a menu button) to be used for the popup. 58 public boolean showAppMenu(View anchorView, boolean isByHardwareButton, boolean startDragging) { 64 PopupMenu tempMenu = new PopupMenu(mActivity, anchorView); 77 mAppMenu.show(wrapper, anchorView, showIcons, isByHardwareButton, startDragging);
|
AppMenu.java | 196 * @param anchorView The anchor {@link View} of the {@link ListPopupWindow}. 205 void show(Context context, View anchorView, boolean showIconRow, 210 mPopup.setAnchorView(anchorView); 695 View anchorView = mPopup.getAnchorView(); 697 anchorView.getLocationOnScreen(anchorViewLocation); 701 appDimensions.height() - anchorViewLocation[1] - anchorView.getHeight()); [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
PopupWindowTest.java | 336 View anchorView = mActivity.findViewById(R.id.anchor_upper); 337 int avaliable = getDisplay().getHeight() - anchorView.getHeight(); 338 int maxAvailableHeight = mPopupWindow.getMaxAvailableHeight(anchorView); 341 int maxAvailableHeightWithOffset = mPopupWindow.getMaxAvailableHeight(anchorView, 2); 344 mPopupWindow.getMaxAvailableHeight(anchorView, maxAvailableHeight); 348 mPopupWindow.getMaxAvailableHeight(anchorView, maxAvailableHeight / 2 - 1); 351 maxAvailableHeightWithOffset = mPopupWindow.getMaxAvailableHeight(anchorView, -1); 355 anchorView = mActivity.findViewById(R.id.anchor_lower); 356 avaliable = getDisplay().getHeight() - anchorView.getHeight(); 357 maxAvailableHeight = mPopupWindow.getMaxAvailableHeight(anchorView); [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
PhotoActionPopup.java | 75 public static ListPopupWindow createPopupMenu(Context context, View anchorView, 130 listPopupWindow.setAnchorView(anchorView); 137 if (anchorView.getWidth() < minWidth) {
|
ContactEditorFragment.java | [all...] |
/frameworks/base/core/java/com/android/internal/view/menu/ |
MenuPopupHelper.java | 79 public MenuPopupHelper(Context context, MenuBuilder menu, View anchorView) { 80 this(context, menu, anchorView, false); 84 View anchorView, boolean overflowOnly) { 95 mAnchorView = anchorView;
|
ActionMenuPresenter.java | 667 public OverflowPopup(Context context, MenuBuilder menu, View anchorView, 669 super(context, menu, anchorView, overflowOnly);
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/ |
MenuPopupHelper.java | 73 public MenuPopupHelper(Context context, MenuBuilder menu, View anchorView) { 74 this(context, menu, anchorView, false); 78 View anchorView, boolean overflowOnly) { 88 mAnchorView = anchorView;
|
/packages/apps/Settings/src/com/android/settings/ |
DateTimeSettingsSetupWizard.java | 282 View anchorView = findViewById(anchorViewId); 283 if (anchorView == null) { 288 mTimeZonePopup.setWidth(anchorView.getWidth()); 289 mTimeZonePopup.setAnchorView(anchorView);
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/ |
AutofillPopupTest.java | 104 View anchorView = view.findViewById(R.id.autofill_popup_window); 106 assertTrue(anchorView.getTag() instanceof AutofillPopup); 107 final AutofillPopup popup = (AutofillPopup) anchorView.getTag();
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
DragLayer.java | 509 final Runnable onFinishAnimationRunnable, View anchorView) { 510 animateViewIntoPosition(dragView, child, -1, onFinishAnimationRunnable, anchorView); 514 final Runnable onFinishAnimationRunnable, View anchorView) { 573 onCompleteRunnable, ANIMATION_END_DISAPPEAR, duration, anchorView); 579 int animationEndStyle, int duration, View anchorView) { 584 null, null, onCompleteRunnable, animationEndStyle, anchorView); 604 * @param anchorView If not null, this represents the view which the animated view stays 612 final Runnable onCompleteRunnable, final int animationEndStyle, View anchorView) { 676 anchorView); 681 final int animationEndStyle, View anchorView) { [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
DragLayer.java | 476 final Runnable onFinishAnimationRunnable, View anchorView) { 530 onCompleteRunnable, ANIMATION_END_DISAPPEAR, duration, anchorView); 536 int animationEndStyle, int duration, View anchorView) { 541 null, null, onCompleteRunnable, animationEndStyle, anchorView); 561 * @param anchorView If not null, this represents the view which the animated view stays 569 final Runnable onCompleteRunnable, final int animationEndStyle, View anchorView) { 631 anchorView); 636 final int animationEndStyle, View anchorView) { 647 if (anchorView != null) { 648 mAnchorViewInitialScrollX = anchorView.getScrollX() [all...] |
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/ |
RgbPlayerActivity.java | 159 View anchorView = this.getParent() instanceof View ? 161 mMediaController.setAnchorView(anchorView);
|
VideoDumpView.java | 206 View anchorView = this.getParent() instanceof View ? 208 mMediaController.setAnchorView(anchorView);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
PopupList.java | 69 public PopupList(Context context, View anchorView) { 71 mAnchorView = anchorView;
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
ContentVideoView.java | 622 View anchorView = new View(getContext()); 623 addView(anchorView); 624 return anchorView; 633 public void releaseAnchorView(View anchorView) { 634 removeView(anchorView);
|
/frameworks/base/core/java/android/widget/ |
VideoView.java | 378 View anchorView = this.getParent() instanceof View ? 380 mMediaController.setAnchorView(anchorView); [all...] |