OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:anchorView
(Results
1 - 14
of
14
) sorted by null
/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
);
/developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/util/
SystemUiHider.java
104
* @param
anchorView
The view on which
110
public static SystemUiHider getInstance(Activity activity, View
anchorView
, int flags) {
112
return new SystemUiHiderHoneycomb(activity,
anchorView
, flags);
114
return new SystemUiHiderBase(activity,
anchorView
, flags);
118
protected SystemUiHider(Activity activity, View
anchorView
, int flags) {
120
mAnchorView =
anchorView
;
SystemUiHiderBase.java
38
protected SystemUiHiderBase(Activity activity, View
anchorView
, int flags) {
39
super(activity,
anchorView
, flags);
SystemUiHiderHoneycomb.java
61
protected SystemUiHiderHoneycomb(Activity activity, View
anchorView
, int flags) {
62
super(activity,
anchorView
, flags);
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_header.h
32
- (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
;
/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/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
AppMenuHandler.java
54
* @param
anchorView
Anchor view (usually a menu button) to be used for the popup.
66
public boolean showAppMenu(View
anchorView
, boolean isByHardwareButton, boolean startDragging) {
73
PopupMenu tempMenu = new PopupMenu(mActivity,
anchorView
);
108
mAppMenu.show(wrapper,
anchorView
, isByHardwareButton, rotation, appRect, pt.y);
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;
/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
...]
/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();
Completed in 449 milliseconds