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

<<11121314151617181920>>

  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 543 assertEqual: function(expected, actual, message) {
544 message = this.buildMessage(message || 'assertEqual', 'expected <?>, actual: <?>', expected, actual);
545 this.assertBlock(message, function() { return expected == actual });
548 assertNotEqual: function(expected, actual, message) {
549 message = this.buildMessage(message || 'assertNotEqual', 'expected <?>, actual: <?>', expected, actual);
550 this.assertBlock(message, function() { return expected != actual });
553 assertEnumEqual: function(expected, actual, message) {
554 message = this.buildMessage(message || 'assertEnumEqual', 'expected <?>, actual: <?>', expected, actual)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 543 assertEqual: function(expected, actual, message) {
544 message = this.buildMessage(message || 'assertEqual', 'expected <?>, actual: <?>', expected, actual);
545 this.assertBlock(message, function() { return expected == actual });
548 assertNotEqual: function(expected, actual, message) {
549 message = this.buildMessage(message || 'assertNotEqual', 'expected <?>, actual: <?>', expected, actual);
550 this.assertBlock(message, function() { return expected != actual });
553 assertEnumEqual: function(expected, actual, message) {
554 message = this.buildMessage(message || 'assertEnumEqual', 'expected <?>, actual: <?>', expected, actual)
    [all...]
  /art/runtime/
mem_map.cc 93 byte* actual = reinterpret_cast<byte*>(mmap(addr, page_aligned_byte_count, prot, flags, fd.get(), 0)); local
94 if (actual == MAP_FAILED) {
102 return new MemMap(name, actual, byte_count, actual, page_aligned_byte_count, prot);
127 byte* actual = reinterpret_cast<byte*>(mmap(page_aligned_addr, local
133 if (actual == MAP_FAILED) {
142 return new MemMap("file", actual + page_offset, byte_count, actual, page_aligned_byte_count,
  /cts/tests/tests/text/src/android/text/cts/
Editable_FactoryTest.java 36 Editable actual = mFactory.newEditable(source); local
37 assertEquals(expected.toString(), actual.toString());
  /external/chromium/chrome/browser/policy/
file_based_policy_provider.h 16 // information from the configuration path. Actual logic for loading policy
21 // Delegate interface for actual policy loading from the system.
  /external/chromium-trace/trace-viewer/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/base/test/
values_test_util.h 42 // Takes ownership of |actual|.
44 StringValue* actual);
  /external/chromium_org/chrome/browser/chromeos/login/
lock_window.h 31 // Attempt to grab inputs on the webview, the actual view displaying the lock
35 // Returns the actual widget for the lock window.
  /external/chromium_org/chrome/browser/ui/autofill/
testable_autofill_dialog_view.h 22 // Returns the actual contents of the input which is modelled by |input|.
25 // Sets the actual contents of the input which is modelled by |input|.
  /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.

Completed in 301 milliseconds

<<11121314151617181920>>