OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:appendText
(Results
1 - 25
of
77
) sorted by null
1
2
3
4
/external/mockito/src/org/mockito/internal/matchers/
Same.java
28
description.
appendText
("same(");
30
description.
appendText
("" + wanted);
32
description.
appendText
(")");
37
description.
appendText
("\"");
39
description.
appendText
("'");
And.java
36
description.
appendText
("and(");
40
description.
appendText
(", ");
43
description.
appendText
(")");
Or.java
36
description.
appendText
("or(");
40
description.
appendText
(", ");
43
description.
appendText
(")");
Not.java
29
description.
appendText
("not(");
31
description.
appendText
(")");
Any.java
26
description.
appendText
("<any>");
Contains.java
28
description.
appendText
("contains(\"" + substring + "\")");
EndsWith.java
28
description.
appendText
("endsWith(\"" + suffix + "\")");
NotNull.java
28
description.
appendText
("notNull()");
Null.java
27
description.
appendText
("isNull()");
StartsWith.java
28
description.
appendText
("startsWith(\"" + prefix + "\")");
ArrayEquals.java
56
description.
appendText
("[");
60
description.
appendText
(", ");
63
description.
appendText
("]");
CompareTo.java
30
description.
appendText
(getName() + "(" + wanted + ")");
/external/junit/src/org/junit/internal/matchers/
SubstringMatcher.java
19
description.
appendText
("a string ")
20
.
appendText
(relationship())
21
.
appendText
(" ")
/external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
HasResourceMatcher.java
33
description.
appendText
("actual view was null");
35
description.
appendText
("[" + actualResourceId + "]");
36
description.
appendText
(" to equal ");
37
description.
appendText
("[" + expectedResourceId + "]");
TextViewHasTextMatcher.java
33
description.
appendText
("[" + actualText + "]");
34
description.
appendText
(" to equal ");
35
description.
appendText
("[" + expected + "]");
ViewHasTextMatcher.java
47
description.
appendText
("[" + actualText + "]");
48
description.
appendText
(" to equal ");
49
description.
appendText
("[" + expected + "]");
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
MagneticFieldMeasurementTestActivity.java
38
appendText
("Verifying the Norm...");
41
appendText
("\nVerifying the Standard Deviation...");
55
appendText
(
58
appendText
(
61
appendText
("Then leave the device in a flat surface and press Next...\n");
GyroscopeMeasurementTestActivity.java
29
appendText
("Place the device in a flat surface with the screen facing the ceiling, make "
94
appendText
(String.format("\n[Device orientation]: %s", orientation));
95
appendText
(String.format("Press 'Next' and %s.", scenarioInstructions));
AccelerometerMeasurementTestActivity.java
91
appendText
(String.format("\n%s.", message));
92
appendText
("A sound will be played once the verification is complete...");
104
appendText
(String.format("\n%s.", message));
105
appendText
("Press 'Next' when ready and keep the device steady.");
/external/junit/src/org/junit/internal/
AssumptionViolatedException.java
32
description.
appendText
("got: ");
34
description.
appendText
(", expected: ");
37
description.
appendText
("failed assumption: " + fValue);
/external/hamcrest/src/org/hamcrest/core/
IsInstanceOf.java
32
description.
appendText
("an instance of ")
33
.
appendText
(theClass.getName());
IsSame.java
26
description.
appendText
("same(") .appendValue(object) .
appendText
(")");
/external/mockito/src/org/mockito/
ArgumentMatcher.java
90
description.
appendText
(Decamelizer.decamelizeMatcher(className));
/external/junit/src/org/junit/experimental/results/
ResultMatchers.java
30
description.
appendText
("has " + count + " failures");
50
description.
appendText
("has single failure containing " + string);
66
description.
appendText
("has failure containing " + string);
/external/hamcrest/src/org/hamcrest/
Description.java
14
Description
appendText
(String text);
Completed in 275 milliseconds
1
2
3
4