HomeSort by relevance Sort by last modified time
    Searched full:actual (Results 601 - 625 of 14177) sorted by null

<<21222324252627282930>>

  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
HasToString.java 14 protected String featureValueOf(T actual) {
15 return String.valueOf(actual);
  /external/jacoco/org.jacoco.examples/build/src/test/java/org/jacoco/examples/parser/
ExpressionParserTest.java 53 final double actual = parser.parse().evaluate(); local
54 assertEquals("expression", expected, actual, 0.0);
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Equals.java 21 public boolean matches(Object actual) {
22 return Equality.areEqual(this.wanted, actual);
  /external/mockito/src/test/java/org/mockitousage/junitrunner/
ModellingVerboseMockitoTest.java 43 //TODO: should show message from actual failure not at the bottom but at least below 'the actual failure is ...'
  /external/objenesis/main/src/test/java/org/objenesis/strategy/
PlatformDescriptionTest.java 48 int actual = (Integer) m.invoke(null); local
49 assertEquals(42, actual);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SignatureTest.java 37 Signature actual = Signature.CREATOR.createFromParcel(p); local
38 assertEquals(expected, actual);
  /external/skia/experimental/DrawingBoard/
SkNetPipeController.cpp 28 void* SkNetPipeController::requestBlock(size_t minRequest, size_t* actual) {
34 *actual = fBlockSize;
  /external/skia/tools/
jsondiff.py 11 Gathers diffs between 2 JSON expectations files, or between actual and
12 expected results within a single JSON actual-results file,
28 # that directory. That script allows us to parse the actual-results.json file
107 """Returns the dictionary of actual results from a JSON string,
122 Any tests for which we have no actual results will be left out of the
158 If newfile is not specified, then 'new' is the actual results within
169 If newfile is not specified, then 'new' is the actual results within
191 'ACTUAL results from the "old" JSON file. This can be a ' +
  /external/toolchain-utils/crosperf/experiment_files/
page_cycler_perf.exp 5 # with the appropriate actual values.
42 # Replace the chromeos image below with the actual path to your test image.
telemetry-crosperf-with-external-chrome-src.exp 7 # with the appropriate actual values.
23 # Replace the chromeos image below with the actual path to your test imnage.
telemetry-crosperf-with-profiler.exp 5 # with the appropriate actual values.
31 # Replace the chromeos image below with the actual path to your test imnage.
telemetry-crosperf.exp 6 # with the appropriate actual values.
29 # Replace the chromeos image below with the actual path to your test image.
telemetry-without-autotest.exp 7 # with the appropriate actual values.
28 # Replace the chromeos image below with the actual path to your test image.
trybot-image.exp 6 # with the appropriate actual values.
23 # Replace <path-to-your-chroot-goes-here> with the actual directory path
  /external/valgrind/exp-sgcheck/tests/
stackerr.c 8 Actual: stack array "beforea" in frame 2 back from here
13 Actual: unknown
  /frameworks/av/media/libstagefright/tests/
DummyRecorder.h 40 // actual entry point for the thread
43 // static function to wrap the actual thread entry point
  /libcore/luni/src/test/etc/loading-test-jar/
TestMethods.java 46 public static void assertSame(Object expected, Object actual) {
47 if (expected != actual) {
49 "EXPECTED: " + expected + "; ACTUAL: " + actual);
56 public static void assertSame(int expected, int actual) {
57 if (expected != actual) {
59 "EXPECTED: " + expected + "; ACTUAL: " + actual);
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceSetTest.java 216 private void verify(Object[] expected, Object[] actual) {
217 if (actual == null && expected == null) {
220 assertNotNull("actual result is null but expected is not. Expected: "
221 + Arrays.toString(expected), actual);
222 assertNotNull("expected result is null but actual is not. Actual: "
223 + Arrays.toString(actual), expected);
224 assertEquals("Expected and actual are not of same size."
225 + "Expected: " + Arrays.toString(expected) + " Actual: " + Arrays.toString(actual),
    [all...]
  /test/vts/compilation_tools/vtsc/test/golden/PROFILER/
Nfc.profiler.cpp 48 LOG(ERROR) << "Number of arguments does not match. expect: 1, actual: " << (*args).size() << ", method name: open, event type: " << event;
61 LOG(ERROR) << "Number of return values does not match. expect: 1, actual: " << (*args).size() << ", method name: open, event type: " << event;
91 LOG(ERROR) << "Number of arguments does not match. expect: 1, actual: " << (*args).size() << ", method name: write, event type: " << event;
110 LOG(ERROR) << "Number of return values does not match. expect: 1, actual: " << (*args).size() << ", method name: write, event type: " << event;
140 LOG(ERROR) << "Number of arguments does not match. expect: 1, actual: " << (*args).size() << ", method name: coreInitialized, event type: " << event;
159 LOG(ERROR) << "Number of return values does not match. expect: 1, actual: " << (*args).size() << ", method name: coreInitialized, event type: " << event;
189 LOG(ERROR) << "Number of arguments does not match. expect: 0, actual: " << (*args).size() << ", method name: prediscover, event type: " << event;
199 LOG(ERROR) << "Number of return values does not match. expect: 1, actual: " << (*args).size() << ", method name: prediscover, event type: " << event;
229 LOG(ERROR) << "Number of arguments does not match. expect: 0, actual: " << (*args).size() << ", method name: close, event type: " << event;
239 LOG(ERROR) << "Number of return values does not match. expect: 1, actual: " << (*args).size() << ", method name: close, event type: " << event
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BlurMaskFilterTest.java 78 private void verifyColor(int expected, int actual, int alphaTolerance) {
79 assertEquals(Color.red(expected), Color.red(actual));
80 assertEquals(Color.green(expected), Color.green(actual));
81 assertEquals(Color.blue(expected), Color.blue(actual));
82 assertEquals(Color.alpha(expected), Color.alpha(actual), alphaTolerance);
  /external/boringssl/src/crypto/lhash/
lhash_test.cc 87 ValueList expected, actual;
98 &actual);
99 std::sort(actual.begin(), actual.end());
101 if (expected != actual) {
  /external/easymock/src/org/easymock/internal/
ExpectedInvocation.java 88 public boolean matches(Invocation actual) {
90 actual.getMock())
91 && this.invocation.getMethod().equals(actual.getMethod())
92 && matches(actual.getArguments()) : this.invocation.matches(
93 actual, matcher);
  /external/pdfium/fpdfsdk/
fsdk_baseform_embeddertest.cpp 17 void CheckRect(const CFX_FloatRect& actual, const CFX_FloatRect& expected) {
18 EXPECT_EQ(expected.left, actual.left);
19 EXPECT_EQ(expected.bottom, actual.bottom);
20 EXPECT_EQ(expected.right, actual.right);
21 EXPECT_EQ(expected.top, actual.top);
  /external/smali/util/src/test/java/org/jf/util/
StringWrapperTest.java 105 public static void validateResult(String[] expected, String[] actual) {
106 Assert.assertTrue(actual.length >= expected.length);
109 for (i=0; i<actual.length; i++) {
110 if (actual[i] == null) {
115 Assert.assertEquals(expected[i], actual[i]);
  /frameworks/base/core/tests/coretests/src/android/provider/
DocumentsProviderTest.java 63 final Path actual = DocumentsContract.findDocumentPath(client, docUri); local
64 assertEquals(expected, actual);
76 final Path actual = DocumentsContract.findDocumentPath(mResolver, docUri); local
78 assertNull(actual.getRootId());
79 assertEquals(expected.getPath(), actual.getPath());

Completed in 957 milliseconds

<<21222324252627282930>>