Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
DTableView.java45 private final Map<CharSequence, KeyValueRow> mRows = new HashMap<>();
92 protected KeyValueRow createKeyValueRow(ViewGroup parent) { in createKeyValueRow()
93 KeyValueRow row = (KeyValueRow) mInflater.inflate(R.layout.table_key_value_row, null); in createKeyValueRow()
110 protected KeyValueRow put(CharSequence key, CharSequence value) { in put()
111 KeyValueRow row = mRows.get(key); in put()
DKeyValueRow.java39 public class KeyValueRow extends LinearLayout { class
45 public KeyValueRow(Context context) { in KeyValueRow() method in KeyValueRow
49 public KeyValueRow(Context context, AttributeSet attrs) { in KeyValueRow() method in KeyValueRow
53 public KeyValueRow(Context context, AttributeSet attrs, int defStyleAttr) { in KeyValueRow() method in KeyValueRow
DDebugView.java142 KeyValueRow row = put(mRes.getString(key), String.valueOf(value)); in put()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
DInspectorBot.java31 import com.android.documentsui.inspector.KeyValueRow;
68 if (view instanceof KeyValueRow) { in getTableRows()