Searched defs:divider (Results 1 - 9 of 9) sorted by relevance

/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
H A DDividerItemDecoration.java35 * {@link #setDivider(android.graphics.drawable.Drawable)} as the divider in between each item by
36 * default, and the behavior of whether the divider is shown can be customized by subclassing
48 * Returns whether divider is allowed above this item. A divider will be shown only if both
49 * items immediately above and below it allows this divider.
54 * Returns whether divider is allowed below this item. A divider will be shown only if both
55 * items immediately above and below it allows this divider.
90 final Drawable divider = a.getDrawable(
99 setDivider(divider);
190 setDivider(Drawable divider) argument
[all...]
/frameworks/base/libs/hwui/
H A DJankTracker.cpp180 uint32_t divider = 0; local
182 divider = 4;
185 newData->jankTypeCounts[i] >>= divider;
189 newData->frameCounts[i] >>= divider;
192 newData->jankFrameCount >>= divider;
194 newData->totalFrameCount >>= divider;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarGestureHelper.java59 * When dragging from the navigation bar, we drag the divider.
92 public void setComponents(RecentsComponent recentsComponent, Divider divider, argument
95 mDivider = divider;
H A DNavigationBarView.java213 public void setComponents(RecentsComponent recentsComponent, Divider divider) { argument
214 mGestureHelper.setComponents(recentsComponent, divider, this);
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DPreferenceFragment.java262 final Drawable divider = a.getDrawable(R.styleable.PreferenceFragment_android_divider);
296 setDivider(divider);
313 * @param divider the drawable to use
316 public void setDivider(Drawable divider) { argument
317 mDividerDecoration.setDivider(divider);
321 * Sets the height of the divider that will be drawn between each item in the list. Calling
324 * @param height The new height of the divider in pixels.
826 public void setDivider(Drawable divider) { argument
827 if (divider != null) {
828 mDividerHeight = divider
[all...]
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceFragmentCompat.java250 final Drawable divider = a.getDrawable(
284 setDivider(divider);
301 * @param divider the drawable to use
304 public void setDivider(Drawable divider) { argument
305 mDividerDecoration.setDivider(divider);
309 * Sets the height of the divider that will be drawn between each item in the list. Calling
312 * @param height The new height of the divider in pixels.
815 public void setDivider(Drawable divider) { argument
816 if (divider != null) {
817 mDividerHeight = divider
[all...]
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java90 * Show a divider at the beginning of the group.
98 * Show a divider at the end of the group.
277 * @return the divider Drawable that will divide each item.
288 * Set a drawable to be used as a divider between items.
290 * @param divider Drawable that will divide each item.
296 public void setDividerDrawable(Drawable divider) { argument
297 if (divider == mDivider) {
300 mDivider = divider;
301 if (divider != null) {
302 mDividerWidth = divider
[all...]
H A DListView.java170 // Use an implicit divider height which may be explicitly
185 // Use an explicit divider height, if specified.
1279 * returns the height with this ListView's padding and divider heights
1331 // Count the divider for all but one child
3390 // Draw top divider or header for overscroll
3473 // Give the method the child ABOVE the divider,
3476 // divider.
3516 * Draws a divider for the given child in the given bounds.
3519 * @param bounds The bounds of the divider.
3520 * @param childIndex The index of child (of the View) above the divider
3552 setDivider(@ullable Drawable divider) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java84 * Show a divider at the beginning of the group.
92 * Show a divider at the end of the group.
216 * @return the divider Drawable that will divide each item.
225 * Set a drawable to be used as a divider between items.
227 * @param divider Drawable that will divide each item.
231 public void setDividerDrawable(Drawable divider) { argument
232 if (divider == mDivider) {
235 mDivider = divider;
236 if (divider != null) {
237 mDividerWidth = divider
[all...]

Completed in 331 milliseconds