OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testDetails
(Results
1 - 4
of
4
) sorted by null
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResult.java
44
public static void setPassedResult(Activity activity, String testId, String
testDetails
) {
46
testDetails
));
50
public static void setFailedResult(Activity activity, String testId, String
testDetails
) {
52
testDetails
));
56
String
testDetails
) {
60
data.putExtra(TEST_DETAILS,
testDetails
);
PassFailButtons.java
297
String
testDetails
, View target) {
309
setTestResultAndFinish(activity, testId,
testDetails
, passed);
314
String
testDetails
, boolean passed) {
316
TestResult.setPassedResult(activity, testId,
testDetails
);
318
TestResult.setFailedResult(activity, testId,
testDetails
);
TestResultsProvider.java
57
static final String COLUMN_TEST_DETAILS = "
testdetails
";
205
String
testDetails
) {
209
values.put(TestResultsProvider.COLUMN_TEST_DETAILS,
testDetails
);
TestListAdapter.java
194
String
testDetails
= cursor.getString(3);
196
details.put(testName,
testDetails
);
Completed in 43 milliseconds