OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Description
(Results
176 - 200
of
520
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/hamcrest/library/src/org/hamcrest/collection/
IsIn.java
7
import org.hamcrest.
Description
;
26
public void describeTo(
Description
buffer) {
/external/hamcrest/library/src/org/hamcrest/text/
IsEqualIgnoringWhiteSpace.java
5
import org.hamcrest.
Description
;
31
public void describeTo(
Description
description
) {
32
description
.appendText("eqIgnoringWhiteSpace(")
/external/hamcrest/src/org/hamcrest/core/
DescribedAs.java
7
import org.hamcrest.
Description
;
13
* Provides a custom
description
to another matcher.
32
public void describeTo(
Description
description
) {
37
description
.appendText(descriptionTemplate.substring(textStart, arg.start()));
39
description
.appendValue(values[argIndex]);
44
description
.appendText(descriptionTemplate.substring(textStart));
49
* Wraps an existing matcher and overrides the
description
when it fails.
52
public static <T> Matcher<T> describedAs(String
description
, Matcher<T> matcher, Object... values) {
53
return new DescribedAs<T>(
description
, matcher, values);
[
all
...]
IsEqual.java
5
import org.hamcrest.
Description
;
28
public void describeTo(
Description
description
) {
29
description
.appendValue(object);
/external/llvm/test/MC/ARM/
directive-eabi_attribute-overwrite.s
12
@ CHECK-ATTR:
Description
: AEABI Conformant
directive-object_arch-2.s
19
@ CHECK:
Description
: ARM v4
directive-object_arch.s
19
@ CHECK:
Description
: ARM v4
/external/llvm/test/tools/llvm-readobj/ARM/
attribute-13.s
9
@CHECK-OBJ-NEXT:
Description
: ARM v7E-M
attribute-136.s
9
@CHECK-OBJ-NEXT:
Description
: AEABI Non-Conformant
attribute-14.s
9
@CHECK-OBJ-NEXT:
Description
: ARM v8
attribute-15.s
9
@CHECK-OBJ-NEXT:
Description
: AEABI Non-Conformant
attribute-A.s
9
@CHECK-OBJ-NEXT:
Description
: Application
attribute-M.s
9
@CHECK-OBJ-NEXT:
Description
: Microcontroller
attribute-R.s
9
@CHECK-OBJ-NEXT:
Description
: Real-time
attribute-S.s
9
@CHECK-OBJ-NEXT:
Description
: Classic
/external/mockito/src/org/mockito/internal/matchers/
VarargCapturingMatcher.java
3
import org.hamcrest.
Description
;
24
public void describeTo(
Description
description
) {
25
description
.appendText("<Capturing variable argument>");
/external/mockito/src/org/mockito/internal/runners/
JUnit44RunnerImpl.java
10
import org.junit.runner.
Description
;
40
public
Description
getDescription() {
JUnit45AndHigherRunnerImpl.java
7
import org.junit.runner.
Description
;
40
public
Description
getDescription() {
/external/mockito/src/org/mockito/runners/
MockitoJUnitRunner.java
7
import org.junit.runner.
Description
;
66
public
Description
getDescription() {
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
HasCompoundDrawablesMatcher.java
5
import org.hamcrest.
Description
;
37
public void describeTo(
Description
description
) {
38
description
.appendText(message);
ImageViewHasDrawableMatcher.java
5
import org.hamcrest.
Description
;
41
public void describeTo(
Description
description
) {
42
description
.appendText(message);
ViewHasTextMatcher.java
4
import org.hamcrest.
Description
;
46
public void describeTo(
Description
description
) {
47
description
.appendText("[" + actualText + "]");
48
description
.appendText(" to equal ");
49
description
.appendText("[" + expected + "]");
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
InMatcher.java
19
import org.hamcrest.
Description
;
61
public void describeTo(
Description
description
) {
62
description
.appendText("in(").appendValue(mValues).appendText(")");
/frameworks/base/core/java/android/view/animation/
TranslateAnimation.java
25
* {@link android.view.animation full package}
description
for details and
67
Description
d =
Description
.parseValue(a.peekValue(
72
d =
Description
.parseValue(a.peekValue(
77
d =
Description
.parseValue(a.peekValue(
82
d =
Description
.parseValue(a.peekValue(
/frameworks/base/libs/hwui/
TessellationCache.cpp
37
TessellationCache::
Description
::
Description
()
49
TessellationCache::
Description
::
Description
(Type type, const Matrix4& transform, const SkPaint& paint)
60
bool TessellationCache::
Description
::operator==(const TessellationCache::
Description
& rhs) const {
78
hash_t TessellationCache::
Description
::hash() const {
90
void TessellationCache::
Description
::setupMatrixAndPaint(Matrix4* matrix, SkPaint* paint) const {
126
TessellationTask(Tessellator tessellator, const
Description
&
description
)
134
Description
description
;
member in class:android::uirenderer::TessellationCache::TessellationTask
[
all
...]
Completed in 850 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>