Searched defs:gap (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/
H A DEventGeometry.java34 public void setHourGap(float gap) { argument
35 mHourGap = gap;
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
H A DAbsSeekBar.java266 int gap = (trackWidth - thumbWidth) / 2;
268 setThumbPos(w, h, thumb, scale, gap);
297 int gap = (trackHeight - thumbHeight) / 2;
299 setThumbPos(w, h, thumb, scale, gap);
306 * @param gap If set to {@link Integer#MIN_VALUE}, this will be ignored and
308 private void setThumbPos(int w, int h, Drawable thumb, float scale, int gap) { argument
325 if (gap == Integer.MIN_VALUE) {
330 leftBound = gap;
331 rightBound = gap + thumbWidth;
339 if (gap
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DNavTabScroller.java284 int gap = mHorizontal ? v.getWidth() : v.getHeight();
288 if (centerView < centerScreen - gap / 2) {
290 scroll = - (centerScreen - centerView - gap);
291 translate = (position > 0) ? gap : 0;
293 } else if (centerView > centerScreen + gap / 2) {
295 scroll = - (centerScreen + gap - centerView);
297 translate = -gap;
303 translate = -gap;
305 scroll -= gap;
328 trans2 = ObjectAnimator.ofInt(this, "gap",
361 setGap(int gap) argument
[all...]
/packages/apps/Camera/src/com/android/camera/ui/
H A DPieRenderer.java283 int gap = 1;
284 layoutItems(mItems, (float) (Math.PI / 2), inner, outer, gap);
288 int outer, int gap) {
301 Path path = makeSlice(getDegrees(0) - gap, getDegrees(sweep) + gap,
321 outer + mRadiusInc / 2, gap);
287 layoutItems(List<PieItem> items, float centerAngle, int inner, int outer, int gap) argument
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboard.java101 /** Horizontal gap default for all rows */
110 /** Default gap between rows */
173 /** Default horizontal gap between keys in this row. */
175 /** Vertical gap following this row. */
236 /** Width of the key, not including the gap */
238 /** Height of the key, not including the gap */
240 /** The horizontal gap before this key */
241 public int gap; field in class:Keyboard.Key
310 gap = parent.defaultHorizontalGap;
338 gap
622 setHorizontalGap(int gap) argument
630 setVerticalGap(int gap) argument
[all...]

Completed in 240 milliseconds