HomeSort by relevance Sort by last modified time
    Searched defs:anchorView (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
AutofillPopupTest.java 174 View anchorView = view.findViewById(R.id.dropdown_popup_window);
176 assertTrue(anchorView.getTag() instanceof AutofillPopup);
177 final AutofillPopup popup = (AutofillPopup) anchorView.getTag();
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
AppMenu.java 87 * @param anchorView The anchor {@link View} of the {@link ListPopupWindow}.
94 void show(Context context, View anchorView, boolean isByHardwareButton, int screenRotation,
98 mPopup.setAnchorView(anchorView);
293 View anchorView = mPopup.getAnchorView();
295 anchorView.getLocationOnScreen(anchorViewLocation);
297 int anchorViewImpactHeight = mIsByHardwareButton ? anchorView.getHeight() : 0;
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 341 View anchorView = mActivity.findViewById(R.id.anchor_upper);
342 int avaliable = getDisplay().getHeight() - anchorView.getHeight();
343 int maxAvailableHeight = mPopupWindow.getMaxAvailableHeight(anchorView);
346 int maxAvailableHeightWithOffset = mPopupWindow.getMaxAvailableHeight(anchorView, 2);
349 mPopupWindow.getMaxAvailableHeight(anchorView, maxAvailableHeight);
353 mPopupWindow.getMaxAvailableHeight(anchorView, maxAvailableHeight / 2 - 1);
356 maxAvailableHeightWithOffset = mPopupWindow.getMaxAvailableHeight(anchorView, -1);
360 anchorView = mActivity.findViewById(R.id.anchor_lower);
361 avaliable = getDisplay().getHeight() - anchorView.getHeight();
362 maxAvailableHeight = mPopupWindow.getMaxAvailableHeight(anchorView);
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentVideoView.java 509 View anchorView = new View(getContext());
510 addView(anchorView);
511 return anchorView;
520 public void releaseAnchorView(View anchorView) {
521 removeView(anchorView);
ContentViewCore.java 452 View anchorView = new View(mContext);
453 mContainerViewAtCreation.addView(anchorView);
454 return anchorView;
510 public void releaseAnchorView(View anchorView) {
511 mContainerViewAtCreation.removeView(anchorView);
    [all...]

Completed in 6843 milliseconds