Searched refs:customActions (Results 1 – 4 of 4) sorted by relevance
/packages/apps/TV/src/com/android/tv/menu/ |
D | MenuRowFactory.java | 56 List<CustomAction> customActions = mTvCustomizationManager.getCustomActions( in createMenuRow() local 59 if (customActions != null && !TextUtils.isEmpty(title)) { in createMenuRow() 60 return new PartnerRow(mMainActivity, menu, title, customActions); in createMenuRow() 76 private TvOptionsRow(Context context, Menu menu, List<CustomAction> customActions) { in TvOptionsRow() argument 78 new TvOptionsRowAdapter(context, customActions)); in TvOptionsRow() 113 List<CustomAction> customActions) { in PartnerRow() argument 115 new PartnerOptionsRowAdapter(context, customActions)); in PartnerRow()
|
D | PartnerOptionsRowAdapter.java | 27 public PartnerOptionsRowAdapter(Context context, List<CustomAction> customActions) { in PartnerOptionsRowAdapter() argument 28 super(context, customActions); in PartnerOptionsRowAdapter()
|
D | CustomizableOptionsRowAdapter.java | 32 public CustomizableOptionsRowAdapter(Context context, List<CustomAction> customActions) { in CustomizableOptionsRowAdapter() argument 34 mCustomActions = customActions; in CustomizableOptionsRowAdapter()
|
D | TvOptionsRowAdapter.java | 47 public TvOptionsRowAdapter(Context context, List<CustomAction> customActions) { in TvOptionsRowAdapter() argument 48 super(context, customActions); in TvOptionsRowAdapter()
|