Searched refs:listItem (Results 1 – 6 of 6) sorted by relevance
57 ViewGroup listItem = (ViewGroup) mListView.getChildAt(listIndex); in getTopOfChildOfItem() local58 View child = listItem.getChildAt(index); in getTopOfChildOfItem()59 return child.getTop() + listItem.getTop(); in getTopOfChildOfItem()63 ViewGroup listItem = (ViewGroup) mListView.getChildAt(listIndex); in getBottomOfChildOfItem() local64 View child = listItem.getChildAt(index); in getBottomOfChildOfItem()65 return child.getBottom() + listItem.getTop(); in getBottomOfChildOfItem()
217 for (CarrierIdentifier listItem : list) { in isCarrierIdInList()219 if (!patternMatch(id.getMcc(), listItem.getMcc()) in isCarrierIdInList()220 || !patternMatch(id.getMnc(), listItem.getMnc())) { in isCarrierIdInList()226 String listItemValue = convertNullToEmpty(listItem.getSpn()); in isCarrierIdInList()235 listItemValue = convertNullToEmpty(listItem.getImsi()); in isCarrierIdInList()244 listItemValue = convertNullToEmpty(listItem.getGid1()); in isCarrierIdInList()253 listItemValue = convertNullToEmpty(listItem.getGid2()); in isCarrierIdInList()
66 auto listItem = mListItems[(ci + itemIndexOffset) % mListItems.size()]; in doFrame() local68 listItem->mutateStagingProperties().setLeftTopRightBottom( in doFrame()70 listItem->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y); in doFrame()
639 View listItem = view; in getPositionForView() local642 while ((v = (View) listItem.getParent()) != null && !v.equals(this)) { in getPositionForView()643 listItem = v; in getPositionForView()650 if (listItem != null) { in getPositionForView()654 if (getChildAt(i).equals(listItem)) { in getPositionForView()
328 RemoteViews listItem = new RemoteViews(mPackage, R.layout.remote_view_host);329 listItem.addView(R.id.container, nested);330 listItem.addFlags(RemoteViews.FLAG_WIDGET_IS_COLLECTION_CHILD);332 View view = listItem.apply(mContext, mContainer);347 RemoteViews listItem = new RemoteViews(inner, inner);348 listItem.addFlags(RemoteViews.FLAG_WIDGET_IS_COLLECTION_CHILD);350 View view = listItem.apply(mContext, mContainer);365 RemoteViews listItem = new RemoteViews(367 listItem.addFlags(RemoteViews.FLAG_WIDGET_IS_COLLECTION_CHILD);369 View view = listItem.apply(mContext, mContainer);
628 val listItem = parent.getItemAtPosition(pos) as SelectionItem regex629 this@ControlsUiControllerImpl.switchAppOrStructure(listItem)