Searched defs:store (Results 1 - 25 of 122) sorted by relevance

12345

/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_store_interface_unittest.cc14 MockConfigurationPolicyStore store; local
15 EXPECT_CALL(store, Apply(_, _)).Times(3);
16 ObservingPolicyStoreInterface observer(&store);
26 EXPECT_TRUE(store.Get(kPolicyJavascriptEnabled) != NULL);
27 EXPECT_TRUE(store.Get(kPolicyProxyMode) != NULL);
28 EXPECT_TRUE(store.Get(kPolicyIncognitoEnabled) != NULL);
29 EXPECT_TRUE(store.Get(kPolicyPrintingEnabled) == NULL);
H A Ddummy_configuration_policy_provider.cc21 ConfigurationPolicyStoreInterface* store) {
20 Provide( ConfigurationPolicyStoreInterface* store) argument
H A Dasynchronous_policy_provider.cc25 ConfigurationPolicyStoreInterface* store) {
28 ApplyPolicyValueTree(loader_->policy(), store);
24 Provide( ConfigurationPolicyStoreInterface* store) argument
H A Dmock_configuration_policy_provider.cc36 ConfigurationPolicyStoreInterface* store) {
39 store->Apply(current->first, current->second->DeepCopy());
35 Provide( ConfigurationPolicyStoreInterface* store) argument
H A Dconfiguration_policy_provider.cc27 ConfigurationPolicyStoreInterface* store) {
33 store->Apply(i->policy_type, value->DeepCopy());
42 ConfigurationPolicyStoreInterface* store) {
48 store->Apply(i->policy_type, value->DeepCopy());
25 ApplyPolicyValueTree( const DictionaryValue* policies, ConfigurationPolicyStoreInterface* store) argument
40 ApplyPolicyMap( const PolicyMap* policies, ConfigurationPolicyStoreInterface* store) argument
/external/webkit/Source/WebKit2/UIProcess/
H A DWebNavigationData.cpp31 WebNavigationData::WebNavigationData(const WebNavigationDataStore& store) argument
32 : m_store(store)
H A DWebNavigationData.h39 static PassRefPtr<WebNavigationData> create(const WebNavigationDataStore& store) argument
41 return adoptRef(new WebNavigationData(store));
H A DWebPreferences.h62 const WebPreferencesStore& store() const { return m_store; } function in class:WebKit::WebPreferences
/external/v8/test/mjsunit/
H A Dstore-dictionary.js28 // Test dictionary store ICs.
31 function store(obj) { obj.x = 42; } function
37 // Make the store ic in the 'store' function go into dictionary store
40 store(o);
48 // Attempt to store using the store ic in the 'store' function.
49 store(
[all...]
H A Dmegamorphic-callbacks.js32 function store(o) { function
46 store(o);
62 // Perform the store checks.
64 assertEquals(200, o.y_mirror, "normal store");
65 store(o);
66 assertEquals(42, o.y_mirror, "ic store");
/external/chromium/chrome/browser/importer/
H A Dtoolbar_importer_utils.cc25 net::CookieStore* store = local
30 std::string cookies = store->GetCookiesWithOptions(url, options);
/external/chromium/net/base/
H A Dkeygen_handler.h41 void set_stores_key(bool store) { stores_key_ = store;} argument
H A Dnetwork_change_notifier_mac.cc25 SCDynamicStoreRef store) {
42 store, notification_keys.get(), NULL);
24 SetDynamicStoreNotificationKeys( SCDynamicStoreRef store) argument
H A Dnetwork_change_notifier_mac.h34 virtual void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store) { argument
35 net_config_watcher_->SetDynamicStoreNotificationKeys(store);
47 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store);
/external/webkit/Source/WebKit2/Shared/
H A DWebNavigationDataStore.h43 static bool decode(CoreIPC::ArgumentDecoder* decoder, WebNavigationDataStore& store) argument
45 if (!decoder->decode(store.url))
47 if (!decoder->decode(store.title))
/external/apache-http/src/org/apache/http/client/protocol/
H A DClientContextConfigurer.java60 public void setCookieStore(final CookieStore store) { argument
61 this.context.setAttribute(COOKIE_STORE, store);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStoreRef.h1 //== StoreRef.h - Smart pointer for store objects ---------------*- C++ -*--==//
31 Store store; member in class:clang::ento::StoreRef
40 return x.store == store;
46 Store getStore() const { return store; }
/external/icu4c/test/perf/perldriver/
H A DOutput.pm315 sub store { subroutine
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DInMemoryResourceLoader.java31 * Content needs to be stored first using the {@link #store(String, String)} method.
55 public void store(String name, String contents) { method in class:InMemoryResourceLoader
/external/chromium/chrome/browser/prefs/
H A Dcommand_line_pref_store_unittest.cc48 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl); local
52 store->GetValue(prefs::kApplicationLocale, &actual));
62 scoped_refptr<TestCommandLinePrefStore> store = local
65 store->VerifyProxyMode(ProxyPrefs::MODE_DIRECT);
73 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl); local
76 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_bool, &actual));
77 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_string, &actual));
87 scoped_refptr<TestCommandLinePrefStore> store = local
91 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_bool, &actual));
92 EXPECT_EQ(PrefStore::READ_NO_VALUE, store
115 scoped_refptr<TestCommandLinePrefStore> store = local
[all...]
/external/chromium/net/proxy/
H A Dproxy_config_service_mac.h43 virtual void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store) { argument
44 net_config_watcher_->SetDynamicStoreNotificationKeys(store);
56 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store);
/external/markdown/markdown/
H A Dpreprocessors.py52 def store(self, html, safe=False): member in class:HtmlStash
77 """Remove html blocks from the text and store them for later retrieval."""
154 self.markdown.htmlStash.store(block.strip()))
165 self.markdown.htmlStash.store(block.strip()))
180 self.markdown.htmlStash.store('\n\n'.join(items)))
184 new_blocks.append(self.markdown.htmlStash.store('\n\n'.join(items)))
192 """ Remove reference definitions from text and store for later use. """
/external/webkit/Source/WebCore/bindings/v8/
H A DDOMData.h59 static void removeObjectsFromWrapperMap(DOMDataStore* store, AbstractWeakReferenceMap<T, v8::Object>& domMap);
69 virtual void visitDOMWrapper(DOMDataStore* store, T* domObject, v8::Persistent<v8::Object> v8Object) argument
87 DOMDataStore* store = list[i]; local
88 ASSERT(store->domData()->owningThread() == WTF::currentThread());
90 DOMWrapperMap<T>* domMap = static_cast<DOMWrapperMap<T>*>(store->getDOMWrapperMap(mapType));
106 void DOMData::removeObjectsFromWrapperMap(DOMDataStore* store, AbstractWeakReferenceMap<T, v8::Object>& domMap) argument
109 domMap.visit(store, &remover);
H A DDOMDataStore.cpp162 DOMDataStore* store = list[i]; local
163 if (store->domNodeMap().removeIfPresent(node, v8Object)) {
164 ASSERT(store->domData()->owningThread() == WTF::currentThread());
H A DV8DOMMap.cpp93 DOMDataStore& store = getDOMDataStore(); local
100 DOMData::removeObjectsFromWrapperMap<Node>(&store, store.domNodeMap());
104 DOMData::removeObjectsFromWrapperMap<SVGElementInstance>(&store, store.domSvgElementInstanceMap());
109 DOMData::removeObjectsFromWrapperMap<void>(&store, store.domObjectMap());
112 DOMData::removeObjectsFromWrapperMap<void>(&store, store.activeDomObjectMap());
122 DOMDataStore* store local
137 DOMDataStore* store = list[i]; local
152 DOMDataStore* store = list[i]; local
169 DOMDataStore* store = list[i]; local
[all...]

Completed in 408 milliseconds

12345