/prebuilts/go/darwin-x86/src/testing/ |
benchmark_test.go | 31 actual := testing.RoundDown10(tt.v) 32 if tt.expected != actual { 33 t.Errorf("roundDown10(%d): expected %d, actual %d", tt.v, tt.expected, actual) 59 actual := testing.RoundUp(tt.v) 60 if tt.expected != actual { 61 t.Errorf("roundUp(%d): expected %d, actual %d", tt.v, tt.expected, actual)
|
/prebuilts/go/linux-x86/src/testing/ |
benchmark_test.go | 31 actual := testing.RoundDown10(tt.v) 32 if tt.expected != actual { 33 t.Errorf("roundDown10(%d): expected %d, actual %d", tt.v, tt.expected, actual) 59 actual := testing.RoundUp(tt.v) 60 if tt.expected != actual { 61 t.Errorf("roundUp(%d): expected %d, actual %d", tt.v, tt.expected, actual)
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
AbstractTest.java | 33 protected String actual; field in class:AbstractTest 54 public String getActual() { return this.actual; } 55 // return an escaped string of the actual result 57 String actual = getActual(); local 59 if ( actual!=null && !hasErrorMsg ) actual = JUnitCodeGen.escapeForJava(actual); 60 return actual; 78 public void setActual(String actual) { this.actual = actual; [all...] |
/external/icu/icu4c/source/common/ |
locbased.h | 54 * object. Either the valid or the actual locale may be 64 * object. Either the valid or the actual locale may be 76 * @param actual the ID of the actual locale 78 void setLocaleIDs(const char* valid, const char* actual); 84 * @param actual the ID of the actual locale 86 void setLocaleIDs(const Locale& valid, const Locale& actual); 92 char* actual; member in class:LocaleBased 96 valid(validAlias), actual(actualAlias) [all...] |
locbased.cpp | 32 return actual; 45 uprv_strncpy(actual, actualID, ULOC_FULLNAME_CAPACITY); 46 actual[ULOC_FULLNAME_CAPACITY-1] = 0; // always terminate 52 uprv_strcpy(actual, actualID.getName());
|
/cts/tools/vm-tests-tf/src/dot/junit/ |
DxAbstractMain.java | 111 static public void assertEquals(int expected, int actual) { 112 if (expected != actual) throw new RuntimeException("AssertionFailedError: not equals. Expected " + expected + " actual " + actual); 115 static public void assertEquals(String message, int expected, int actual) { 116 if (expected != actual) throw new RuntimeException("AssertionFailedError: not equals: " + message + " Expected " + expected + " actual " + actual); 119 static public void assertEquals(long expected, long actual) { 120 if (expected != actual) throw new RuntimeException("AssertionFailedError: not equals. Expected " + expected + " actual " (…) [all...] |
/external/google-breakpad/src/testing/test/ |
gmock_output_test_golden.txt | 40 Actual: 1 42 Actual: never called - unsatisfied and active 53 Actual: 1 55 Actual: never called - unsatisfied and active 63 Actual: called twice - over-saturated and active 70 Actual: called twice - over-saturated and active 97 Actual: it is retired 99 Actual: called once - saturated and retired 102 Actual: 1 104 Actual: [all...] |
/external/googletest/googlemock/test/ |
gmock_output_test_golden.txt | 40 Actual: 1 42 Actual: never called - unsatisfied and active 53 Actual: 1 55 Actual: never called - unsatisfied and active 63 Actual: called twice - over-saturated and active 70 Actual: called twice - over-saturated and active 97 Actual: it is retired 99 Actual: called once - saturated and retired 102 Actual: 1 104 Actual: [all...] |
/external/v8/testing/gmock/test/ |
gmock_output_test_golden.txt | 40 Actual: 1 42 Actual: never called - unsatisfied and active 53 Actual: 1 55 Actual: never called - unsatisfied and active 63 Actual: called twice - over-saturated and active 70 Actual: called twice - over-saturated and active 97 Actual: it is retired 99 Actual: called once - saturated and retired 102 Actual: 1 104 Actual: [all...] |
/art/test/552-checker-primitive-typeprop/src/ |
Main.java | 24 private static void assertEquals(int expected, int actual) { 25 if (expected != actual) { 26 throw new Error("Wrong result, expected=" + expected + ", actual=" + actual);
|
/bionic/libc/arch-mips/include/machine/ |
setjmp.h | 12 /* actual used size is 34 */
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
PathDashPathEffect_StyleTest.java | 46 Style[] actual = Style.values(); local 47 assertEquals(expected.length, actual.length); 48 for (int i = 0; i < actual.length; i ++) { 49 assertEquals(expected[i], actual[i]);
|
Path_DirectionTest.java | 44 Direction[] actual = Direction.values(); local 45 assertEquals(expected.length, actual.length); 46 for (int i = 0; i < actual.length; i ++) { 47 assertEquals(expected[i], actual[i]);
|
/external/chromium-libpac/test/js-unittest/ |
bindings.js | 13 function expectEquals(expectation, actual) { 14 if (!(expectation === actual)) { 15 throw "FAIL: expected: " + expectation + ", actual: " + actual;
|
/external/fio/t/jobs/ |
t0006-82af2a7c.fio | 2 # Buggy result: workload stays in 'm' mode, never doing actual verifies
|
/external/guava/guava-tests/test/com/google/common/io/ |
LittleEndianDataOutputStreamTest.java | 129 byte[] actual = new byte[12]; 130 in.readFully(actual); 131 assertEquals('r', actual[0]); 132 assertEquals(0, actual[1]); 133 assertEquals((byte) 0xC9, actual[2]); 134 assertEquals(0, actual[3]); 135 assertEquals('s', actual[4]); 136 assertEquals(0, actual[5]); 137 assertEquals('u', actual[6]); 138 assertEquals(0, actual[7]) [all...] |
/external/guice/core/test/com/google/inject/internal/ |
UniqueAnnotationsTest.java | 32 Annotation actual = UniqueAnnotations.create(31); local 36 assertEquals(expected.toString(), actual.toString()); 37 assertEquals(expected.hashCode(), actual.hashCode()); 38 assertEquals(expected, actual);
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/ |
FeatureMatcher.java | 33 * @param actual the target object 36 protected abstract U featureValueOf(T actual); 39 protected boolean matchesSafely(T actual, Description mismatch) { 40 final U featureValue = featureValueOf(actual);
|
/external/icu/icu4c/source/test/cintltst/ |
cgendtst.c | 39 UGender actual; local 44 actual = ugender_getListGender(actual_gi, kAllFemale, UPRV_LENGTHOF(kAllFemale), &status); 49 if (actual != UGENDER_FEMALE) { 50 log_err("Expected UGENDER_FEMALE got %d\n", actual);
|
/external/junit/src/main/java/org/junit/ |
AssumptionViolatedException.java | 18 * An assumption exception with the given <i>actual</i> value and a <i>matcher</i> describing 21 public <T> AssumptionViolatedException(T actual, Matcher<T> matcher) { 22 super(actual, matcher); 26 * An assumption exception with a message with the given <i>actual</i> value and a
|
/external/mockito/src/test/java/org/mockito/internal/junit/ |
ExceptionFactoryTest.java | 32 Object e = m.invoke(null, "message", "wanted", "actual"); 39 AssertionError e = ExceptionFactory.createArgumentsAreDifferentException("message", "wanted", "actual"); 48 e = ExceptionFactory.createArgumentsAreDifferentException("message", "wanted", "actual"); 51 e = ExceptionFactory.createArgumentsAreDifferentException("message", "wanted", "actual");
|
/external/oauth/core/src/main/java/ |
Android.mk | 13 # Build the actual static library
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/ |
HasCompoundDrawablesMatcher.java | 21 public boolean matchesSafely(TextView actual) { 22 if (actual == null) { 23 message = "actual view was null"; 27 ShadowTextView.CompoundDrawables actualCompoundDrawables = shadowOf(actual).getCompoundDrawablesImpl();
|
ViewHasTextMatcher.java | 27 public boolean matchesSafely(View actual) { 28 if (actual == null) { 33 expected = actual.getContext().getResources().getString(expectedResourceId); 36 final CharSequence charSequence = shadowOf(actual).innerText();
|
/external/toolchain-utils/go/android/ |
adb_shamu | 4 # Replace XXXXXXXX with the actual serial number of the device.
|