OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matchesSafely
(Results
1 - 25
of
111
) sorted by null
1
2
3
4
5
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
TypeSafeDiagnosingMatcher.java
10
* To use, implement <pre>
matchesSafely
()</pre>.
18
private static final ReflectiveTypeFinder TYPE_FINDER = new ReflectiveTypeFinder("
matchesSafely
", 2, 0);
25
protected abstract boolean
matchesSafely
(T item, Description mismatchDescription);
28
* Use this constructor if the subclass that implements <code>
matchesSafely
</code>
37
* Use this constructor if the subclass that implements <code>
matchesSafely
</code>
57
&&
matchesSafely
((T) item, new Description.NullDescription());
66
matchesSafely
((T) item, mismatchDescription);
TypeSafeMatcher.java
14
private static final ReflectiveTypeFinder TYPE_FINDER = new ReflectiveTypeFinder("
matchesSafely
", 1, 0);
26
* Use this constructor if the subclass that implements <code>
matchesSafely
</code>
35
* Use this constructor if the subclass that implements <code>
matchesSafely
</code>
47
protected abstract boolean
matchesSafely
(T item);
67
&&
matchesSafely
((T) item);
FeatureMatcher.java
39
protected boolean
matchesSafely
(T actual, Description mismatch) {
/prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar
/external/junit/src/main/java/org/junit/internal/matchers/
TypeSafeMatcher.java
24
public abstract boolean
matchesSafely
(T item);
39
throw new Error("Cannot determine correct type for
matchesSafely
() method.");
43
return method.getName().equals("
matchesSafely
")
61
&&
matchesSafely
((T) item);
/frameworks/support/design/tests/src/android/support/design/testutils/
AppBarLayoutMatchers.java
38
protected boolean
matchesSafely
(AppBarLayout item) {
TextInputLayoutMatchers.java
44
protected boolean
matchesSafely
(TextInputLayout item) {
65
protected boolean
matchesSafely
(TextInputLayout item) {
85
protected boolean
matchesSafely
(TextInputLayout item) {
TestUtilsMatchers.java
62
public boolean
matchesSafely
(final View view) {
87
public boolean
matchesSafely
(final View view) {
112
public boolean
matchesSafely
(final TextView view) {
137
public boolean
matchesSafely
(final TextView view) {
179
public boolean
matchesSafely
(final TextView view) {
218
public boolean
matchesSafely
(final ImageView view) {
255
public boolean
matchesSafely
(final View view) {
284
public boolean
matchesSafely
(final View view) {
330
public boolean
matchesSafely
(View view) {
356
public boolean
matchesSafely
(final View view)
[
all
...]
/prebuilts/misc/common/android-support-test/espresso/
espresso_intents_release_no_deps.jar
/frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
TestUtilsMatchers.java
54
public boolean
matchesSafely
(final ImageView view) {
102
public boolean
matchesSafely
(final View view) {
144
public boolean
matchesSafely
(View view) {
184
public boolean
matchesSafely
(final CheckedTextView view) {
210
public boolean
matchesSafely
(final CheckedTextView view) {
234
protected boolean
matchesSafely
(SQLiteCursor cursor) {
252
public boolean
matchesSafely
(View view) {
271
protected boolean
matchesSafely
(List<Float> item) {
302
protected boolean
matchesSafely
(List<Float> item) {
336
protected boolean
matchesSafely
(List<Float> item)
[
all
...]
/prebuilts/misc/common/robolectric/lib/
hamcrest-library-1.3.jar
/prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/
hamcrest-library-1.3.jar
/frameworks/support/core-ui/tests/java/android/support/v4/testutils/
TestUtilsMatchers.java
51
public boolean
matchesSafely
(final View view) {
91
public boolean
matchesSafely
(View view) {
111
public boolean
matchesSafely
(final View view) {
157
public boolean
matchesSafely
(final View view) {
202
public boolean
matchesSafely
(final View view) {
244
protected boolean
matchesSafely
(List<Integer> item) {
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/
CustomTypeSafeMatcherTest.java
12
public boolean
matchesSafely
(String item) {
TypeSafeMatcherTest.java
13
public boolean
matchesSafely
(String item) {
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/number/
IsNaN.java
16
public boolean
matchesSafely
(Double item) {
IsCloseTo.java
24
public boolean
matchesSafely
(Double item) {
/cts/tests/tests/widget/src/android/widget/cts/util/
TestUtilsMatchers.java
39
protected boolean
matchesSafely
(List<Integer> item) {
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
Every.java
15
public boolean
matchesSafely
(Iterable<? extends T> collection, Description mismatchDescription) {
SubstringMatcher.java
22
public boolean
matchesSafely
(String item) {
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
IsEmptyCollection.java
15
public boolean
matchesSafely
(Collection<? extends E> item) {
IsEmptyIterable.java
13
public boolean
matchesSafely
(Iterable<? extends E> iterable) {
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
IsCompatibleType.java
15
public boolean
matchesSafely
(Class<?> cls) {
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/
IsBlankString.java
26
public boolean
matchesSafely
(String item) {
IsEmptyString.java
22
public boolean
matchesSafely
(String item) {
Completed in 587 milliseconds
1
2
3
4
5