/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/ |
D | BaseDescriptionTest.java | 19 baseDescription.appendValue(null); in describesAppendedNullValue() 25 baseDescription.appendValue("foo"); in quotesAppendedStringValue() 31 baseDescription.appendValue('f'); in quotesAppendedCharacterValue() 37 baseDescription.appendValue(Short.valueOf("2")); in bracketsAppendedShortValue() 43 baseDescription.appendValue(Long.valueOf("2")); in bracketsAppendedLongValue() 49 baseDescription.appendValue(Float.valueOf("1.2")); in bracketsAppendedFloatValue() 55 baseDescription.appendValue(new String[] {"2", "3"}); in describesAppendedArrayValue() 62 baseDescription.appendValue(value); in bracketsAppendedObjectValue() 75 baseDescription.appendValue(value); in safelyDescribesAppendedValueOfObjectWhoseToStringThrowsAnException()
|
/external/emma/ant/ant14/com/vladium/emma/instr/ |
D | FilterCfg.java | 54 appendValue (spec, COMMA); in setValue() 58 … appendValue (IInclExclFilter.INCLUSION_PREFIX + spec, COMMA); // default to inclusion in setValue() 68 …appendValue ("@".concat (file.getAbsolutePath ()), COMMA); // actual file I/O delayed until getFil… in setFile() 81 appendValue (spec, COMMA); in setIncludes() 86 … appendValue (IInclExclFilter.INCLUSION_PREFIX + spec.substring (1), COMMA); // override in setIncludes() 88 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec, COMMA); in setIncludes() 103 appendValue (spec, COMMA); in setExcludes() 108 … appendValue (IInclExclFilter.EXCLUSION_PREFIX + spec.substring (1), COMMA); // override in setExcludes() 110 appendValue (IInclExclFilter.EXCLUSION_PREFIX + spec, COMMA); in setExcludes() 131 createFilter ().appendValue (filter, COMMA); in setFilter()
|
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/number/ |
D | IsCloseTo.java | 30 mismatchDescription.appendValue(item) in describeMismatchSafely() 32 .appendValue(actualDelta(item)) in describeMismatchSafely() 34 .appendValue(delta); in describeMismatchSafely() 40 .appendValue(delta) in describeTo() 42 .appendValue(value); in describeTo()
|
D | BigDecimalCloseTo.java | 27 mismatchDescription.appendValue(item) in describeMismatchSafely() 29 .appendValue(actualDelta(item)) in describeMismatchSafely() 31 .appendValue(delta); in describeMismatchSafely() 37 .appendValue(delta) in describeTo() 39 .appendValue(value); in describeTo()
|
D | IsNaN.java | 22 mismatchDescription.appendText("was ").appendValue(item); in describeMismatchSafely()
|
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/comparator/ |
D | ComparatorMatcherBuilder.java | 85 mismatchDescription.appendValue(actual).appendText(" was ") 87 .appendText(" ").appendValue(expected); 89 mismatchDescription.appendText(" when compared by ").appendValue(comparator); 99 description.appendText(" ").appendValue(expected); 101 description.appendText(" when compared by ").appendValue(comparator);
|
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/ |
D | IsEqualIgnoringCase.java | 31 mismatchDescription.appendText("was ").appendValue(item); in describeMismatchSafely() 37 .appendValue(string) in describeTo()
|
D | IsEqualIgnoringWhiteSpace.java | 39 .appendValue(string) in describeTo()
|
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/ |
D | IsEventFrom.java | 30 mismatchDescription.appendText("source was ").appendValue(item.getSource()); in matchesSafely() 46 .appendValue(source); in describeTo()
|
D | IsCompatibleType.java | 21 mismatchDescription.appendValue(cls.getName()); in describeMismatchSafely()
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/ |
D | Description.java | 28 Description appendValue(Object value); in appendValue() method 68 public Description appendValue(Object value) { in appendValue() method in Description.NullDescription
|
D | BaseMatcher.java | 21 description.appendText("was ").appendValue(item); in describeMismatch()
|
D | TypeSafeMatcher.java | 79 .appendValue(item) in describeMismatch()
|
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/ |
D | IsArray.java | 34 mismatchDescription.appendText("array length was ").appendValue(actual.length); in describeMismatchSafely() 39 mismatchDescription.appendText("element ").appendValue(i).appendText(" "); in describeMismatchSafely()
|
D | IsIterableContainingInAnyOrder.java | 51 mismatchDescription.appendText("no match for: ").appendValue(item); in matches() 74 mismatchDescription.appendText("not matched: ").appendValue(item); in isMatched()
|
D | IsEmptyCollection.java | 21 mismatchDescription.appendValue(item); in describeMismatchSafely()
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | OpenTypeTableWriter.java | 38 void appendValue(StringBuffer line, int index) in appendValue() method in OpenTypeTableWriter.OpenTypeTableDumper 61 appendValue(line, i); in dumpTable()
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | IcuTextWriter.java | 186 appendValue(value, quote, out); in appendValues() 197 appendValue(part, quote, out).println(); in appendValues() 251 appendValue(quoteInside(value), quote, out); in appendArray() 260 private static PrintWriter appendValue(String value, boolean quote, PrintWriter out) { in appendValue() method in IcuTextWriter
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/ |
D | SelfDescribingValue.java | 15 description.appendValue(value); in describeTo()
|
/external/emma/ant/ant14/com/vladium/emma/ant/ |
D | StringValue.java | 23 public void appendValue (final String value, final String separator) in appendValue() method in StringValue
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/ |
D | IsSame.java | 26 .appendValue(object) in describeTo()
|
D | SubstringMatcher.java | 35 .appendValue(substring); in describeTo()
|
D | IsInstanceOf.java | 47 mismatch.appendValue(item).appendText(" is a " + item.getClass().getName()); in matches()
|
D | DescribedAs.java | 39 description.appendValue(values[parseInt(arg.group(1))]); in describeTo()
|
/external/junit/src/main/java/org/junit/internal/ |
D | AssumptionViolatedException.java | 103 description.appendValue(fValue); in describeTo()
|