HomeSort by relevance Sort by last modified time
    Searched refs:actual (Results 126 - 150 of 1332) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/av/media/libnbaio/
LibsndfileSink.cpp 45 sf_count_t actual = sf_writef_short(mSndfile, (short *) buffer, (sf_count_t) count); local
46 mFramesWritten += actual;
47 return actual;
LibsndfileSource.cpp 54 sf_count_t actual = sf_readf_short(mSndfile, (short *) buffer, (sf_count_t) count); local
56 if (actual == 0) {
69 mFramesRead += actual;
70 if (actual >= mEstimatedFramesUntilEOF) {
73 mEstimatedFramesUntilEOF -= actual;
77 return actual;
  /ndk/sources/third_party/googletest/googletest/test/
gtest_uninitialized_test.py 47 def AssertEq(expected, actual):
48 if expected != actual:
50 print ' Actual: %s' % (actual,)
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/test/
address_data_test.cc 28 std::vector<std::string> actual; local
29 address.FormatForDisplay(&actual);
30 EXPECT_EQ(std::vector<std::string>(), actual); local
44 std::vector<std::string> actual; local
45 address.FormatForDisplay(&actual);
56 EXPECT_EQ(expected, actual);
70 std::vector<std::string> actual; local
71 address.FormatForDisplay(&actual);
82 EXPECT_EQ(expected, actual);
97 std::vector<std::string> actual; local
124 std::vector<std::string> actual; local
151 std::vector<std::string> actual; local
178 std::vector<std::string> actual; local
200 std::vector<std::string> actual; local
219 std::vector<std::string> actual; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathDashPathEffect_StyleTest.java 39 Style[] actual = Style.values(); local
40 assertEquals(expected.length, actual.length);
41 for (int i = 0; i < actual.length; i ++) {
42 assertEquals(expected[i], actual[i]);
Path_FillTypeTest.java 40 FillType[] actual = FillType.values(); local
41 assertEquals(expected.length, actual.length);
42 for (int i = 0; i < actual.length; i ++) {
43 assertEquals(expected[i], actual[i]);
  /external/easymock/src/org/easymock/internal/
AlwaysMatcher.java 25 public boolean matches(Object[] expected, Object[] actual) {
  /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/icu/icu4c/source/test/cintltst/
cgendtst.c 38 UGender actual; local
43 actual = ugender_getListGender(actual_gi, kAllFemale, LENGTHOF(kAllFemale), &status);
48 if (actual != UGENDER_FEMALE) {
49 log_err("Expected UGENDER_FEMALE got %d\n", actual);
  /external/mockito/src/org/mockito/internal/matchers/
EqualsWithDelta.java 26 public boolean matches(Object actual) {
27 Number actualNumber = (Number) actual;
28 if (wanted == null ^ actual == null) {
32 if (wanted == null && actual == null) {
NotNull.java 23 public boolean matches(Object actual) {
24 return actual != null;
Null.java 22 public boolean matches(Object actual) {
23 return actual == null;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
virtio_balloon.h 19 __le32 actual; member in struct:virtio_balloon_config
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
virtio_balloon.h 19 __le32 actual; member in struct:virtio_balloon_config
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
PreprocessorTest.cpp 27 std::string actual = stream.str(); local
28 EXPECT_STREQ(expected, actual.c_str());
  /external/easymock/src/org/easymock/internal/matchers/
Not.java 32 public boolean matches(Object actual) {
33 return !first.matches(actual);
  /external/junit/src/junit/framework/
ComparisonFailure.java 19 * @param actual the actual string value
21 public ComparisonFailure (String message, String expected, String actual) {
24 fActual= actual;
29 * place of common suffix between expected and actual.
39 * Gets the actual string value
40 * @return the actual string value
  /libcore/json/src/main/java/org/json/
JSON.java 95 public static JSONException typeMismatch(Object indexOrName, Object actual,
97 if (actual == null) {
100 throw new JSONException("Value " + actual + " at " + indexOrName
101 + " of type " + actual.getClass().getName()
106 public static JSONException typeMismatch(Object actual, String requiredType)
108 if (actual == null) {
111 throw new JSONException("Value " + actual
112 + " of type " + actual.getClass().getName()
  /cts/tests/tests/content/src/android/content/pm/cts/
PermissionInfoTest.java 54 private void checkInfoSame(PermissionInfo expected, PermissionInfo actual) {
55 assertEquals(expected.name, actual.name);
56 assertEquals(expected.group, actual.group);
57 assertEquals(expected.descriptionRes, actual.descriptionRes);
58 assertEquals(expected.protectionLevel, actual.protectionLevel);
59 assertEquals(expected.nonLocalizedDescription, actual.nonLocalizedDescription);
  /external/chromium_org/chrome/browser/search/suggestions/
suggestions_store_unittest.cc 27 const SuggestionsProfile& actual) {
28 EXPECT_EQ(expected.suggestions_size(), actual.suggestions_size());
30 EXPECT_EQ(expected.suggestions(i).url(), actual.suggestions(i).url());
31 EXPECT_EQ(expected.suggestions(i).title(), actual.suggestions(i).title());
33 actual.suggestions(i).favicon_url());
35 actual.suggestions(i).thumbnail());
  /external/mockito/src/org/mockito/internal/invocation/
ArgumentsComparator.java 16 public boolean argumentsMatch(InvocationMatcher invocationMatcher, Invocation actual) {
17 Object[] actualArgs = actual.getArguments();
18 return argumentsMatch(invocationMatcher, actualArgs) || varArgsMatch(invocationMatcher, actual);
34 private boolean varArgsMatch(InvocationMatcher invocationMatcher, Invocation actual) {
35 if (!actual.getMethod().isVarArgs()) {
41 Object[] rawArgs = actual.getRawArguments();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericReflectionTestsBase.java 65 public static void assertInstanceOf(Class<?> expectedClass, Object actual) {
66 TestCase.assertTrue(actual.getClass().getName() + " is not instance of :" + expectedClass.getName(), expectedClass
67 .isInstance(actual));
70 public static void assertNotEquals(Object expected, Object actual) {
71 TestCase.assertFalse(actual.toString() + " has not to be equal to " + expected.toString(), expected.equals(actual));
  /external/e2fsprogs/lib/ext2fs/
imager.c 66 ssize_t actual; local
113 actual = write(fd, cp, fs->blocksize * d);
114 if (actual == -1) {
118 if (actual != (ssize_t) (fs->blocksize * d)) {
145 ssize_t actual; local
163 actual = read(fd, buf, fs->blocksize * c);
164 if (actual == -1) {
168 if (actual != (ssize_t) (fs->blocksize * c)) {
194 ssize_t actual; local
206 actual = write(fd, buf, fs->blocksize)
244 ssize_t actual, size; local
287 ssize_t actual; local
365 ssize_t actual; local
    [all...]
  /art/runtime/
utils_test.cc 238 std::vector<std::string> actual; local
243 actual.clear();
244 Split("", ':', actual);
245 EXPECT_EQ(expected, actual);
247 actual.clear();
248 Split(":", ':', actual);
249 EXPECT_EQ(expected, actual);
254 actual.clear();
255 Split(":foo", ':', actual);
256 EXPECT_EQ(expected, actual);
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
invalidation_test_util.cc 28 virtual bool MatchAndExplain(const AckHandle& actual,
43 bool AckHandleEqMatcher::MatchAndExplain(const AckHandle& actual,
45 return expected_.Equals(actual);
61 virtual bool MatchAndExplain(const Invalidation& actual,
77 const Invalidation& actual, MatchResultListener* listener) const {
78 if (!(expected_.object_id() == actual.object_id())) {
81 if (expected_.is_unknown_version() && actual.is_unknown_version()) {
83 } else if (expected_.is_unknown_version() != actual.is_unknown_version()) {
87 return expected_.payload() == actual.payload()
88 && expected_.version() == actual.version()
    [all...]

Completed in 3316 milliseconds

1 2 3 4 56 7 8 91011>>