OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TestListItem
(Results
1 - 6
of
6
) sorted by null
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NfcTestActivity.java
22
import com.android.cts.verifier.TestListAdapter.
TestListItem
;
48
adapter.add(
TestListItem
.newCategory(this, R.string.nfc_pee_2_pee));
49
adapter.add(
TestListItem
.newTest(this, R.string.nfc_ndef_push_sender,
52
adapter.add(
TestListItem
.newTest(this, R.string.nfc_ndef_push_receiver,
56
adapter.add(
TestListItem
.newCategory(this, R.string.nfc_tag_verification));
57
adapter.add(
TestListItem
.newTest(this, R.string.nfc_ndef,
59
adapter.add(
TestListItem
.newTest(this, R.string.nfc_mifare_ultralight,
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
P2pTestListActivity.java
34
import com.android.cts.verifier.TestListAdapter.
TestListItem
;
70
adapter.add(
TestListItem
.newCategory(this, R.string.p2p_group_formation));
71
adapter.add(
TestListItem
.newTest(this,
75
adapter.add(
TestListItem
.newTest(this,
80
adapter.add(
TestListItem
.newCategory(this, R.string.p2p_join));
81
adapter.add(
TestListItem
.newTest(this,
85
adapter.add(
TestListItem
.newTest(this,
90
adapter.add(
TestListItem
.newCategory(this, R.string.p2p_service_discovery));
91
adapter.add(
TestListItem
.newTest(this,
95
adapter.add(
TestListItem
.newTest(this
[
all
...]
RequesterTestListActivity.java
29
import com.android.cts.verifier.TestListAdapter.
TestListItem
;
103
adapter.add(
TestListItem
.newTest(testcase.getTestName(), testcase.getTestId(),
/cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java
23
import com.android.cts.verifier.TestListAdapter.
TestListItem
;
143
adapter.add(
TestListItem
.newCategory("RTSP"));
148
adapter.add(
TestListItem
.newCategory("HTTP Progressive"));
166
streams.add(
TestListItem
.newTest(stream.name, PlayVideoActivity.getTestId(stream.code),
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
ManifestTestListAdapter.java
92
protected List<
TestListItem
> getRows() {
101
Map<String, List<
TestListItem
>> testsByCategory = getTestsByCategory(infos);
106
List<
TestListItem
> allRows = new ArrayList<
TestListItem
>();
108
List<
TestListItem
> tests = filterTests(testsByCategory.get(testCategory));
110
allRows.add(
TestListItem
.newCategory(testCategory));
111
Collections.sort(tests, new Comparator<
TestListItem
>() {
113
public int compare(
TestListItem
item,
TestListItem
otherItem) {
144
Map<String, List<
TestListItem
>> getTestsByCategory(List<ResolveInfo> list)
[
all
...]
TestListAdapter.java
61
private final List<
TestListItem
> mRows = new ArrayList<
TestListItem
>();
72
public static class
TestListItem
{
86
public static
TestListItem
newTest(Context context, int titleResId, String testName,
91
public static
TestListItem
newTest(String title, String testName, Intent intent,
93
return new
TestListItem
(title, testName, intent, requiredFeatures);
96
public static
TestListItem
newCategory(Context context, int titleResId) {
100
public static
TestListItem
newCategory(String title) {
101
return new
TestListItem
(title, null, null, null);
104
private
TestListItem
(String title, String testName, Intent intent
[
all
...]
Completed in 60 milliseconds