OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mTestNames
(Results
1 - 2
of
2
) sorted by null
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
RSTest.java
48
String
mTestNames
[];
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java
91
String[]
mTestNames
;
127
if (
mTestNames
!= null) {
129
combinedNames = new String[newNames.length +
mTestNames
.length];
130
System.arraycopy(
mTestNames
, 0, combinedNames, 0,
mTestNames
.length);
131
System.arraycopy(newNames, 0, combinedNames,
mTestNames
.length, newNames.length);
132
mTestNames
= combinedNames;
134
mTestNames
= newNames;
168
results.write(
mTestNames
[i] + ", " + mLocalTestResults[i] + ",\n");
Completed in 248 milliseconds