Home | History | Annotate | Download | only in ui

Lines Matching refs:Gap

163     // |          Gap         Gap         Gap         Gap          |
172 // The gap at the right of a Box i is at index i. The gap at the left of a
174 private RangeArray<Gap> mGaps = new RangeArray<Gap>(-BOX_MAX, BOX_MAX - 1);
179 private RangeArray<Gap> mTempGaps =
180 new RangeArray<Gap>(-BOX_MAX, BOX_MAX - 1);
224 mGaps.put(i, new Gap());
361 Gap g = mGaps.get(i);
388 // gap size may change. Currently this can happen due to change of view
398 Gap g = mGaps.get(i);
403 // Returns the default gap size according the the size of the boxes around
404 // the gap and the current mode.
453 Gap g = mGaps.get(i);
548 // the focused box, the specified neighbor box, and the gap between the
553 Gap g = mGaps.get(offset); // the gap between the two boxes
862 Log.d(TAG, "Gap " + i + ": " + mGaps.get(i).mCurrentGap);
906 Gap g = mGaps.get(i - 1);
911 Gap g = mGaps.get(i);
968 // Initialize a gap. This can only be called after the boxes around the gap
971 Gap g = mGaps.get(index);
978 Gap g = mGaps.get(index);
1092 // the boxes before first or after last, we will use a new default gap
1154 Gap g = mGaps.get(i);
1163 Gap g = mGaps.get(i - 1);
1735 // Gap: represents a rectangular area which is between two boxes.
1737 private class Gap extends Animatable {
1738 // The default gap size between two boxes. The value may vary for
1743 // The gap size between the two boxes.
1752 // Starts an animation for a gap.