HomeSort by relevance Sort by last modified time
    Searched full:actual (Results 1051 - 1075 of 9217) sorted by null

<<41424344454647484950>>

  /frameworks/volley/src/main/java/com/android/volley/toolbox/
ImageRequest.java 107 * @param actualPrimary Actual size of the primary dimension
108 * @param actualSecondary Actual size of the secondary dimension
114 // If no dominant value at all, just return the actual.
226 * @param actualWidth Actual width of the bitmap
227 * @param actualHeight Actual height of the bitmap
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlertServiceTest.java 298 NotificationWrapper actual = mActualNotifications[id]; local
300 assertNull("Received unexpected notificationId " + id + debugStr, actual);
305 + debugStr, actual);
309 expected.mPriority, actual.mNotification.priority);
313 a.mEventId, actual.mEventId);
315 a.mBegin, actual.mBegin);
317 a.mEnd, actual.mEnd);
321 actual.mNw);
323 + debugStr, expected.mAlertIdsInDigest.length, actual.mNw.size());
324 for (int i = 0; i < actual.mNw.size(); i++)
346 NotificationWrapper actual = mActualNotifications[i]; local
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
ExternalAccountTypeTest.java 197 String actual = actualKinds.size() > i ? actualKinds.get(i).toString() : "(n/a)"; local
202 if (!Objects.equal(actual, expected)) {
203 final int commonPrefixEnd = findCommonPrefixEnd(actual, expected);
205 + "\n[Actual]\n" + insertMarkerAt(actual, commonPrefixEnd)
  /external/skia/tests/
MatrixClipCollapseTest.cpp 16 // example skps and the compares the actual stored operations to the expected
640 static void print(const SkTDArray<DrawType>& expected, const SkTDArray<DrawType>& actual) {
641 SkDebugf("\n\nexpected %d --- actual %d\n", expected.count(), actual.count());
642 int max = SkMax32(expected.count(), actual.count());
651 if (i < actual.count()) {
652 SkDebugf("%s\n", SkDrawCommand::GetCommandString(actual[i]));
683 SkTDArray<DrawType> expected, actual; local
698 gets_ops(picture, &actual);
700 REPORTER_ASSERT(reporter, expected.count() == actual.count())
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 124 String actual = null; local
127 actual = iter.next();
128 assertEquals(CATEGORY + i, actual);
230 String actual = null; local
233 actual = iter.next();
234 assertEquals(DATA_SCHEME + i, actual);
437 AuthorityEntry actual = null; local
440 actual = iter.next();
441 assertEquals(HOST + i, actual.getHost());
442 assertEquals(PORT + i, actual.getPort())
499 String actual = null; local
548 String actual = null; local
674 PatternMatcher actual = null; local
    [all...]
IntentTest.java 234 final char[] actual= mIntent.getCharArrayExtra(TEST_EXTRA_NAME); local
235 assertEquals(expected.length, actual.length);
236 assertEquals(expected[0], actual[0]);
237 assertEquals(expected[1], actual[1]);
238 assertEquals(expected[2], actual[2]);
626 Intent actual = (Intent) mIntent.clone(); local
627 assertEquals(mComponentName, actual.getComponent());
628 assertEquals(TEST_ACTION, actual.getAction());
629 assertEquals(mComponentName, actual.getComponent());
630 assertEquals(TEST_URI, actual.getData())
651 Intent actual = mIntent.cloneFilter(); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CertificateTest.java 313 PublicKey actual = c.getPublicKey(); local
314 assertEquals(expected, actual);
316 Arrays.toString(actual.getEncoded()));
461 BigInteger actual = getRsaCertificateSerial(); local
463 assertEquals(actual, c.getSerialNumber());
721 boolean[] actual = c.getKeyUsage();
722 assertEquals(9, actual.length);
723 assertEquals(Arrays.toString(expected), Arrays.toString(actual));
740 boolean[] actual = c.getKeyUsage();
741 assertEquals(9, actual.length)
771 List<String> actual = c.getExtendedKeyUsage(); local
778 List<String> actual = c.getExtendedKeyUsage(); local
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest.h 213 // Actual: false (5 is odd)
219 // Actual: false
239 // Actual: true (8 is even)
258 // << "Expected: " << expr << " is even\n Actual: it's " << n;
264 // Actual: it's 5
    [all...]
  /external/gtest/include/gtest/
gtest.h 203 // Actual: false (5 is odd)
209 // Actual: false
229 // Actual: true (8 is even)
248 // << "Expected: " << expr << " is even\n Actual: it's " << n;
254 // Actual: it's 5
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h 212 // Actual: false (5 is odd)
218 // Actual: false
238 // Actual: true (8 is even)
257 // << "Expected: " << expr << " is even\n Actual: it's " << n;
263 // Actual: it's 5
    [all...]
  /external/mesa3d/src/gtest/include/gtest/
gtest.h 212 // Actual: false (5 is odd)
218 // Actual: false
238 // Actual: true (8 is even)
257 // << "Expected: " << expr << " is even\n Actual: it's " << n;
263 // Actual: it's 5
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 201 // Actual: false (5 is odd)
207 // Actual: false
227 // Actual: true (8 is even)
246 // << "Expected: " << expr << " is even\n Actual: it's " << n;
252 // Actual: it's 5
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/
gtest.h 203 // Actual: false (5 is odd)
209 // Actual: false
229 // Actual: true (8 is even)
248 // << "Expected: " << expr << " is even\n Actual: it's " << n;
254 // Actual: it's 5
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
PredicatesTest.java 581 Predicate<? super Integer> expected, Predicate<? super Integer> actual) {
582 assertEquals(actual + " should hash like " + expected, expected.hashCode(), actual.hashCode());
625 Predicate<? super Integer> actual) {
626 assertEvalsLike(expected, actual, 0);
627 assertEvalsLike(expected, actual, 1);
628 assertEvalsLike(expected, actual, null);
633 Predicate<? super T> actual,
646 actualResult = actual.apply(input);
  /external/parameter-framework/test/functional-tests/PfwTestCase/Domains/
tDomain_Elements.py 98 log.I("Actual domain %s elements number is %s" % (self.domain_name,element_nbr_init))
132 log.I("Actual domain %s elements number is %s" % (self.domain_name,element_nbr))
146 log.I("Actual domain %s elements names conform to expected values" % (self.domain_name))
191 log.I("Actual domain %s elements number is %s" % (self.domain_name,element_nbr_init))
219 log.I("Actual domain %s elements number is %s" % (self.domain_name,element_nbr))
228 log.I("Actual domain %s elements names conform to expected values" % (self.domain_name))
269 log.I("Actual domain %s elements number is %s" % (self.domain_name,element_nbr_init))
297 log.I("Actual domain %s elements number is %s" % (self.domain_name,element_nbr))
306 log.I("Actual domain %s elements names conform to expected values" % (self.domain_name))
  /frameworks/wilhelm/tests/examples/
slesTestFeedback.cpp 90 ssize_t actual = audio_utils_fifo_write(&fifo, buffer, (size_t) bufSizeInFrames); local
91 if (actual != (ssize_t) bufSizeInFrames) {
99 actual = audio_utils_fifo_write(&fifo2, buffer, (size_t) bufSizeInFrames);
100 if (actual != (ssize_t) bufSizeInFrames) {
178 ssize_t actual = audio_utils_fifo_read(&fifo, buffer, bufSizeInFrames); local
179 if (actual != (ssize_t) bufSizeInFrames) {
553 ssize_t actual = audio_utils_fifo_read(&fifo2, buffer, bufSizeInFrames); local
554 if (actual <= 0)
556 (void) sf_writef_short(sndfile, buffer, (sf_count_t) actual);
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLContextTest.java 583 private static void assertContentsInOrder(List<String> expected, String... actual) {
584 if (expected.size() != actual.length) {
586 + ">, actual len <" + actual.length + ">, expected <" + expected
587 + ">, actual <" + Arrays.asList(actual) + ">");
589 if (!expected.equals(Arrays.asList(actual))) {
591 + ">, actual <" + Arrays.asList(actual) + ">" );
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ReadWriteDraftMessageActionTest.java 95 final MessageData actual = BugleDatabaseOperations.readMessage(db, messageId); local
96 assertNotNull("Database missing draft", actual);
97 assertEquals("Draft text changed", draftMessage, actual.getMessageText());
195 final MessageData actual = BugleDatabaseOperations.readDraftMessageData(db, conversationId, local
197 assertNull(actual);
322 final MessageData actual = BugleDatabaseOperations.readDraftMessageData(db, local
324 assertNotNull("Database missing draft", actual);
325 assertEquals("Draft text mismatch", draftMessage, actual.getMessageText());
326 assertNull("Draft messageId should be null", actual.getMessageId());
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 636 // Compare expected to actual to see if their diff is less then mseMargin.
639 private void compareBitmaps(Bitmap expected, Bitmap actual,
644 assertEquals("mismatching widths", width, actual.getWidth());
645 assertEquals("mismatching heights", height, actual.getHeight());
647 actual.getConfig());
655 actual.getPixels(actualColors, 0, width, 0, 0, width, height);
680 private double distance(int expect, int actual, boolean isPremultiplied) {
682 final int a1 = Color.alpha(actual);
684 final int r = multiplyAlpha(Color.red(actual), a1) -
686 final int g = multiplyAlpha(Color.green(actual), a1)
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
VideoCallTest.java 487 public Object actual() {
514 public Object actual() {
540 public Object actual() {
567 public Object actual() {
594 public Object actual() {
621 public Object actual() {
648 public Object actual() {
673 public Object actual() {
699 public Object actual() {
725 public Object actual() {
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPTestCase.java 706 * @param actual -
707 * actual value
711 * string equivalent of actual value
713 protected void assertEquals(String message, long expected, long actual,
715 if (expected == actual) {
730 strActual = actual + "";
732 strActual = actual + "(" + strActual + ")";
746 * @param actual -
747 * actual string
749 protected void assertString(String message, String expected, String actual) {
    [all...]
  /external/ceres-solver/internal/ceres/
covariance_test.cc 338 Matrix actual(row_end - row_begin, col_end - col_begin);
341 actual.data()));
347 col_end - col_begin) - actual).norm();
358 << "\n\n actual: \n " << actual
747 Matrix actual(parameter_block_size_, parameter_block_size_);
755 covariance.GetCovarianceBlock(block_i, block_i, actual.data());
756 EXPECT_NEAR((expected - actual).norm(), 0.0, kTolerance)
759 << "actual: \n" << actual; local
768 << "actual: \\n" << actual; local
    [all...]
  /external/e2fsprogs/e2fsck/
pass5.c 203 int actual, bitmap; local
218 "actual bitmap buffer");
273 actual = ext2fs_fast_test_block_bitmap2(ctx->block_found_map, i);
348 actual = (actual != 0);
380 bitmap = actual;
384 if (!actual == !bitmap)
387 if (!actual && bitmap) {
542 int actual, bitmap; local
623 actual = ext2fs_fast_test_inode_bitmap2(ctx->inode_used_map, i)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 344 * @param actual The file of whose contents to verify
348 protected void verifyFileContents(ParcelFileDescriptor actual, byte[] expected)
350 AutoCloseInputStream input = new ParcelFileDescriptor.AutoCloseInputStream(actual);
351 long fileSize = actual.getStatSize();
364 * @param actual The array whose data we want to verify
367 protected void compareByteArrays(byte[] actual, byte[] expected) {
368 assertEquals(actual.length, expected.length);
369 int length = actual.length;
372 if (actual[i] != expected[i]) {
386 byte[] actual = new byte[FILE_BLOCK_READ_SIZE]
972 int actual = cursor.getInt(index); local
985 String actual = cursor.getString(index); local
    [all...]
  /art/test/122-npe/src/
Main.java 574 static void assertEquals(Object expected, Object actual) {
575 if (!expected.equals(actual)) {
576 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\"";
581 static void assertEquals(int expected, int actual) {
582 if (expected != actual) {
583 throw new AssertionError("Expected " + expected + " got " + actual);

Completed in 1100 milliseconds

<<41424344454647484950>>