HomeSort by relevance Sort by last modified time
    Searched full:actual (Results 426 - 450 of 10182) sorted by null

<<11121314151617181920>>

  /external/skia/gyp/
android_system.gyp 8 # shim here that includes the android_system.gypi file. The actual dependencies
13 # edit the includes below to specify the actual location of the android.gypi.
  /external/skia/tools/
jsondiff.py 11 Gathers diffs between 2 JSON expectations files, or between actual and
12 expected results within a single JSON actual-results file,
28 # that directory. That script allows us to parse the actual-results.json file
102 """Returns the dictionary of actual results from a JSON string,
117 Any tests for which we have no actual results will be left out of the
153 If newfile is not specified, then 'new' is the actual results within
164 If newfile is not specified, then 'new' is the actual results within
186 'ACTUAL results from the "old" JSON file. This can be a ' +
  /external/valgrind/main/exp-sgcheck/tests/
stackerr.c 8 Actual: stack array "beforea" in frame 2 back from here
13 Actual: unknown
  /frameworks/av/media/libstagefright/tests/
DummyRecorder.h 40 // actual entry point for the thread
43 // static function to wrap the actual thread entry point
  /frameworks/base/core/tests/coretests/src/android/os/
FileUtilsTest.java 181 String[] actual = mDir.list(); local
182 if (actual == null) actual = new String[0];
185 "Expected " + Arrays.toString(expected) + " but actual " + Arrays.toString(actual),
186 expected.length, actual.length);
187 for (String actualFile : actual) {
188 assertTrue("Unexpected actual file " + actualFile, expectedSet.contains(actualFile));
  /libcore/luni/src/test/etc/loading-test-jar/
TestMethods.java 46 public static void assertSame(Object expected, Object actual) {
47 if (expected != actual) {
49 "EXPECTED: " + expected + "; ACTUAL: " + actual);
56 public static void assertSame(int expected, int actual) {
57 if (expected != actual) {
59 "EXPECTED: " + expected + "; ACTUAL: " + actual);
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/test/
MoreAsserts.java 27 public static void assertNotEqual(Object unexpected, Object actual) {
28 if (equal(unexpected, actual)) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
printing_unittest.py 196 actual = printer._test_status_line('fast/dom/HTMLFormElement/associated-elements-after-index-assertion-fail1.html', ' passed')
197 self.assertEqual(80, len(actual))
198 self.assertEqual(actual, '[0/0] fast/dom/HTMLFormElement/associa...after-index-assertion-fail1.html passed')
201 actual = printer._test_status_line('fast/dom/HTMLFormElement/associated-elements-after-index-assertion-fail1.html', ' passed')
202 self.assertEqual(89, len(actual))
203 self.assertEqual(actual, '[0/0] fast/dom/HTMLFormElement/associated-...ents-after-index-assertion-fail1.html passed')
206 actual = printer._test_status_line('fast/dom/HTMLFormElement/associated-elements-after-index-assertion-fail1.html', ' passed')
207 self.assertEqual(90, len(actual))
208 self.assertEqual(actual, '[0/0] fast/dom/HTMLFormElement/associated-elements-after-index-assertion-fail1.html passed')
211 actual = printer._test_status_line('fast/dom/HTMLFormElement/associated-elements-after-index-assertion-fa (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver_unittest.py 48 'fast/text-actual.txt',
66 'fast/text-actual.txt',
85 'fast/text-actual.txt',
104 'fast/text-actual.txt',
125 'fast/text-actual.txt',
148 'fast/image-actual.png',
149 'fast/image-actual.checksum',
173 'fast/text-actual.txt',
193 'fast/image-actual.png',
194 'fast/image-actual.checksum'
    [all...]
  /external/protobuf/gtest/test/
gtest_output_test_golden_lin.txt 5 Actual: false
39 Actual: 2
46 Actual: 2
53 Actual: false
62 Expected: (3) >= (a[i]), actual: 3 vs 9
66 Expected: (3) >= (a[i]), actual: 3 vs 6
87 Actual: 1
93 Actual: 2
102 Actual: 1
108 Actual:
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BlurMaskFilterTest.java 76 private void checkColor(int expected, int actual, int alphaTolerance) {
77 assertEquals(Color.red(expected), Color.red(actual));
78 assertEquals(Color.green(expected), Color.green(actual));
79 assertEquals(Color.blue(expected), Color.blue(actual));
80 assertEquals(Color.alpha(expected), Color.alpha(actual), alphaTolerance);
ColorMatrixColorFilterTest.java 91 private void assertColor(int expected, int actual) {
92 assertEquals(Color.red(expected), Color.red(actual), TOLERANCE);
93 assertEquals(Color.green(expected), Color.green(actual), TOLERANCE);
94 assertEquals(Color.blue(expected), Color.blue(actual), TOLERANCE);
95 assertEquals(Color.alpha(expected), Color.alpha(actual), TOLERANCE);
LightingColorFilterTest.java 83 private void assertColor(int expected, int actual) {
84 assertEquals(Color.alpha(expected), Color.alpha(actual), TOLERANCE);
85 assertEquals(Color.red(expected), Color.red(actual), TOLERANCE);
86 assertEquals(Color.green(expected), Color.green(actual), TOLERANCE);
87 assertEquals(Color.blue(expected), Color.blue(actual), TOLERANCE);
BitmapRegionDecoderTest.java 314 Bitmap actual; local
322 actual = decoder.decodeRegion(rect1, opts);
327 assertSame(opts.inBitmap, actual);
331 // crop 'actual' to the size to be tested (and avoid recycling inBitmap)
332 actual = cropBitmap(actual, actualRect);
334 Rect expectedRect = new Rect(left, top, left + actual.getWidth(),
335 top + actual.getHeight());
337 compareBitmaps(expected, actual, mseMargin, true);
338 actual.recycle()
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_omnibox_unittest.cc 28 const ACMatchClassifications& actual) {
29 EXPECT_EQ(expected.size(), actual.size());
30 for (size_t i = 0; i < expected.size() && i < actual.size(); ++i) {
31 EXPECT_EQ(expected[i].offset, actual[i].offset) << "Index:" << i;
32 EXPECT_EQ(expected[i].style, actual[i].style) << "Index:" << i;
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_permissions_unittest.cc 112 std::vector<MediaGalleryPermission> actual = variable
114 EXPECT_EQ(test_data[i].expectation->size(), actual.size());
117 permission_entry < actual.size();
120 actual[permission_entry].pref_id);
122 actual[permission_entry].has_permission);
  /external/chromium_org/third_party/skia/include/pipe/
SkGPipe.h 70 * write into. The actual size of the block is also returned, and must be
71 * actual >= minRequest. If NULL is returned, then actual is ignored and
74 * The returned block must be 4-byte aligned, and actual must be a
78 virtual void* requestBlock(size_t minRequest, size_t* actual) = 0;
  /external/chromium_org/v8/test/mjsunit/
indexed-accessors.js 66 var actual = {};
68 expected[i] = actual[i] = i;
72 assertEquals(expected[i], actual[i]);
75 actual[1000000] = -1;
78 actual.__defineGetter__('0', function() { return expected[0]; });
  /external/easymock/src/org/easymock/internal/
ExpectedInvocation.java 88 public boolean matches(Invocation actual) {
90 actual.getMock())
91 && this.invocation.getMethod().equals(actual.getMethod())
92 && matches(actual.getArguments()) : this.invocation.matches(
93 actual, matcher);
  /external/junit/src/org/junit/
Assume.java 51 * Call to assume that <code>actual</code> satisfies the condition specified by <code>matcher</code>.
62 * @param actual the computed value being compared
68 public static <T> void assumeThat(T actual, Matcher<T> matcher) {
69 if (!matcher.matches(actual))
70 throw new AssumptionViolatedException(actual, matcher);
  /external/skia/include/pipe/
SkGPipe.h 70 * write into. The actual size of the block is also returned, and must be
71 * actual >= minRequest. If NULL is returned, then actual is ignored and
74 * The returned block must be 4-byte aligned, and actual must be a
78 virtual void* requestBlock(size_t minRequest, size_t* actual) = 0;
  /external/v8/test/mjsunit/
indexed-accessors.js 66 var actual = {};
68 expected[i] = actual[i] = i;
72 assertEquals(expected[i], actual[i]);
75 actual[1000000] = -1;
78 actual.__defineGetter__('0', function() { return expected[0]; });
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 164 int actual = 0; local
175 actual = read(data->dev, buf, size);
176 if (actual != size) {
178 if (actual < 0)
179 actual = 0;
196 actual = read(data->dev, data->bounce, channel->block_size);
197 if (actual != channel->block_size)
199 actual = size;
201 actual = channel->block_size;
202 memcpy(buf, data->bounce, actual);
223 int actual = 0; local
774 ssize_t actual; local
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h 153 // << " Actual: it's " << n;
160 // Actual: it's 5
622 const T2& actual) {
623 if (expected == actual) {
629 FormatForComparisonFailureMessage(expected, actual),
630 FormatForComparisonFailureMessage(actual, expected),
640 BiggestInt actual);
654 const T2& actual) {
656 actual);
668 BiggestInt actual) {
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sessions_helper.cc 236 const sessions::SerializedNavigationEntry& actual) {
237 if (expected.virtual_url() != actual.virtual_url()) {
239 << ", actual " << actual.virtual_url();
242 if (expected.referrer().url != actual.referrer().url) {
245 << ", actual "
246 << actual.referrer().url;
249 if (expected.title() != actual.title()) {
251 << ", actual " << actual.title()
    [all...]

Completed in 473 milliseconds

<<11121314151617181920>>