/dalvik/vm/ |
SignalCatcher.cpp | 84 ssize_t actual; local 86 actual = read(fd, tmpBuf, sizeof(tmpBuf)-1); 87 if (actual <= 0) 90 tmpBuf[actual] = '\0'; 194 ssize_t actual = TEMP_FAILURE_RETRY(write(fd, traceBuf, traceLen)); local 195 if (actual != (ssize_t) traceLen) { 197 gDvm.stackTraceFile, (int) actual, traceLen,
|
/external/chromium/net/http/ |
http_stream_factory.h | 51 // |used_ssl_config| indicates the actual SSL configuration used for this 54 // |used_proxy_info| indicates the actual ProxyInfo used for this stream, 62 // |used_ssl_config| indicates the actual SSL configuration used for this 69 // |used_ssl_config| indicates the actual SSL configuration used for this 91 // |used_ssl_config| indicates the actual SSL configuration used for this 110 // |used_ssl_config| indicates the actual SSL configuration used for this 114 // |used_proxy_info| indicates the actual ProxyInfo used for this stream,
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
ImportTestProvider.java | 126 Log.d("@@@", "actual : " 211 final ContentValues expected, final ContentValues actual) { 212 if (expected == actual) { 214 } else if (expected == null || actual == null || expected.size() != actual.size()) { 221 if (!actual.containsKey(key)) { 227 final Object actualValue = actual.get(key);
|
/external/chromium_org/third_party/WebKit/Tools/qunit/qunit/ |
qunit.js | 323 * Prints out both actual and expected values. 325 * Prefered to ok( actual == expected, message ) 329 * @param Object actual 333 equal: function(actual, expected, message) { 334 QUnit.push(expected == actual, actual, expected, message); 337 notEqual: function(actual, expected, message) { 338 QUnit.push(expected != actual, actual, expected, message); 341 deepEqual: function(actual, expected, message) [all...] |
/external/protobuf/gtest/include/gtest/ |
gtest.h | 201 // << " Actual: it's " << n; 208 // Actual: it's 5 [all...] |
/art/runtime/ |
zip_archive.cc | 66 // figure out where the actual data starts. 85 ssize_t actual = TEMP_FAILURE_RETRY(read(zip_archive_->fd_, lfh_buf, sizeof(lfh_buf))); local 86 if (actual != sizeof(lfh_buf)) { 135 ssize_t actual = TEMP_FAILURE_RETRY(read(in, &buf[0], bytes_to_read)); local 136 if (actual != static_cast<ssize_t>(bytes_to_read)) { 204 ssize_t actual = TEMP_FAILURE_RETRY(read(in, read_buf.get(), bytes_to_read)); local 205 if (actual != static_cast<ssize_t>(bytes_to_read)) { 206 LOG(WARNING) << "Zip: inflate read failed (" << actual << " vs " << bytes_to_read << ")"; 411 ssize_t actual = TEMP_FAILURE_RETRY(read(fd_, scan_buf.get(), sizeof(int32_t))); local 412 if (actual != static_cast<ssize_t>(sizeof(int32_t))) [all...] |
/external/chromium/chrome/browser/themes/ |
browser_theme_pack_unittest.cc | 160 color_utils::HSL actual; local 161 EXPECT_TRUE(pack->GetTint(ThemeService::TINT_BUTTONS, &actual)); 162 EXPECT_DOUBLE_EQ(expected.h, actual.h); 163 EXPECT_DOUBLE_EQ(expected.s, actual.s); 164 EXPECT_DOUBLE_EQ(expected.l, actual.l); 190 EXPECT_FALSE(pack->GetTint(ThemeService::TINT_FRAME, &actual)); 270 color_utils::HSL actual = { -1, -1, -1 }; local 272 ThemeService::TINT_BUTTONS, &actual)); 273 EXPECT_DOUBLE_EQ(expected.h, actual.h); 274 EXPECT_DOUBLE_EQ(expected.s, actual.s) 337 color_utils::HSL actual = { -1, -1, -1 }; local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
restest.cpp | 38 #define CONFIRM_EQ(actual, expected, myAction) if ((expected)==(actual)) { record_pass(myAction); } else { record_fail(myAction + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of " + (expected) + "\n");} 39 #define CONFIRM_GE(actual, expected, myAction) if ((actual)>=(expected)) { record_pass(myAction); } else { record_fail(myAction + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x >= " + (expected) + "\n");} 40 #define CONFIRM_NE(actual, expected, myAction) if ((expected)!=(actual)) { record_pass(myAction); } else { record_fail(myAction + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x != " + (expected) + "\n");} 42 #define CONFIRM_UErrorCode(actual, expected, myAction) if ((expected)==(actual)) { record_pass(myAction); } else { record_fail(myAct (…) [all...] |
/external/icu4c/test/intltest/ |
restest.cpp | 38 #define CONFIRM_EQ(actual, expected, myAction) if ((expected)==(actual)) { record_pass(myAction); } else { record_fail(myAction + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of " + (expected) + "\n");} 39 #define CONFIRM_GE(actual, expected, myAction) if ((actual)>=(expected)) { record_pass(myAction); } else { record_fail(myAction + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x >= " + (expected) + "\n");} 40 #define CONFIRM_NE(actual, expected, myAction) if ((expected)!=(actual)) { record_pass(myAction); } else { record_fail(myAction + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x != " + (expected) + "\n");} 42 #define CONFIRM_UErrorCode(actual, expected, myAction) if ((expected)==(actual)) { record_pass(myAction); } else { record_fail(myAct (…) [all...] |
/external/chromium_org/net/http/ |
http_stream_factory.h | 64 // |used_ssl_config| indicates the actual SSL configuration used for this 67 // |used_proxy_info| indicates the actual ProxyInfo used for this stream, 76 // |used_ssl_config| indicates the actual SSL configuration used for this 79 // |used_proxy_info| indicates the actual ProxyInfo used for this stream, 87 // |used_ssl_config| indicates the actual SSL configuration used for this 94 // |used_ssl_config| indicates the actual SSL configuration used for this 116 // |used_ssl_config| indicates the actual SSL configuration used for this 135 // |used_ssl_config| indicates the actual SSL configuration used for this 139 // |used_proxy_info| indicates the actual ProxyInfo used for this stream,
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
ui_unittests.js | 34 "actual": "CRASH" 38 "actual": "CRASH" 44 "actual": "TEXT" 81 'http://example.com/layout-test-results/foo-bar-actual.png', 89 '<th>Actual</th>' + 96 '<td class="actual result-container"><img class="image-result" src="http://example.com/layout-test-results/foo-bar-actual.png"></td>' + 105 '<th>Actual</th>' + 112 '<td class="actual result-container"></td>' +
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/ |
rebaselineserver.py | 50 actual_pattern = os.path.basename(test_name) + '-actual.*' 96 # Do the actual move. 113 destination_file = source_file.replace('-actual', '-expected') 267 elif mode == 'actual-image': 268 file_name = test_name + '-actual.png' 271 elif mode == 'actual-checksum': 272 file_name = test_name + '-actual.checksum' 277 elif mode == 'actual-text': 278 file_name = test_name + '-actual.txt'
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/ |
Assert.java | 315 * Asserts that given actual value equals expected value. If this is not the case, some kind of 321 * actual value to check 323 public static void equals(int expected, int actual) { 324 equals(expected, actual, expected + " expected, but " + actual + " found"); 328 * Asserts that given actual value equals expected value. If this is not the case, some kind of 335 * actual value to check 339 public static void equals(int expected, int actual, String message) { 340 if (expected != actual) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RefactoringTest.java | 133 String actual = document.get(); local 137 org.w3c.dom.Document doc = DomUtilities.parseDocument(actual, true); 138 assertNotNull(actual, doc); 140 assertEqualsGolden(basename, actual); 177 String actual = document.get(); local 181 actual = getDiff(before, actual); 189 assertEqualsGolden(goldenName, actual); 214 * model objects. This is done rather than rendering an actual layout
|
/bootable/recovery/minzip/ |
SysUtil.c | 29 * bytes. The actual segment may be larger because mmap() operates on 86 size_t length, actual; local 101 actual = TEMP_FAILURE_RETRY(read(fd, memPtr, length)); 102 if (actual != length) { 103 LOGE("only read %d of %d bytes\n", (int) actual, (int) length);
|
/external/apache-http/src/org/apache/http/auth/ |
AuthState.java | 44 /** Actual authentication scheme */ 47 /** Actual authentication scope */ 118 * Returns actual {@link AuthScope} if available 120 * @return actual authentication scope if available, <code>null</code otherwise 127 * Sets actual {@link AuthScope}.
|
/external/chromium/testing/gtest/test/ |
gtest_xml_outfiles_test.py | 120 actual = minidom.parse(output_file1) 122 actual = minidom.parse(output_file2) 123 self.NormalizeXml(actual.documentElement) 125 actual.documentElement) 127 actual.unlink()
|
/external/chromium_org/content/browser/geolocation/ |
gps_location_provider_unittest_linux.cc | 70 const Geoposition& actual) { 71 EXPECT_TRUE(actual.Validate()); 72 EXPECT_DOUBLE_EQ(expected.latitude, actual.latitude); 73 EXPECT_DOUBLE_EQ(expected.longitude, actual.longitude); 74 EXPECT_DOUBLE_EQ(expected.accuracy, actual.accuracy);
|
/external/chromium_org/net/cert/ |
x509_util_nss_unittest.cc | 126 SECItem actual = { siBuffer, NULL, 0 }; local 129 &actual); 133 // Compare expected and actual extension values. 134 PRBool result = SECITEM_ItemsAreEqual(expected, &actual); 138 SECITEM_FreeItem(&actual, PR_FALSE);
|
/external/chromium_org/testing/gtest/test/ |
gtest_xml_outfiles_test.py | 120 actual = minidom.parse(output_file1) 122 actual = minidom.parse(output_file2) 123 self.NormalizeXml(actual.documentElement) 125 actual.documentElement) 127 actual.unlink()
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
getpc_test.cc | 100 char* actual = (char*)getpc_retval; local 113 if (actual < expected || actual > expected + kRoutineSize) { 114 printf("Test FAILED: actual PC: %p, expected PC: %p\n", actual, expected);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
getpc_test.cc | 100 char* actual = (char*)getpc_retval; local 113 if (actual < expected || actual > expected + kRoutineSize) { 114 printf("Test FAILED: actual PC: %p, expected PC: %p\n", actual, expected);
|
/external/gtest/test/ |
gtest_xml_outfiles_test.py | 120 actual = minidom.parse(output_file1) 122 actual = minidom.parse(output_file2) 123 self.NormalizeXml(actual.documentElement) 125 actual.documentElement) 127 actual.unlink()
|
/external/protobuf/gtest/test/ |
gtest_xml_outfiles_test.py | 120 actual = minidom.parse(output_file1) 122 actual = minidom.parse(output_file2) 123 self.NormalizeXml(actual.documentElement) 125 actual.documentElement) 127 actual.unlink()
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/ |
AliasOptions.java | 22 /** This is a direct mapping. The actual data type does not matter. */ 24 /** The actual is an unordered array, the alias is to the first element of the array. */ 26 /** The actual is an ordered array, the alias is to the first element of the array. */ 28 /** The actual is an alternate array, the alias is to the first element of the array. */ 31 * The actual is an alternate text array, the alias is to the 'x-default' element of the array.
|