/external/chromium_org/third_party/icu/source/test/intltest/ |
callimts.h | 53 * reported actual minimum and actual maximum. These values are
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
timing.h | 55 // the specified interval in seconds. Returns the actual waiting 62 // actual waiting time based on TimerNow() measurement.
|
/external/chromium_org/ui/base/cocoa/ |
tracking_area.mm | 21 // The Class of |owner_|. When the actual object is no longer alive (and could 50 // generate the signature. |-forwardInvocation:| will block the actual call.
|
/external/droiddriver/src/com/google/android/droiddriver/finders/ |
By.java | 33 public boolean match(Object expected, Object actual) { 34 return Objects.equal(actual, expected); 45 public boolean match(String expected, String actual) { 46 return actual != null && actual.matches(expected); 57 public boolean match(String expected, String actual) { 58 return actual != null && actual.contains(expected);
|
/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/io/ |
ByteStreamsTest.java | 502 byte[] actual = new byte[BYTES.length]; 503 in.readFully(actual); 504 assertEquals(BYTES, actual); 509 byte[] actual = new byte[BYTES.length * 2]; 511 in.readFully(actual); 520 byte[] actual = new byte[4]; 521 in.readFully(actual, 2, 2); 522 assertEquals(0, actual[0]); 523 assertEquals(0, actual[1]); 524 assertEquals(BYTES[0], actual[2]) [all...] |
/external/icu4c/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/icu4c/test/intltest/ |
callimts.h | 53 * reported actual minimum and actual maximum. These values are
|
compactdecimalformattest.cpp | 289 UnicodeString actual; local 290 cdf->format(123456.0, actual); 293 if (actual != expected) { 294 errln(UnicodeString("Fail: Expected: ") + expected + UnicodeString(" Got: ") + actual); 314 UnicodeString actual; local 315 cdf->format(expectedResult->value, actual); 318 if (actual != expected) { 320 + UnicodeString(" Got: ") + actual
|
/external/llvm/test/CodeGen/X86/ |
sse_partial_update.ll | 5 ; There is a mismatch between the intrinsic and the actual instruction. 6 ; The actual instruction has a partial update of dest, while the intrinsic
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
HMAC_SHA1.java | 53 byte[] actual = decodeBase64(signature); 54 return Arrays.equals(expected, actual);
|
/external/oprofile/libutil++/ |
unique_storage.h | 45 /// the actual ID type 74 /// actual ID value
|
/external/proguard/src/proguard/evaluation/ |
Stack.java | 65 * Returns the actual maximum stack size that was required for all stack 261 // Update the maximum actual size; 373 // Update the maximum actual size; 393 // Update the maximum actual size; 414 // Update the maximum actual size; 432 // Update the maximum actual size; 454 // Update the maximum actual size; 477 // Update the maximum actual size;
|
/external/qemu/android/protocol/ |
core-commands.h | 65 * including actual "name" and "display" strings. */ 82 * including actual "name" and "display" strings. */
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_Surface.3 | 39 Pointer to the actual pixel data 45 \fBSDL_Surface\fR\&'s represent areas of "graphical" memory, memory that can be drawn to\&. The video framebuffer is returned as a \fBSDL_Surface\fR by \fI\fBSDL_SetVideoMode\fP\fR and \fI\fBSDL_GetVideoSurface\fP\fR\&. Most of the fields should be pretty obvious\&. \fBw\fR and \fBh\fR are the width and height of the surface in pixels\&. \fBpixels\fR is a pointer to the actual pixel data, the surface should be \fIlocked\fR before accessing this field\&. The \fBclip_rect\fR field is the clipping rectangle as set by \fI\fBSDL_SetClipRect\fP\fR\&.
|
/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.
|
/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/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
ThreadingTest.java | 93 final String actual = d.first.getContents(); local 94 assertEquals(expected, actual);
|
/external/chromium/webkit/glue/ |
cpp_variant_unittest.cc | 27 // Verifies that the actual NPVariant is a string and that its value matches 29 void CheckString(const std::string& expected_str, const NPVariant& actual) { 30 EXPECT_EQ(NPVariantType_String, actual.type); 32 MakeStdString(actual, &actual_str); 36 // Verifies that both the actual and the expected NPVariants are strings and 38 void CheckString(const NPVariant& expected, const NPVariant& actual) { 42 CheckString(expected_str, actual); 48 void CheckObject(const NPVariant& actual) { 49 EXPECT_EQ(NPVariantType_Object, actual.type); 50 EXPECT_TRUE(actual.value.objectValue) [all...] |
/external/chromium_org/webkit/renderer/ |
cpp_variant_unittest.cc | 29 // Verifies that the actual NPVariant is a string and that its value matches 31 void CheckString(const std::string& expected_str, const NPVariant& actual) { 32 EXPECT_EQ(NPVariantType_String, actual.type); 34 MakeStdString(actual, &actual_str); 38 // Verifies that both the actual and the expected NPVariants are strings and 40 void CheckString(const NPVariant& expected, const NPVariant& actual) { 44 CheckString(expected_str, actual); 50 void CheckObject(const NPVariant& actual) { 51 EXPECT_EQ(NPVariantType_Object, actual.type); 52 EXPECT_TRUE(actual.value.objectValue) [all...] |
/external/e2fsprogs/e2fsck/ |
pass5.c | 112 int actual, bitmap; local 165 actual = ext2fs_fast_test_block_bitmap(ctx->block_found_map, i); 199 actual = (actual != 0); 203 if (actual == bitmap) 206 if (!actual && bitmap) { 337 int actual, bitmap; local 390 actual = ext2fs_fast_test_inode_bitmap(ctx->inode_used_map, i); 395 if (actual == bitmap) 398 if (!actual && bitmap) [all...] |
/external/valgrind/main/exp-sgcheck/ |
pc_common.c | 128 HChar actual[128]; member in struct:__anon29884::__anon29885::__anon29886 159 HChar* expect, HChar* actual, HChar* delta ) 168 VG_(strncpy)( &xe.XE.SorG.actual[0], 169 actual, sizeof(xe.XE.SorG.actual) ); 173 xe.XE.SorG.actual[ sizeof(xe.XE.SorG.actual)-1 ] = 0; 242 && 0 == VG_(strncmp)( &xe1->XE.SorG.actual[0], 243 &xe2->XE.SorG.actual[0], 244 sizeof(xe1->XE.SorG.actual) ); [all...] |