OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fErrors
(Results
1 - 25
of
30
) sorted by null
1
2
/external/junit/src/org/junit/internal/runners/
InitializationError.java
13
private final List<Throwable>
fErrors
;
16
fErrors
= errors;
28
return
fErrors
;
MethodValidator.java
24
private final List<Throwable>
fErrors
= new ArrayList<Throwable>();
39
fErrors
.add(new Exception("No runnable methods"));
51
return
fErrors
;
55
if (!
fErrors
.isEmpty())
56
throw new InitializationError(
fErrors
);
63
fErrors
.add(new Exception("Test class should have public zero-argument constructor", e));
74
fErrors
.add(new Exception("Method " + each.getName() + "() "
78
fErrors
.add(new Exception("Class " + each.getDeclaringClass().getName()
81
fErrors
.add(new Exception("Method " + each.getName()
84
fErrors
.add(new Exception("Method " + each.getName(
[
all
...]
/external/junit/src/org/junit/runners/model/
InitializationError.java
11
private final List<Throwable>
fErrors
;
18
fErrors
= errors;
37
return
fErrors
;
MultipleFailureException.java
15
private final List<Throwable>
fErrors
;
18
fErrors
= new ArrayList<Throwable>(errors);
22
return Collections.unmodifiableList(
fErrors
);
28
String.format("There were %d errors:",
fErrors
.size()));
29
for (Throwable e :
fErrors
) {
/external/junit/src/junit/framework/
TestResult.java
21
protected Vector<TestFailure>
fErrors
;
30
fErrors
= new Vector<TestFailure>();
41
fErrors
.add(new TestFailure(test, t));
85
return
fErrors
.size();
91
return Collections.enumeration(
fErrors
);
/external/chromium_org/third_party/icu/source/test/intltest/
simplethread.cpp
457
UBool getError() { return (
fErrors
> 0); }
458
UBool getError(UnicodeString& fillinError) { fillinError = fErrorString; return (
fErrors
> 0); }
461
ThreadWithStatus() :
fErrors
(0) {}
463
fErrors
++; fErrorString = error;
468
int32_t
fErrors
;
tsmthred.cpp
418
UBool getError() { return (
fErrors
> 0); }
419
UBool getError(UnicodeString& fillinError) { fillinError = fErrorString; return (
fErrors
> 0); }
422
ThreadWithStatus() :
fErrors
(0) {}
424
fErrors
++; fErrorString = error;
429
int32_t
fErrors
;
[
all
...]
/external/icu4c/test/intltest/
simplethread.cpp
465
UBool getError() { return (
fErrors
> 0); }
466
UBool getError(UnicodeString& fillinError) { fillinError = fErrorString; return (
fErrors
> 0); }
469
ThreadWithStatus() :
fErrors
(0) {}
471
fErrors
++; fErrorString = error;
476
int32_t
fErrors
;
tsmthred.cpp
569
UBool getError() { return (
fErrors
> 0); }
570
UBool getError(UnicodeString& fillinError) { fillinError = fErrorString; return (
fErrors
> 0); }
573
ThreadWithStatus() :
fErrors
(0) {}
575
fErrors
++; fErrorString = error;
580
int32_t
fErrors
;
[
all
...]
/external/skia/tests/
PictureTest.cpp
358
int
fErrors
;
364
errorContext->
fErrors
++;
367
REPORTER_ASSERT_MESSAGE(errorContext->fReporter, 1 == errorContext->
fErrors
,
396
context.
fErrors
= 0;
/libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar
/external/robolectric/lib/main/
junit-dep-4.8.2.jar
/cts/tools/vm-tests-tf/lib/
junit.jar
/external/dexmaker/lib/
junit.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
junit.jar
/prebuilts/devtools/adt/lib/
junit-3.8.1.jar
/prebuilts/tools/common/m2/internal/junit/junit/3.8.1/
junit-3.8.1.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar
/prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar
/prebuilts/tools/common/m2/internal/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar
/external/jdiff/
xerces.jar
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
Completed in 104 milliseconds
1
2