Home | History | Annotate | Download | only in list

Lines Matching defs:partition

23 /** A subclass of {@link CompositeCursorAdapter} that manages pinned partition headers. */
53 protected boolean isPinnedPartitionHeaderVisible(int partition) {
55 && hasHeader(partition)
56 && !isPartitionEmpty(partition);
59 /** The default implementation creates the same type of view as a normal partition header. */
61 public View getPinnedHeaderView(int partition, View convertView, ViewGroup parent) {
62 if (hasHeader(partition)) {
71 view = newHeaderView(getContext(), partition, null, parent);
76 bindHeaderView(view, partition, getCursor(partition));
112 int partition = getPartitionForPosition(position);
113 if (i > partition) {
134 int partition = getPartitionForPosition(position - 1);
135 if (partition == -1 || i <= partition) {