Home
last modified time | relevance | path

Searched refs:countSum (Results 1 – 1 of 1) sorted by relevance

/packages/modules/IntentResolver/java/src/com/android/intentresolver/grid/
DChooserGridAdapter.java315 int countSum = count; in getItemViewType() local
317 countSum += (count = getServiceTargetRowCount()); in getItemViewType()
318 if (count > 0 && position < countSum) return VIEW_TYPE_DIRECT_SHARE; in getItemViewType()
320 countSum += (count = getCallerAndRankedTargetRowCount()); in getItemViewType()
321 if (count > 0 && position < countSum) return VIEW_TYPE_CALLER_AND_RANK; in getItemViewType()
323 countSum += (count = getAzLabelRowCount()); in getItemViewType()
324 if (count > 0 && position < countSum) return VIEW_TYPE_AZ_LABEL; in getItemViewType()