/external/chromium_org/chrome/browser/ui/toolbar/ |
toolbar_model_unittest.cc | 252 const TestItem& test_item = test_items[i]; local 253 NavigateAndCheckText(test_item.url, 254 test_item.expected_text_url_replacement_inactive, 255 false, test_item.should_display_url); 262 const TestItem& test_item = test_items[i]; local 263 NavigateAndCheckText(test_item.url, 264 test_item.expected_text_query_extraction, 265 test_item.would_perform_search_term_replacement, 266 test_item.should_display_url); 272 const TestItem& test_item = test_items[i] local 289 const TestItem& test_item = test_items[i]; local 299 const TestItem& test_item = test_items[i]; local 308 const TestItem& test_item = test_items[i]; local [all...] |
/external/chromium_org/ash/system/tray/ |
system_tray_unittest.cc | 198 TestItem* test_item = new TestItem; local 200 tray->AddTrayItem(test_item); 206 std::find(items.begin(), items.end(), test_item) != items.end()); 211 ASSERT_TRUE(test_item->tray_view() != NULL); 216 ASSERT_TRUE(test_item->default_view() != NULL); 222 ASSERT_TRUE(test_item->default_view() == NULL); 228 ASSERT_TRUE(test_item->default_view() != NULL); 277 TestItem* test_item = new TestItem; local 279 tray->AddTrayItem(test_item); 283 ASSERT_TRUE(test_item->tray_view() != NULL) 312 TestItem* test_item = new TestItem; local 383 TestItem* test_item = new TestItem; local [all...] |
/external/chromium_org/ash/system/web_notification/ |
web_notification_tray_unittest.cc | 326 TestItem* test_item = new TestItem; local 327 GetSystemTray()->AddTrayItem(test_item); 342 GetSystemTray()->ShowNotificationView(test_item); 360 GetSystemTray()->HideNotificationView(test_item); 389 TestItem* test_item = new TestItem; local 390 GetSystemTray()->AddTrayItem(test_item); 400 GetSystemTray()->ShowNotificationView(test_item);
|
/external/chromium_org/base/containers/ |
mru_cache_unittest.cc | 41 CachedItem test_item; local 79 Cache::iterator test_item = cache.Get(kItem1Key); local 80 ASSERT_TRUE(test_item != cache.end()); 81 EXPECT_EQ(kItem1Key, test_item->first); 82 EXPECT_EQ(item1.value, test_item->second.value);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
case.py | 56 def decorator(test_item): 57 if not (isinstance(test_item, type) and issubclass(test_item, TestCase)): 58 @wraps(test_item) 61 test_item = skip_wrapper 63 test_item.__unittest_skip__ = True 64 test_item.__unittest_skip_why__ = reason 65 return test_item [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
case.py | 58 def decorator(test_item): 59 if not isinstance(test_item, (type, types.ClassType)): 60 @functools.wraps(test_item) 63 test_item = skip_wrapper 65 test_item.__unittest_skip__ = True 66 test_item.__unittest_skip_why__ = reason 67 return test_item [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
case.py | 58 def decorator(test_item): 59 if not isinstance(test_item, (type, types.ClassType)): 60 @functools.wraps(test_item) 63 test_item = skip_wrapper 65 test_item.__unittest_skip__ = True 66 test_item.__unittest_skip_why__ = reason 67 return test_item [all...] |