OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testCount
(Results
1 - 25
of
66
) sorted by null
1
2
3
/external/junit/src/org/junit/runner/
Runner.java
37
public int
testCount
() {
38
return getDescription().
testCount
();
Description.java
138
public int
testCount
() {
143
result+= child.
testCount
();
/frameworks/base/tests/backup/
backup_helper_test.cpp
71
int
testCount
= 0;
75
testCount
++;
87
t->name, i,
testCount
);
104
printf("All %d test(s) passed\n",
testCount
);
106
printf("Tests failed: (%d of %d)\n", failed,
testCount
);
/external/junit/src/junit/runner/
TestRunListener.java
14
public void testRunStarted(String testSuiteName, int
testCount
);
/external/chromium_org/third_party/icu/source/test/intltest/
itercoll.h
101
void verifyExpansion(UnicodeString rules, ExpansionRecord tests[], int32_t
testCount
);
regcoll.h
238
int32_t
testCount
);
/external/icu4c/test/intltest/
itercoll.h
101
void verifyExpansion(UnicodeString rules, ExpansionRecord tests[], int32_t
testCount
);
regcoll.h
245
int32_t
testCount
);
/external/skia/gm/
rects.cpp
248
static void position(SkCanvas* canvas, int
testCount
) {
249
canvas->translate(SK_Scalar1 * 100 * (
testCount
% 10) + SK_Scalar1 / 4,
250
SK_Scalar1 * 100 * (
testCount
/ 10) + 3 * SK_Scalar1 / 4);
258
int
testCount
= 0;
263
for (int j = 0; j < fRects.count(); ++j, ++
testCount
) {
265
this->position(canvas,
testCount
);
278
for (int j = 0; j < fRects.count(); ++j, ++
testCount
) {
280
this->position(canvas,
testCount
);
ovals.cpp
154
int
testCount
= 0;
160
mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (
testCount
% maxX) +
162
kYStart + SK_Scalar1 * kYStep * (
testCount
/ maxX) +
174
++
testCount
;
roundrects.cpp
157
int
testCount
= 0;
163
mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (
testCount
% maxX) +
165
kYStart + SK_Scalar1 * kYStep * (
testCount
/ maxX) +
177
++
testCount
;
/external/skia/tests/
PathOpsCubicToQuadsTest.cpp
17
int firstTest, size_t
testCount
) {
18
for (size_t index = firstTest; index <
testCount
; ++index) {
33
int firstTest, size_t
testCount
) {
34
for (size_t index = firstTest; index <
testCount
; ++index) {
50
int firstTest, size_t
testCount
) {
52
for (size_t index = firstTest; index <
testCount
; ++index) {
73
int firstTest, size_t
testCount
) {
74
for (size_t index = firstTest; index <
testCount
; ++index) {
SkpSkGrTest.cpp
591
int
testCount
= 0;
603
++
testCount
;
625
++
testCount
;
627
if (
testCount
% 100 == 0) {
628
SkDebugf("#%d\n",
testCount
);
634
if (1 &&
testCount
== 20) {
skia_test.cpp
254
const int
testCount
= reporter.countTests();
255
if (FLAGS_verbose &&
testCount
> 0) {
256
SkDebugf("Ran %d Internal tests.\n",
testCount
);
PathOpsSkpClipTest.cpp
536
int
testCount
= 0;
548
++
testCount
;
570
++
testCount
;
573
if (++
testCount
% 100 == 0) {
574
SkDebugf("%d\n",
testCount
);
587
if (1 &&
testCount
== 20) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
TestCollector.java
76
public synchronized void testRunStarted(String ignoredRunName, int
testCount
) {
77
mTotalTestCount =
testCount
;
/external/junit/src/junit/extensions/
ActiveTestSuite.java
57
while (fActiveTestDeathCount <
testCount
()) {
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
ResultFilter.java
69
public void testRunStarted(String runName, int
testCount
) {
70
super.testRunStarted(runName,
testCount
);
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
overview.js
64
testCount
: 0
70
flakyData[testType].
testCount
= Math.max(totalTestCount, flakyData[testType].
testCount
);
104
var
testCount
= flakyData[testType].
testCount
;
105
if (!
testCount
)
116
var percentage = Math.round(100 * flakyCount /
testCount
);
121
'<td>' + flakyCount + ' / ' +
testCount
+ '</td>' +
/external/guava/guava-tests/test/com/google/common/io/
CountingOutputStreamTest.java
28
public void
testCount
() throws Exception {
/external/junit/src/junit/framework/
JUnit4TestAdapter.java
35
return fRunner.
testCount
();
/external/chromium_org/third_party/skia/src/pathops/
SkOpAngle.cpp
330
int
testCount
= SkDCubic::FindInflections(pts, testTs);
334
for (index = 0; index <
testCount
; ++index) {
339
testTs[
testCount
++] = startT;
340
testTs[
testCount
++] = endT;
341
SkTQSort<double>(testTs, &testTs[
testCount
- 1]);
343
int testCases = (
testCount
<< 1) - 1;
/external/skia/src/pathops/
SkOpAngle.cpp
330
int
testCount
= SkDCubic::FindInflections(pts, testTs);
334
for (index = 0; index <
testCount
; ++index) {
339
testTs[
testCount
++] = startT;
340
testTs[
testCount
++] = endT;
341
SkTQSort<double>(testTs, &testTs[
testCount
- 1]);
343
int testCases = (
testCount
<< 1) - 1;
/frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
InstrumentationResultPrinter.java
103
mResultTemplate.putInt(REPORT_KEY_NUM_TOTAL, description.
testCount
());
/external/junit/src/org/junit/internal/runners/
JUnit38ClassRunner.java
110
int n= ts.
testCount
();
160
int n= suite.
testCount
();
Completed in 1026 milliseconds
1
2
3