/external/chromium_org/chrome/browser/policy/ |
registry_dict_win_unittest.cc | 17 RegistryDict test_dict; local 22 test_dict.SetValue("one", make_scoped_ptr(int_value.DeepCopy())); 23 EXPECT_EQ(1, test_dict.values().size()); 24 EXPECT_TRUE(base::Value::Equals(&int_value, test_dict.GetValue("one"))); 25 EXPECT_FALSE(test_dict.GetValue("two")); 27 test_dict.SetValue("two", make_scoped_ptr(string_value.DeepCopy())); 28 EXPECT_EQ(2, test_dict.values().size()); 29 EXPECT_TRUE(base::Value::Equals(&int_value, test_dict.GetValue("one"))); 30 EXPECT_TRUE(base::Value::Equals(&string_value, test_dict.GetValue("two"))); 32 scoped_ptr<base::Value> one(test_dict.RemoveValue("one")) 45 RegistryDict test_dict; local 68 RegistryDict test_dict; local 100 RegistryDict test_dict; local 186 RegistryDict test_dict; local 223 RegistryDict test_dict; local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
test_run_results.py | 110 test_dict = {} 115 test_dict['is_missing_audio'] = True 118 test_dict['is_missing_text'] = True 121 test_dict['is_missing_image'] = True 123 return test_dict 192 test_dict = {} 196 test_dict['time'] = rounded_run_time 199 test_dict['has_stderr'] = True 203 test_dict['bugs'] = bugs 206 test_dict.update(reftest_type=list(result.reftest_type) [all...] |
test_run_results_unittest.py | 102 test_dict = test_run_results._interpret_test_failures([test_failures.FailureReftestMismatchDidNotOccur(self.port.abspath_for_test('foo/reftest-expected-mismatch.html'))]) 103 self.assertEqual(len(test_dict), 0) 105 test_dict = test_run_results._interpret_test_failures([test_failures.FailureMissingAudio()]) 106 self.assertIn('is_missing_audio', test_dict) 108 test_dict = test_run_results._interpret_test_failures([test_failures.FailureMissingResult()]) 109 self.assertIn('is_missing_text', test_dict) 111 test_dict = test_run_results._interpret_test_failures([test_failures.FailureMissingImage()]) 112 self.assertIn('is_missing_image', test_dict) 114 test_dict = test_run_results._interpret_test_failures([test_failures.FailureMissingImageHash()]) 115 self.assertIn('is_missing_image', test_dict) [all...] |
/external/chromium/chrome/browser/policy/ |
config_dir_policy_provider_unittest.cc | 71 DictionaryValue test_dict; local 72 test_dict.SetString("HomepageLocation", "http://www.google.com"); 73 WriteConfigFile(test_dict, "config_file"); 78 EXPECT_TRUE(policy->Equals(&test_dict));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_gc.py | 52 def test_dict(self): member in class:GCTests
|
test_marshal.py | 163 def test_dict(self): member in class:ContainerTestCase
|
test_multiprocessing.py | 1079 def test_dict(self): member in class:_TestContainers [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_gc.py | 52 def test_dict(self): member in class:GCTests
|
test_marshal.py | 163 def test_dict(self): member in class:ContainerTestCase
|
test_multiprocessing.py | 1079 def test_dict(self): member in class:_TestContainers [all...] |
/external/chromium_org/third_party/libxml/src/ |
testapi.c | 8450 test_dict(void) { function [all...] |