Home
last modified time | relevance | path

Searched refs:currentView (Results 1 – 5 of 5) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DCursorAnchorInfoUtils.java54 View currentView = view; in isPositionVisible() local
56 while (currentView != null) { in isPositionVisible()
57 if (currentView != view) { in isPositionVisible()
59 position[0] -= currentView.getScrollX(); in isPositionVisible()
60 position[1] -= currentView.getScrollY(); in isPositionVisible()
64 position[0] > currentView.getWidth() || position[1] > currentView.getHeight()) { in isPositionVisible()
68 if (!currentView.getMatrix().isIdentity()) { in isPositionVisible()
69 currentView.getMatrix().mapPoints(position); in isPositionVisible()
72 position[0] += currentView.getLeft(); in isPositionVisible()
73 position[1] += currentView.getTop(); in isPositionVisible()
[all …]
/packages/apps/TV/src/com/android/tv/menu/
DMenuLayoutManager.java127 MenuRowView currentView = mMenuRowViews.get(mSelectedPosition); in layout() local
128 if (currentView.getVisibility() == View.GONE) { in layout()
142 currentView = mMenuRowViews.get(i); in layout()
143 currentView.layout(rect.left, rect.top, rect.right, rect.bottom); in layout()
444 final MenuRowView currentView = mMenuRowViews.get(position); in setSelectedPositionSmooth() local
445 TextView currentTitleView = currentView.getTitleView(); in setSelectedPositionSmooth()
446 View currentContentsView = currentView.getContentsView(); in setSelectedPositionSmooth()
449 if (currentView instanceof PlayControlsRowView) { in setSelectedPositionSmooth()
450 ((PlayControlsRowView) currentView).onPreselected(); in setSelectedPositionSmooth()
542 int distanceCurrentTitle = currentLayoutRect.top - currentView.getTop(); in setSelectedPositionSmooth()
[all …]
/packages/apps/Calendar/src/com/android/calendar/
DDayFragment.java175 DayView currentView = (DayView) mViewSwitcher.getCurrentView(); in goTo() local
178 int diff = currentView.compareToVisibleTimeRange(goToTime); in goTo()
182 currentView.setSelected(goToTime, ignoreTime, animateToday); in goTo()
195 next.setFirstVisibleHour(currentView.getFirstVisibleHour()); in goTo()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
DStatePanelTrack.java343 public void setCurrentView(View currentView) { in setCurrentView() argument
344 mCurrentView = (StateView) currentView; in setCurrentView()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DUtils.java663 final View currentView = activityWindow != null ? activityWindow.getDecorView() : null; in getReducedSizeBitmap() local
664 final View rootView = currentView != null ? currentView.getRootView() : null; in getReducedSizeBitmap()