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

<<31323334353637383940>>

  /external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
gUnitTestResult.stg 37 actual: <it.actualResult>
43 invalid input: <it.actual>
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/annotations/
comment_box_annotation_view.html 16 * actual location.
71 // Draw pointer line from offset to actual location.
  /external/gptfdisk/
sgdisk.cc 5 // to sfdisk in actual use.
83 /* Write our actual output */
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
AbstractSequentialIteratorTest.java 44 Iterable<Integer> actual = new Iterable<Integer>() { local
55 ASSERT.that(actual).iteratesOverSequence(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048,
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
UnmodifiableCollectionTests.java 84 "index " + i + " expected <" + expected + "., actual is exhausted",
87 Object actual = actualIterator.next(); local
88 assertEquals("index " + i, expected, actual);
93 + ", expected is exhausted, actual <" + actualIterator.next() + ">");
416 Collection<E> expected, Collection<E> actual) {
417 assertIteratorsInOrder(expected.iterator(), actual.iterator());
421 Multimap<K, V> expected, List<Entry<K, V>> actual) {
423 expected.entries().iterator(), actual.iterator());
  /external/guava/guava-tests/test/com/google/common/hash/
Murmur3Hash32Test.java 55 private static void assertHash(int expected, HashCode actual) {
56 assertEquals(HashCode.fromInt(expected), actual); local
  /external/icu/icu4c/source/test/cintltst/
cctest.c 53 Changing the default name may not affect the actual name from u_getDefaultConverter
86 log_info("Skipping test: ucnv_setDefaultName() did not affect actual name of %s\n", nameBeforeSet);
  /external/icu/icu4c/source/test/intltest/
callimts.h 53 * reported actual minimum and actual maximum. These values are
compactdecimalformattest.cpp 288 UnicodeString actual; local
289 cdf->format(123456.0, actual);
292 if (actual != expected) {
293 errln(UnicodeString("Fail: Expected: ") + expected + UnicodeString(" Got: ") + actual);
313 UnicodeString actual; local
314 cdf->format(expectedResult->value, actual);
317 if (actual != expected) {
319 + UnicodeString(" Got: ") + actual
  /external/libpcap/
README.sita 34 provide the lower layer functionality of actual sniffing and
51 back to the local 'top layer' for forwarding to the actual
  /external/oauth/core/src/main/java/net/oauth/signature/
HMAC_SHA1.java 53 byte[] actual = decodeBase64(signature);
54 return Arrays.equals(expected, actual);
  /external/proguard/src/proguard/evaluation/
Stack.java 67 * Returns the actual maximum stack size that was required for all stack
260 // Update the maximum actual size;
372 // Update the maximum actual size;
392 // Update the maximum actual size;
413 // Update the maximum actual size;
431 // Update the maximum actual size;
453 // Update the maximum actual size;
476 // Update the maximum actual size;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/matchers/
StartedMatcherTest.java 65 private <T> Matcher<Matcher<T>> givesFailureMessage(final T actual, final String expectedFailureMessage) {
71 if (tMatcher.matches(actual)) {
StartedServiceMatcherTest.java 67 private <T> Matcher<Matcher<T>> givesFailureMessage(final T actual, final String expectedFailureMessage) {
73 if (tMatcher.matches(actual)) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestUtil.java 16 public static void assertEquals(Collection<?> expected, Collection<?> actual) {
17 org.junit.Assert.assertEquals(stringify(expected), stringify(actual));
  /external/sfntly/cpp/src/sfntly/data/
memory_byte_array.h 34 // @param b the byte array that provides the actual storage
39 // there is not a reliable way to identify the actual size of buffer.
  /frameworks/base/core/java/com/android/internal/util/
MemInfoReader.java 60 * Amount of RAM that is in use by the kernel for actual allocations.
90 * Amount of RAM that is in use by the kernel for actual allocations.
  /libcore/luni/src/main/java/java/lang/reflect/
ParameterizedType.java 29 * Returns an array of the actual type arguments for this type.
45 * @return the actual type arguments
  /packages/apps/Camera2/tests/src/com/android/camera/unittest/
CameraUnitTest.java 58 private void assertEquals(int expected[], float[] actual) {
60 assertEquals("Array index " + i + " mismatch", expected[i], Math.round(actual[i]));
  /packages/apps/Camera2/tests_camera/src/com/android/camera/unittest/
CameraUnitTest.java 58 private void assertEquals(int expected[], float[] actual) {
60 assertEquals("Array index " + i + " mismatch", expected[i], Math.round(actual[i]));
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
LocaleSetTest.java 45 final LocaleSet actual = LocaleSet.getLocaleSet(localeString).normalize(); local
46 assertEquals(expected, actual);
  /cts/tests/tests/hardware/src/android/hardware/multiprocess/camera/cts/
CameraEvictionTest.java 469 * Given an 'actual' array of objects, check that the objects given in the 'expected'
470 * array are also present in the 'actual' array in the same order. Objects in the 'actual'
474 * @param actual the ordered array of objects to check.
476 * @param ignored the array of objects that will be ignored if present in actual,
480 public static <T> void assertOrderedEvents(T[] actual, T[] expected, T[] ignored) {
481 assertNotNull(actual);
487 for (T i : actual) {
505 assertTrue("Event at index " + index + " in actual array " +
506 Arrays.toString(actual) + " was unexpected: expected array was "
    [all...]
  /system/media/audio_utils/
tinysndfile.c 82 size_t actual; local
83 actual = fread(wav, sizeof(char), sizeof(wav), stream);
84 if (actual < 12) {
86 fprintf(stderr, "actual %zu < 44\n", actual);
115 actual = fread(chunk, sizeof(char), sizeof(chunk), stream);
116 if (actual != sizeof(chunk)) {
118 fprintf(stderr, "actual %zu != %zu\n", actual, sizeof(chunk));
144 actual = fread(fmt, sizeof(char), 2, stream)
    [all...]
  /external/icu/icu4c/source/test/letest/
letest.cpp 328 le_bool compareResults(const char *testID, TestResult *expected, TestResult *actual)
331 if (actual->glyphCount != expected->glyphCount) {
333 testID, expected->glyphCount, actual->glyphCount);
339 for (i = 0; i < actual->glyphCount; i += 1) {
340 if (actual->glyphs[i] != expected->glyphs[i]) {
342 testID, i, expected->glyphs[i], actual->glyphs[i]);
347 for (i = 0; i < actual->glyphCount; i += 1) {
348 if (actual->indices[i] != expected->indices[i]) {
350 testID, i, expected->indices[i], actual->indices[i]);
355 for (i = 0; i <= actual->glyphCount; i += 1)
615 TestResult actual = {0, NULL, NULL, NULL}; local
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestFmwk.java     [all...]

Completed in 409 milliseconds

<<31323334353637383940>>