Searched defs:left (Results 26 - 50 of 142) sorted by relevance

123456

/packages/apps/Contacts/src/com/android/contacts/widget/
H A DProportionalLayout.java122 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
128 child.layout(0, 0, right-left, bottom-top);
H A DInterpolatingLayout.java279 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
281 int width = right - left;
313 child.layout(mOutRect.left, mOutRect.top, mOutRect.right, mOutRect.bottom);
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
H A DRenderOverlay.java40 void layout(int left, int top, int right, int bottom); argument
126 public void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
128 super.onLayout(changed, left, top, right, bottom);
133 renderer.layout(left, top, right, bottom);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DDetailsHelper.java57 public void layout(int left, int top, int right, int bottom) { argument
H A DEdgeView.java54 boolean changeSize, int left, int top, int right, int bottom) {
57 int w = right - left;
62 } else { // left or right
53 onLayout( boolean changeSize, int left, int top, int right, int bottom) argument
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewGridLayout.java81 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
82 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
H A DLauncherRecentsView.java87 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
88 super.onLayout(changed, left, top, right, bottom);
H A DRecentsViewContainer.java84 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
85 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DDropTargetBar.java86 lp.leftMargin = insets.left;
167 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
182 int frameSize = (right - left) / visibleCount;
H A DExtendedEditText.java84 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
85 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Launcher3/src/com/android/launcher3/allapps/search/
H A DAppsSearchContainerLayout.java128 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
129 super.onLayout(changed, left, top, right, bottom);
134 int myWidth = right - left;
136 int shift = expectedLeft - left;
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DListViewHighlighter.java56 public void onLayoutChange(View v, int left, int top, int right, int bottom, argument
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DIndicatorControlBar.java88 boolean changed, int left, int top, int right, int bottom) {
92 // We have (equal) paddings at left and right, but no padding at top or
95 int width = right - left;
87 onLayout( boolean changed, int left, int top, int right, int bottom) argument
H A DZoomControlBar.java59 // For left-hand users, as the device is rotated for 180 degree for
119 // layout for the left-hand camera control
126 boolean changed, int left, int top, int right, int bottom) {
130 // For left-hand users, as the device is rotated for 180 degree,
125 onLayout( boolean changed, int left, int top, int right, int bottom) argument
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
H A DOverlayRenderer.java66 public void layout(int left, int top, int right, int bottom) { argument
67 mLeft = left;
/packages/apps/Settings/src/com/android/settings/
H A DSummaryPreference.java74 public void setRatios(float left, float middle, float right) { argument
75 mLeftRatio = left;
/packages/apps/Settings/src/com/android/settings/display/
H A DConversationMessageView.java127 protected void onLayout(final boolean changed, final int left, final int top, final int right, argument
134 final int contentWidth = (right -left) - iconWidth - getPaddingLeft() - getPaddingRight();
143 iconLeft = (right - left) - getPaddingRight() - iconWidth;
154 iconLeft = (right - left) - getPaddingRight() - iconWidth;
223 // Need to switch right and left padding in RtL mode
/packages/apps/Settings/src/com/android/settings/widget/
H A DSlidingTabLayout.java84 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
143 int left = selectedTitle.getLeft();
146 left = (int) (mSelectionOffset * nextTitle.getLeft()
147 + (1.0f - mSelectionOffset) * left);
149 return left;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DButteryProgressBar.java122 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
148 // Because the left-most segment doesn't start all the way on the left, and because it moves
149 // towards the right as it animates, we need to offset all drawing towards the left. This
150 // ensures that the left-most detent starts at the left origin, and that the left portion
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
H A Dver4_patricia_trie_writing_helper.h111 bool operator()(const DictProbability &left, const DictProbability &right) { argument
112 if (left.getProbability() != right.getProbability()) {
113 return left.getProbability() > right.getProbability();
115 if (left.getTimestamp() != right.getTimestamp()) {
116 return left.getTimestamp() < right.getTimestamp();
118 return left.getDictPos() > right.getDictPos();
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
H A Ddic_node_priority_queue.h102 AK_FORCE_INLINE static bool compareDicNode(const DicNode *const left, argument
104 return left->compare(right);
108 bool operator ()(const DicNode *left, const DicNode *right) const { argument
109 return compareDicNode(left, right);
/packages/apps/Camera2/src/com/android/camera/ui/
H A DModeSelectorItem.java120 * @param swipeIn whether swiping direction is swiping in (i.e. from left
132 public void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
133 super.onLayout(changed, left, top, right, bottom);
134 mWidth = right - left;
/packages/apps/Camera2/src/com/android/camera/widget/
H A DModeOptions.java181 public void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
207 super.onLayout(changed, left, top, right, bottom);
/packages/apps/DeskClock/src/com/android/deskclock/widget/
H A DCircleView.java115 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
116 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Dialer/java/com/android/dialer/calllogutils/
H A DCallTypeIconsView.java188 int left = 0;
195 final int right = left + drawable.getIntrinsicWidth();
196 drawable.setBounds(left, 0, right, drawable.getIntrinsicHeight());
198 left = right + resources.iconMargin;
204 left = addDrawable(canvas, resources.videoCall, left) + resources.iconMargin;
208 left = addDrawable(canvas, resources.hdCall, left) + resources.iconMargin;
212 left = addDrawable(canvas, resources.wifiCall, left)
220 addDrawable(Canvas canvas, Drawable drawable, int left) argument
[all...]

Completed in 1710 milliseconds

123456