Home | History | Annotate | Download | only in prefs

Lines Matching refs:dict

22   ProxyConfigDictionary dict(dict_value.get());
25 ASSERT_TRUE(dict.GetMode(&h.mode));
27 ASSERT_FALSE(dict.GetPacUrl(&h.bypass_list));
28 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
29 ASSERT_FALSE(dict.GetBypassList(&h.bypass_list));
35 ProxyConfigDictionary dict(dict_value.get());
38 ASSERT_TRUE(dict.GetMode(&h.mode));
40 ASSERT_FALSE(dict.GetPacUrl(&h.bypass_list));
41 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
42 ASSERT_FALSE(dict.GetBypassList(&h.bypass_list));
48 ProxyConfigDictionary dict(dict_value.get());
51 ASSERT_TRUE(dict.GetMode(&h.mode));
53 ASSERT_TRUE(dict.GetPacUrl(&h.bypass_list));
55 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
56 ASSERT_FALSE(dict.GetBypassList(&h.bypass_list));
63 ProxyConfigDictionary dict(dict_value.get());
66 ASSERT_TRUE(dict.GetMode(&h.mode));
68 ASSERT_FALSE(dict.GetPacUrl(&h.bypass_list));
69 ASSERT_TRUE(dict.GetProxyServer(&h.proxy_server));
71 ASSERT_TRUE(dict.GetBypassList(&h.bypass_list));
78 ProxyConfigDictionary dict(dict_value.get());
81 ASSERT_TRUE(dict.GetMode(&h.mode));
83 ASSERT_FALSE(dict.GetPacUrl(&h.bypass_list));
84 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
85 ASSERT_FALSE(dict.GetBypassList(&h.bypass_list));