HomeSort by relevance Sort by last modified time
    Searched defs:showIfEmpty (Results 1 - 2 of 2) sorted by null

  /packages/apps/Messaging/src/com/android/messaging/ui/
CompositeAdapter.java 37 public Partition(final boolean showIfEmpty, final boolean hasHeader,
39 this.mShowIfEmpty = showIfEmpty;
47 public boolean showIfEmpty() {
151 (mPartitions[i].getCount() > 0 || mPartitions[i].showIfEmpty())) {
203 (partition.getCount() > 0 || partition.showIfEmpty())) {
225 (partition.getCount() > 0 || partition.showIfEmpty())) {
247 (partition.getCount() > 0 || partition.showIfEmpty())) {
269 (partition.getCount() > 0 || partition.showIfEmpty())) {
  /frameworks/ex/common/java/com/android/common/widget/
CompositeCursorAdapter.java 35 boolean showIfEmpty;
42 public Partition(boolean showIfEmpty, boolean hasHeader) {
43 this.showIfEmpty = showIfEmpty;
51 return showIfEmpty;
88 public void addPartition(boolean showIfEmpty, boolean hasHeader) {
89 addPartition(new Partition(showIfEmpty, hasHeader));
149 mPartitions.get(partitionIndex).showIfEmpty = flag;
180 if (count != 0 || partition.showIfEmpty) {

Completed in 163 milliseconds