HomeSort by relevance Sort by last modified time
    Searched full:actual (Results 501 - 525 of 10651) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/test/functional/ispy/server/
debug_view_handler.py 34 actual_path = ispy_utils.GetFailurePath(test_run, expectation, 'actual.png')
41 data['actual'] = _ImagePath(actual_path)
  /external/chromium_org/chrome/test/functional/ispy/server/views/
debug_view.html 11 image.src = (current ? "{{ actual }}" : "{{ expected }}");
13 title.textContent = (current ? "Actual" : "Expected");
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
testable_callback.cc 25 // by the "Handler" which represents the actual callback code.
41 // This is the actual callback, all it does is record
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
unittestresults_unittest.py 61 <failure message="Value of: scale&#x0A; Actual: 4&#x0A;Expected: 1" type=""><![CDATA[../../Source/WebKit/chromium/tests/WebFrameTest.cpp:191
63 Actual: 4
76 <failure message="Value of: pi&#x0A; Actual: 3&#x0A;Expected: 3.14" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassOneTest.cpp:42
78 Actual: 3
82 <failure message="Value of: e&#x0A; Actual: 2&#x0A;Expected: 2.71" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:30
84 Actual: 2
86 <failure message="Value of: tau&#x0A; Actual: 6&#x0A;Expected: 6.28" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:55
88 Actual: 6
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
index.html 91 <th>Actual</th>
101 <td><img id="actual-image"></td>
107 Actual: <span id="actual-checksum"></span>
118 <td><pre id="actual-text" class="text-output"></pre></td>
163 <canvas id="actual-loupe" width="210" height="210"></canvas>
176 <td><label>Actual color: <span id="actual-loupe-color"></span></label></td>
  /external/chromium_org/third_party/closure_linter/closure_linter/
fixjsstyle_test.py 64 actual = StringIO.StringIO()
66 error_fixer.ErrorFixer(actual))
70 actual.seek(0)
73 self.assertEqual(actual.readlines(), expected.readlines())
230 actual = StringIO.StringIO()
232 error_fixer.ErrorFixer(actual))
234 actual.seek(0)
238 self.assertListEqual(actual.readlines(), expected)
  /external/chromium_org/third_party/skia/gyp/
android_deps.gyp 8 # shim here that includes the android_deps.gypi file. The actual dependencies
13 # edit the includes below to specify the actual location of the android.gypi.
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/easymock/src/org/easymock/internal/matchers/
And.java 34 public boolean matches(Object actual) {
36 if (!matcher.matches(actual)) {
Captures.java 45 public boolean matches(Object actual) {
47 actual);
EqualsWithDelta.java 35 public boolean matches(Object actual) {
36 Number actualNumber = (Number) actual;
Not.java 32 public boolean matches(Object actual) {
33 return !first.matches(actual);
Or.java 34 public boolean matches(Object actual) {
36 if (matcher.matches(actual)) {
Same.java 33 public boolean matches(Object actual) {
34 return expected == actual;
  /external/guava/guava-tests/test/com/google/common/primitives/
SignedBytesTest.java 83 int actual = SignedBytes.compare(x, y); local
85 assertEquals(x + ", " + y, expected, actual);
87 assertTrue(x + ", " + y + " (expected: " + expected + ", actual" + actual + ")",
88 actual < 0);
90 assertTrue(x + ", " + y + " (expected: " + expected + ", actual" + actual + ")",
91 actual > 0);
  /external/mockito/src/org/mockito/internal/util/junit/
JUnitFailureHacker.java 20 String newMessage = "contains both: actual test failure *and* Mockito warnings.\n" +
21 warnings + "\n *** The actual failure is because of: ***\n";
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
SignatureTest.java 37 Signature actual = Signature.CREATOR.createFromParcel(p); local
38 assertEquals(expected, actual);
  /external/skia/gyp/
android_deps.gyp 8 # shim here that includes the android_deps.gypi file. The actual dependencies
13 # edit the includes below to specify the actual location of the android.gypi.
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
108 """Returns the dictionary of actual results from a JSON string,
123 Any tests for which we have no actual results will be left out of the
159 If newfile is not specified, then 'new' is the actual results within
170 If newfile is not specified, then 'new' is the actual results within
192 '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)) {

Completed in 849 milliseconds

<<21222324252627282930>>