/external/v8/test/cctest/ |
test-assembler-x64.cc | 57 // Test the x64 assembler by compiling some simple functions into 82 TEST(AssemblerX64ReturnOperation) { 103 TEST(AssemblerX64StackOperations) { 134 TEST(AssemblerX64ArithmeticOperations) { 155 TEST(AssemblerX64ImulOperation) { 182 TEST(AssemblerX64MemoryOperands) { 215 TEST(AssemblerX64ControlFlow) { 243 TEST(AssemblerX64LoopImmediates) {
|
test-decls.cc | 202 // Test global declaration of a property the interceptor doesn't know 204 TEST(Unknown) { 259 TEST(Present) { 313 TEST(Absent) { 403 TEST(Appearing) { 493 TEST(Reappearing) { 521 TEST(ExistsInPrototype) { 583 TEST(AbsentInPrototype) {
|
test-mark-compact.cc | 48 TEST(MarkingStack) { 73 TEST(Promotion) { 104 TEST(NoPromotion) { 107 // Test the situation that some objects in new space are promoted to 144 TEST(MarkCompactCollector) { 215 TEST(MapCompact) { 255 TEST(GCCallback) { 278 TEST(ObjectGroups) {
|
test-assembler-ia32.cc | 59 TEST(AssemblerIa320) { 87 TEST(AssemblerIa321) { 104 __ test(edx, Operand(edx)); 125 TEST(AssemblerIa322) { 142 __ test(edx, Operand(edx)); 169 TEST(AssemblerIa323) { 203 TEST(AssemblerIa324) { 235 TEST(AssemblerIa325) { 260 TEST(AssemblerIa326) { 305 TEST(AssemblerIa328) [all...] |
test-spaces.cc | 64 TEST(Page) { 93 // test remember set 100 TEST(MemoryAllocator) { 156 TEST(NewSpace) { 181 TEST(OldSpace) { 209 TEST(LargeObjectSpace) {
|
cctest.h | 33 #ifndef TEST 34 #define TEST(Name) \ 35 static void Test##Name(); \ 36 CcTest register_test_##Name(Test##Name, __FILE__, #Name, NULL, true); \ 37 static void Test##Name() 42 static void Test##Name(); \ 43 CcTest register_test_##Name(Test##Name, __FILE__, #Name, #Dep, true); \ 44 static void Test##Name() 49 static void Test##Name(); \ 50 CcTest register_test_##Name(Test##Name, __FILE__, #Name, NULL, false); [all...] |
/external/protobuf/gtest/test/ |
gtest-death-test_test.cc | 34 #include <gtest/gtest-death-test.h> 57 // Indicates that this translation unit is part of Google Test's 80 // A helper class whose objects replace the death test factory for a 108 class TestForDeathTest : public testing::Test { 127 // A method of the test fixture that may die. 184 // Tests that ASSERT_DEATH can be used outside a TEST, TEST_F, or test fixture. 202 TEST(ExitStatusPredicateTest, ExitedWithCode) { 216 // ExitStatusPredicateTest test suite. 231 // test suite [all...] |
gtest_repeat_test.cc | 38 // Indicates that this translation unit is part of Google Test's 61 // We need this when we are testing Google Test itself and therefore 62 // cannot use Google Test assertions. 90 // A test that should fail. 94 TEST(FooTest, ShouldFail) { 99 // A test that should pass. 103 TEST(FooTest, ShouldPass) { 107 // A test that contains a thread-safe death test and a fast death 108 // test. It should pass [all...] |
/external/chromium/base/ |
message_loop_unittest.cc | 29 class MessageLoopTest : public testing::Test {}; 191 // Test that PostDelayedTask results in a delayed task. 212 // Test that two tasks with different delays run in the right order. 220 // test could fail. 233 // Test that two tasks with the same delay run in the order in which they 236 // NOTE: This is actually an approximate test since the API only takes a 261 // Test that a delayed task still runs after a normal tasks even if the 287 // Test that a delayed task still runs after a pile of normal tasks. The key 288 // difference between this test and the previous one is that here we return 312 // Test that the interval of the timer, used to run the next delayed task, i [all...] |
histogram_unittest.cc | 5 // Test of Histogram class 16 class HistogramTest : public testing::Test { 20 TEST(HistogramTest, StartupShutdownTest) { 49 // Finally test a statistics recorder, without really using it. 54 TEST(HistogramTest, RecordedStartupTest) { 55 // Test a statistics recorder, by letting histograms register. 106 TEST(HistogramTest, RangeTest) { 172 TEST(HistogramTest, BoundsTest) { 196 TEST(HistogramTest, BucketPlacementTest) {
|
observer_list_unittest.cc | 16 class ObserverListTest : public testing::Test { 83 class ObserverListThreadSafeTest : public testing::Test { 86 static const int kThreadRunTime = 2000; // ms to run the multi-threaded test. 88 // A thread for use in the ThreadSafeObserver test 166 Time start_; // The time we started the test. 177 TEST(ObserverListTest, BasicTest) { 199 TEST(ObserverListThreadSafeTest, BasicTest) { 230 // A test driver for a multi-threaded notification loop. Runs a number 276 TEST(ObserverListThreadSafeTest, CrossThreadObserver) { 282 TEST(ObserverListThreadSafeTest, CrossThreadNotifications) [all...] |
command_line_unittest.cc | 13 TEST(CommandLineTest, CommandLineConstructor) { 87 TEST(CommandLineTest, EmptyString) { 99 // Test methods for appending switches to a command line. 100 TEST(CommandLineTest, AppendSwitches) {
|
file_version_info_unittest.cc | 13 class FileVersionInfoTest : public testing::Test { 28 TEST(FileVersionInfoTest, HardCodedProperties) { 80 TEST(FileVersionInfoTest, IsOfficialBuild) { 91 // Test consistency check. 106 TEST(FileVersionInfoTest, CustomProperties) { 113 // Test few existing properties. 130 // Test an non-existing property.
|
sha2_unittest.cc | 10 TEST(Sha256Test, Test1) { 33 TEST(Sha256Test, Test2) { 57 TEST(Sha256Test, Test3) {
|
atomicops_unittest.cc | 10 // For now, we just test single threaded execution 14 // test that some future change to the asm code doesn't cause the 88 // Use test value that has non-zero bits in both halves, more for testing 111 // Use test value that has non-zero bits in both halves, more for testing 129 // Test at rollover boundary between int_max and int_min 140 // Test at 32-bit boundary for 64-bit atomic type. 209 TEST(AtomicOpsTest, Inc) { 214 TEST(AtomicOpsTest, CompareAndSwap) { 219 TEST(AtomicOpsTest, Exchange) { 224 TEST(AtomicOpsTest, IncrementBounds) [all...] |
/external/chromium/net/proxy/ |
proxy_config_unittest.cc | 23 TEST(ProxyConfigTest, Equals) { 24 // Test |ProxyConfig::auto_detect|. 40 // Test |ProxyConfig::pac_url|. 52 // Test |ProxyConfig::proxy_rules|. 74 // Test |ProxyConfig::proxy_bypass|. 86 // Test |ProxyConfig::proxy_bypass_local_names|. 99 TEST(ProxyConfigTest, ParseProxyRules) { 255 TEST(ProxyConfigTest, ParseProxyBypassList) { 294 TEST(ProxyConfigTest, ToString) { 403 TEST(ProxyConfigTest, MayRequirePACResolver) [all...] |
proxy_resolver_perftest.cc | 20 // test is actually resolving URLs properly, otherwise the perf numbers 40 // This test uses an ad-blocker PAC script. This script is very heavily 135 // Print how long the test ran for. 177 TEST(ProxyResolverPerfTest, ProxyResolverWinHttp) { 183 TEST(ProxyResolverPerfTest, ProxyResolverMac) { 190 TEST(ProxyResolverPerfTest, ProxyResolverV8) {
|
/external/chromium/net/base/ |
ssl_config_service_mac_unittest.cc | 13 class SSLConfigServiceMacTest : public testing::Test { 18 TEST(SSLConfigServiceMacTest, GetNowTest) { 30 TEST(SSLConfigServiceMacTest, SetTest) { 38 // Test SetRevCheckingEnabled. 52 // Test SetSSL2Enabled. 65 // Test SetSSL3Enabled. 78 // Test SetTLS1Enabled. 92 TEST(SSLConfigServiceMacTest, GetTest) {
|