HomeSort by relevance Sort by last modified time
    Searched refs:actual (Results 1026 - 1050 of 1263) sorted by null

<<41424344454647484950>>

  /external/icu4c/test/intltest/
restsnew.cpp 36 #define CONFIRM_EQ(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of " + (expected)); }
37 #define CONFIRM_GE(actual,expected) if ((actual)>=(expected)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x >= " + (expected)); }
38 #define CONFIRM_NE(actual,expected) if ((expected)!=(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x != " + (expected)); }
40 #define CONFIRM_UErrorCode(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (Unico (…)
    [all...]
loctest.cpp 75 // display langage (Greek)[actual values listed below]
87 // display country (Greek)[actual values listed below]
99 // display name (Greek)[actual values listed below]
1787 const char* actual = actualLoc.getName(); local
1809 Locale valid, actual, reqLoc; local
    [all...]
  /external/protobuf/python/google/protobuf/internal/
descriptor_test.py 151 actual = expected_proto_class()
152 desc.CopyToProto(actual)
154 actual, expected_proto_class, expected_proto_ascii)
  /frameworks/base/core/tests/coretests/src/com/android/server/
MountServiceTests.java 53 private static void assertStartsWith(String message, String prefix, String actual) {
54 if (!actual.startsWith(prefix)) {
55 throw new ComparisonFailure(message, prefix, actual);
153 assertEquals("Actual file and resolved file should be the same",
177 assertEquals("Actual file and resolved file should be the same", file.getPath(),
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 186 String actual = entry.getValue(); local
187 assertTrue("Could not find implementation " + actual + " for alias " + alias,
188 implementations.containsKey(actual));
  /libcore/luni/src/test/java/tests/xml/
SaxTest.java 172 private void assertOneOf(String expected, String sentinel, String actual) {
174 assertTrue("Expected one of " + optionsList + " but was " + actual,
175 optionsList.contains(actual));
  /cts/tests/tests/content/src/android/content/res/cts/
ResourcesTest.java 189 final String actual = res.getText(resId).toString(); local
191 + "got '" + actual + "' from resource 0x" + Integer.toHexString(resId),
194 + ", got '" + actual + "' from resource 0x" + Integer.toHexString(resId),
195 expectedValue, actual);
200 final String actual = res.getText(resId, null).toString(); local
202 + "got '" + actual + "' from resource 0x" + Integer.toHexString(resId),
205 + ", got '" + actual + "' from resource 0x" + Integer.toHexString(resId),
206 expectedValue, actual);
738 private static void checkString(final int resid, final String actual, final String expected) {
740 + actual + "\" in resources 0x" + Integer.toHexString(resid)
    [all...]
  /external/webkit/WebKitTools/Scripts/
run-webkit-tests 41 # If there is a mismatch, generate xxx-actual.txt and xxx-diffs.txt.
171 my $actualTag = "actual";
206 print "Use git to grab the actual fonts from http://gitorious.org/qtwebkit/testfonts\n";
679 my $actual = $readResults->{output};
685 my $isText = isTextOnlyTest($actual);
692 testCrashedOrTimedOut($test, $base, $crashed, $actual, $error);
711 ($actual, $expected) = stripMetrics($actual, $expected);
741 printFailureMessageForTest($test, "WARNING: actual & expected pixel hashes are missing!");
743 printFailureMessageForTest($test, "WARNING: actual pixel hash is missing!")
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
loctest.cpp 75 // display langage (Greek)[actual values listed below]
87 // display country (Greek)[actual values listed below]
99 // display name (Greek)[actual values listed below]
1749 const char* actual = actualLoc.getName(); local
1771 Locale valid, actual, reqLoc; local
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 179 String actual = null; local
182 actual = iter.next();
183 assertEquals(CATEGORY + i, actual);
338 String actual = null; local
341 actual = iter.next();
342 assertEquals(DATA_SCHEME + i, actual);
410 AuthorityEntry actual = null; local
413 actual = iter.next();
414 assertEquals(HOST + i, actual.getHost());
415 assertEquals(PORT + i, actual.getPort())
499 String actual = null; local
585 String actual = null; local
782 PatternMatcher actual = null; local
    [all...]
IntentTest.java 495 final char[] actual= mIntent.getCharArrayExtra(TEST_EXTRA_NAME); local
496 assertEquals(expected.length, actual.length);
497 assertEquals(expected[0], actual[0]);
498 assertEquals(expected[1], actual[1]);
499 assertEquals(expected[2], actual[2]);
1222 Intent actual = (Intent) mIntent.clone(); local
1257 Intent actual = mIntent.cloneFilter(); local
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 416 const ParameterCount& actual,
424 // Check whether the expected and actual arguments count match. If not,
426 // r0: actual arguments count
432 // up actual and expected registers according to the contract if values are
434 ASSERT(actual.is_immediate() || actual.reg().is(r0));
439 ASSERT(actual.is_immediate());
440 if (expected.immediate() == actual.immediate()) {
443 mov(r0, Operand(actual.immediate()));
448 // like we have a match between expected and actual number o
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 1388 InvokeCode(Operand(edx), expected, actual, flag); local
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceProcessorTest.java 117 String[] actual = getFormattedDates(out, outCal); local
122 printLists(expected, actual);
126 + " actual=" + count);
130 String s = actual[i];
134 printLists(expected, actual);
138 + expected[i] + " actual=" + actual[i]);
159 Log.i(TAG, "Expected: " + last + "; Actual: " + lastStr);
160 printLists(expected, actual);
165 + " actual=" + lastStr)
    [all...]
RRuleTest.java 114 String[] actual = getFormattedDates(out, outCal, truncate); local
118 while (k < actual.length && --limit >= 0) {
122 sb.append(actual[k]);
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
MonthDisplayHelperTest.java 385 private void assertArraysEqual(int[] expected, int[] actual) {
386 assertEquals("array length", expected.length, actual.length);
389 expected[i], actual[i]);
  /external/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 303 public boolean matches(Object actual) {
304 if (!(actual instanceof RpcCallback)) {
307 RpcCallback actualCallback = (RpcCallback)actual;
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
SplitTest.java 84 private void assertArraysEqual(String[] expected, String[] actual) {
85 assertEquals(expected.length, actual.length);
87 assertEquals(Integer.toString(i), expected[i], actual[i]); local
  /dalvik/vm/jdwp/
JdwpAdb.c 726 ssize_t actual; local
727 actual = writev(netState->clientSock, iov, iovcnt);
728 if ((size_t)actual != expected) {
730 strerror(errno), (int) actual, expected);
  /external/chromium/third_party/icu/source/test/cintltst/
cintltst.c 661 const char* actual) {
662 if (uprv_strcmp(expected, actual) != 0) {
664 message, actual, expected);
669 log_verbose("Ok: %s; got \"%s\"\n", message, actual);
  /external/icu4c/test/cintltst/
cintltst.c 675 const char* actual) {
676 if (uprv_strcmp(expected, actual) != 0) {
678 message, actual, expected);
683 log_verbose("Ok: %s; got \"%s\"\n", message, actual);
reapits.c 71 static void test_assert_string(const char *expected, const UChar *actual, UBool nulTerm, const char *file, int line) {
76 u_austrncpy(buf_inside_macro, (actual), len+1);
80 u_austrncpy(buf_inside_macro, (actual), len);
90 #define TEST_ASSERT_STRING(expected, actual, nulTerm) test_assert_string(expected, actual, nulTerm, __FILE__, __LINE__)
93 static void test_assert_utext(const char *expected, UText *actual, const char *file, int line) {
97 utext_setNativeIndex(actual, 0);
98 if (utext_compare(&expectedText, -1, actual, -1) != 0) {
101 c = utext_next32From(actual, 0);
108 c = UTEXT_NEXT32(actual);
1725 UText *actual; local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.7.3.js 324 testcases[tc].actual = testcases[tc].actual;
328 testcases[tc].actual,
329 testcases[tc].description +" = "+ testcases[tc].actual );
7.7.4.js 263 testcases[tc].actual = testcases[tc].actual;
267 testcases[tc].actual,
268 testcases[tc].description +" = "+ testcases[tc].actual );
  /device/sample/apps/SampleEmailPolicy/
Android.mk 16 # When deploying to an actual device, you must change LOCAL_PACKAGE_NAME to the name desired for

Completed in 769 milliseconds

<<41424344454647484950>>