Searched defs:store (Results 26 - 50 of 312) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/
H A Dpolymorph-arrays.js110 function store(a, i, val) {
125 store(object_array, 1, 256);
126 store(js_array, 1, 256);
127 store(sparse_object_array, 1, 256);
128 store(sparse_js_array, 1, 256);
130 return store;
144 store = make_polymorphic_store_function();
145 store(object_array, 2, 257);
146 store = make_polymorphic_store_function();
147 store(js_arra
[all...]
/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/icu/icu4c/source/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/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_util.c79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr ); local
81 if (store == NULL)
86 FREE(store);
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE);
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_normals.c52 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
56 if (!store->NormalTransform)
67 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
71 &store->normal ); /* resulting normals */
74 store->normal.stride = 4 * sizeof(GLfloat);
77 store->normal.stride = 0;
80 VB->AttribPtr[_TNL_ATTRIB_NORMAL] = &store->normal;
88 * Examine current GL state and set the store->NormalTransform pointer
94 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
99 store
152 struct normal_stage_data *store; local
170 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
[all...]
H A Dt_vb_texmat.c59 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
71 (void) TransformRaw( &store->texcoord[i],
75 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
89 struct texmat_stage_data *store; local
92 stage->privatePtr = CALLOC(sizeof(*store));
93 store = TEXMAT_STAGE_DATA(stage);
94 if (!store)
98 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
106 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
109 if (store) {
[all...]
/external/chromium_org/chrome/browser/dom_distiller/
H A Ddom_distiller_service_factory.cc23 scoped_ptr<DomDistillerStoreInterface> store,
27 : DomDistillerService(store.Pass(),
22 DomDistillerContextKeyedService( scoped_ptr<DomDistillerStoreInterface> store, scoped_ptr<DistillerFactory> distiller_factory, scoped_ptr<DistillerPageFactory> distiller_page_factory, scoped_ptr<DistilledPagePrefs> distilled_page_prefs) argument
/external/chromium_org/components/policy/core/common/cloud/
H A Dcloud_policy_core.h56 CloudPolicyStore* store,
63 CloudPolicyStore* store() { return store_; } function in class:policy::CloudPolicyCore
64 const CloudPolicyStore* store() const { return store_; } function in class:policy::CloudPolicyCore
H A Dcloud_policy_manager.h82 // default implementation just copies over |store()->policy_map()|.
94 CloudPolicyStore* store() { return core_.store(); } function in class:policy::CloudPolicyManager
95 const CloudPolicyStore* store() const { return core_.store(); } function in class:policy::CloudPolicyManager
H A Dcloud_policy_core.cc21 CloudPolicyStore* store,
24 store_(store),
19 CloudPolicyCore( const PolicyNamespaceKey& key, CloudPolicyStore* store, const scoped_refptr<base::SequencedTaskRunner>& task_runner) argument
H A Dcloud_policy_service.cc16 CloudPolicyStore* store)
19 store_(store),
85 void CloudPolicyService::OnStoreLoaded(CloudPolicyStore* store) { argument
86 // Update the client with state from the store.
125 void CloudPolicyService::OnStoreError(CloudPolicyStore* store) { argument
14 CloudPolicyService(const PolicyNamespaceKey& policy_ns_key, CloudPolicyClient* client, CloudPolicyStore* store) argument
/external/chromium_org/extensions/browser/api/storage/
H A Dstorage_api_unittest.cc101 // Corrupt the store. This is not as pretty as ideal, because we use knowledge
103 // store other than directly modifying the files.
104 ValueStore* store = local
108 ASSERT_TRUE(store);
110 static_cast<SettingsStorageQuotaEnforcer*>(store);
119 // store behind the scenes).
/external/chromium_org/mojo/services/html_viewer/
H A Dwebcookiejar_impl.cc23 WebCookieJarImpl::WebCookieJarImpl(CookieStorePtr store) argument
24 : store_(store.Pass()) {
38 // subsequent URL request will see the changes to the cookie store.
54 // store is followed up with WaitForIncomingMethodCall, we can be sure that
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dchrome_storage_impl.cc14 ChromeStorageImpl::ChromeStorageImpl(WriteablePrefStore* store) argument
15 : backing_store_(store),
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.h56 uint32_t *store; /**< instruction buffer */ member in struct:ppc_function
161 /** vector store: store vR at mem[vA+vB] */
290 ** scalar load/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/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.h56 uint32_t *store; /**< instruction buffer */ member in struct:ppc_function
161 /** vector store: store vR at mem[vA+vB] */
290 ** scalar load/store
/external/chromium_org/base/prefs/
H A Dpref_value_store.h71 // notified of preferences changing in the store. This does not
95 // indicated pref store, even if that value is currently being overridden by
102 // being controlled by the indicated pref store and not being overridden by
155 void Initialize(PrefValueStore* store,
159 PrefStore* store() { return pref_store_.get(); } function in class:PrefValueStore::PrefStoreKeeper
160 const PrefStore* store() const { return pref_store_.get(); } function in class:PrefValueStore::PrefStoreKeeper
173 // Type of the pref store.
191 bool PrefValueInStore(const char* name, PrefStoreType store) const;
196 // overridden by a higher-priority store.
201 // Returns the pref store typ
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Ddevice_local_account_external_policy_loader.cc21 DeviceLocalAccountExternalPolicyLoader(policy::CloudPolicyStore* store, argument
23 : store_(store),
65 policy::CloudPolicyStore* store) {
67 DCHECK_EQ(store_, store);
72 policy::CloudPolicyStore* store) {
74 DCHECK_EQ(store_, store);
64 OnStoreLoaded( policy::CloudPolicyStore* store) argument
71 OnStoreError( policy::CloudPolicyStore* store) argument
/external/chromium_org/chrome/browser/chromeos/login/
H A Dversion_info_updater.cc53 policy_manager->core()->store()->RemoveObserver(this);
73 policy_manager->core()->store()->AddObserver(this);
132 void VersionInfoUpdater::OnStoreLoaded(policy::CloudPolicyStore* store) { argument
136 void VersionInfoUpdater::OnStoreError(policy::CloudPolicyStore* store) { argument
/external/chromium_org/chrome/browser/extensions/api/content_settings/
H A Dcontent_settings_api.cc90 scoped_refptr<ContentSettingsStore> store = local
92 store->ClearContentSettingsForExtension(extension_id(), scope);
241 scoped_refptr<ContentSettingsStore> store = local
243 store->SetExtensionContentSetting(extension_id(), primary_pattern,
/external/chromium_org/chrome/browser/geolocation/
H A Daccess_token_store_browsertest.cc20 // The token store factory implementation expects to be used from any well-known
49 scoped_refptr<AccessTokenStore>* store,
52 if (store->get() == NULL)
53 (*store) = new ChromeAccessTokenStore();
54 (*store)->LoadAccessTokens(callback);
99 scoped_refptr<AccessTokenStore> store(new ChromeAccessTokenStore());
100 store->SaveAccessToken(ref_url_, *token_to_set_);
48 StartTestStepFromClientThread( scoped_refptr<AccessTokenStore>* store, const AccessTokenStore::LoadAccessTokensCallbackType& callback) argument
/external/chromium_org/chrome/browser/prefs/
H A Dcommand_line_pref_store_unittest.cc69 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl); local
72 EXPECT_TRUE(store->GetValue(prefs::kApplicationLocale, &actual));
82 scoped_refptr<TestCommandLinePrefStore> store = local
85 store->VerifyProxyMode(ProxyPrefs::MODE_DIRECT);
93 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl); local
96 EXPECT_FALSE(store->GetValue(unknown_bool, &actual));
97 EXPECT_FALSE(store->GetValue(unknown_string, &actual));
107 scoped_refptr<TestCommandLinePrefStore> store = local
111 EXPECT_FALSE(store->GetValue(unknown_bool, &actual));
112 EXPECT_FALSE(store
135 scoped_refptr<TestCommandLinePrefStore> store = local
[all...]
/external/chromium_org/components/dom_distiller/core/
H A Ddistilled_content_store.cc91 InMemoryContentStore::CacheDeletor::CacheDeletor(InMemoryContentStore* store) argument
92 : store_(store) {

Completed in 1315 milliseconds

1234567891011>>