Searched refs:store (Results 26 - 50 of 835) sorted by relevance

1234567891011>>

/external/chromium_org/content/test/data/indexeddb/
H A Dbug_109187.js14 var store = db.createObjectStore('storeName');
15 window.index1 = store.createIndex('index1Name', 'prop1');
16 window.index2 = store.createIndex(
H A Dtransaction_get_test.js9 var store = transaction.objectStore('storeName');
34 store = transaction.objectStore('storeName');
35 shouldBeEqualToString("store.name", "storeName");
36 request = store.get('myKey');
40 var emptyRequest = store.get('nonExistingKey');
H A Dcursor_prefetch.js21 var store = db.createObjectStore('store');
22 store.createIndex('index', '');
27 var trans = db.transaction(['store'], 'readwrite');
31 var store = trans.objectStore('store');
32 debug("Storing " + kNumberOfItems + " object in the object store.");
34 var req = store.put(i, i);
44 // Test iterating straight through the object store.
46 var trans = db.transaction(['store'], 'readwrit
[all...]
H A Dkey_types_test.js12 db.createObjectStore('store');
111 var trans = db.transaction('store', 'readwrite');
112 var store = trans.objectStore('store');
113 var putreq = store.put(value, key);
116 getreq = store.get(key);
128 var trans = db.transaction('store', 'readwrite');
129 var store = trans.objectStore('store');
135 var putreq = store
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_points.c53 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
61 GLfloat (*size)[4] = store->PointSize.data;
72 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize;
83 struct point_stage_data *store; local
84 stage->privatePtr = malloc(sizeof(*store));
85 store = POINT_STAGE_DATA(stage);
86 if (!store)
89 _mesa_vector4f_alloc( &store->PointSize, 0, VB->Size, 32 );
97 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
98 if (store) {
[all...]
H A Dt_vb_light.c197 update_materials(struct gl_context *ctx, struct light_stage_data *store) argument
201 for (i = 0 ; i < store->mat_count ; i++) {
203 COPY_CLEAN_4V(store->mat[i].current, store->mat[i].size, store->mat[i].ptr);
205 STRIDE_F(store->mat[i].ptr, store->mat[i].stride);
209 _mesa_update_material( ctx, store->mat_bitmask );
223 struct vertex_buffer *VB, struct light_stage_data *store)
227 store
222 prepare_materials(struct gl_context *ctx, struct vertex_buffer *VB, struct light_stage_data *store) argument
328 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
421 struct light_stage_data *store; local
452 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
[all...]
H A Dt_vb_program.c128 do_ndc_cliptest(struct gl_context *ctx, struct vp_stage_data *store) argument
135 store->ormask = 0;
136 store->andmask = CLIP_FRUSTUM_BITS;
143 &store->ndcCoords,
144 store->clipmask,
145 &store->ormask,
146 &store->andmask,
153 store->clipmask,
154 &store->ormask,
155 &store
314 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
514 struct vp_stage_data *store; local
536 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_points.c53 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
61 GLfloat (*size)[4] = store->PointSize.data;
72 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize;
83 struct point_stage_data *store; local
84 stage->privatePtr = malloc(sizeof(*store));
85 store = POINT_STAGE_DATA(stage);
86 if (!store)
89 _mesa_vector4f_alloc( &store->PointSize, 0, VB->Size, 32 );
97 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
98 if (store) {
[all...]
H A Dt_vb_light.c197 update_materials(struct gl_context *ctx, struct light_stage_data *store) argument
201 for (i = 0 ; i < store->mat_count ; i++) {
203 COPY_CLEAN_4V(store->mat[i].current, store->mat[i].size, store->mat[i].ptr);
205 STRIDE_F(store->mat[i].ptr, store->mat[i].stride);
209 _mesa_update_material( ctx, store->mat_bitmask );
223 struct vertex_buffer *VB, struct light_stage_data *store)
227 store
222 prepare_materials(struct gl_context *ctx, struct vertex_buffer *VB, struct light_stage_data *store) argument
328 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
421 struct light_stage_data *store; local
452 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
[all...]
H A Dt_vb_program.c128 do_ndc_cliptest(struct gl_context *ctx, struct vp_stage_data *store) argument
135 store->ormask = 0;
136 store->andmask = CLIP_FRUSTUM_BITS;
143 &store->ndcCoords,
144 store->clipmask,
145 &store->ormask,
146 &store->andmask,
153 store->clipmask,
154 &store->ormask,
155 &store
314 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
514 struct vp_stage_data *store; local
536 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
[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; }
H A DStore.h55 /// \param[in] store The analysis state.
61 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0;
64 /// \param[in] store The analysis state.
70 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
72 virtual StoreRef BindDefault(Store store, const MemRegion *R, SVal V);
74 /// \brief Create a new store with the specified binding removed.
75 /// \param ST the original store, that is the basis for the new store.
79 /// getInitialStore - Returns the initial "empty" store representing the
144 virtual StoreRef removeDeadBindings(Store store, cons
152 incrementReferenceCount(Store store) argument
157 decrementReferenceCount(Store store) argument
250 StoreRef(Store store, StoreManager & smgr) argument
[all...]
/external/libhevc/common/arm/
H A Dihevc_padding.s122 vst1.8 {d0,d1},[r4]! @128/8 = 16 bytes store
123 vst1.8 {d0,d1},[r4]! @ 16 bytes store
124 vst1.8 {d0,d1},[r4]! @ 16 bytes store
125 vst1.8 {d0,d1},[r4]! @ 16 bytes store
126 vst1.8 {d0,d1},[r4] @ 16 bytes store
130 vst1.8 {d2,d3},[r5]! @128/8 = 16 bytes store
131 vst1.8 {d2,d3},[r5]! @128/8 = 16 bytes store
132 vst1.8 {d2,d3},[r5]! @128/8 = 16 bytes store
133 vst1.8 {d2,d3},[r5]! @128/8 = 16 bytes store
134 vst1.8 {d2,d3},[r5] @128/8 = 16 bytes store
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dspeech_rule_functions.js27 * @param {Object.<string, Function>} store Storage object.
30 cvox.SpeechRuleFunctions.Store_ = function(prefix, store) {
34 this.store_ = store;
39 * Adds a new function for the function store.
72 var store =
74 goog.base(this, 'CQF', store);
92 var store =
94 goog.base(this, 'CSF', store);
112 var store =
115 goog.base(this, 'CTXF', store);
[all...]
/external/zopfli/src/zopfli/
H A Dsqueeze.h43 ZopfliLZ77Store* store);
58 ZopfliLZ77Store* store);
H A Dlz77.h51 void ZopfliInitLZ77Store(ZopfliLZ77Store* store);
52 void ZopfliCleanLZ77Store(ZopfliLZ77Store* store);
55 ZopfliLZ77Store* store);
127 ZopfliLZ77Store* store);
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dpasswords_helper.h21 // Adds the login held in |form| to the password store |store|. Even though
24 void AddLogin(password_manager::PasswordStore* store,
27 // Update the data held in password store |store| with a modified |form|.
29 void UpdateLogin(password_manager::PasswordStore* store,
32 // Searches |store| for all logins matching a fake signon realm used only by
35 void GetLogins(password_manager::PasswordStore* store,
38 // Removes the login held in |form| from the password store |store|
[all...]
/external/chromium_org/chrome/browser/ui/passwords/
H A Dpassword_manager_presenter.cc38 PasswordStore* store = GetPasswordStore(); local
39 if (store)
40 store->RemoveObserver(this);
58 PasswordStore* store = GetPasswordStore(); local
59 if (store)
60 store->AddObserver(this);
93 PasswordStore* store = GetPasswordStore(); local
94 if (!store)
96 store->RemoveLogin(*password_list_[index]);
108 PasswordStore* store local
202 PasswordStore* store = page_->GetPasswordStore(); local
225 PasswordStore* store = page_->GetPasswordStore(); local
[all...]
/external/chromium_org/net/ssl/
H A Ddefault_channel_id_store_unittest.cc138 DefaultChannelIDStore store(persistent_store.get());
140 EXPECT_EQ(0, store.GetChannelIDCount());
141 store.SetChannelID(
148 EXPECT_EQ(2, store.GetChannelIDCount());
149 store.SetChannelID(
155 EXPECT_EQ(3, store.GetChannelIDCount());
158 //TODO(mattm): add more tests of without a persistent store?
160 // No persistent store, all calls will be synchronous.
161 DefaultChannelIDStore store(NULL);
164 EXPECT_EQ(0, store
[all...]
/external/chromium_org/chrome/browser/extensions/api/content_settings/
H A Dcontent_settings_store_unittest.cc50 const ContentSettingsStore* store,
56 store->GetRuleIterator(content_type, resource_identifier, incognito));
64 const ContentSettingsStore* store,
71 store->GetRuleIterator(content_type, resource_identifier, incognito));
89 ContentSettingsStore* store() { function in class:extensions::ContentSettingsStoreTest
100 store()->AddObserver(&observer);
105 GetContentSettingFromStore(store(),
117 GetContentSettingFromStore(store(),
128 store()->SetExtensionContentSetting(ext_id,
138 GetContentSettingFromStore(store(),
49 GetContentSettingFromStore( const ContentSettingsStore* store, const GURL& primary_url, const GURL& secondary_url, ContentSettingsType content_type, const std::string& resource_identifier, bool incognito) argument
63 GetSettingsForOneTypeFromStore( const ContentSettingsStore* store, ContentSettingsType content_type, const std::string& resource_identifier, bool incognito, std::vector<content_settings::Rule>* rules) argument
[all...]
/external/chromium_org/mojo/services/network/
H A Dcookie_store_impl.cc39 net::CookieStore* store = context_->url_request_context()->cookie_store(); local
40 if (!store) {
44 store->GetCookiesWithOptionsAsync(
54 net::CookieStore* store = context_->url_request_context()->cookie_store(); local
55 if (!store) {
59 store->SetCookieWithOptionsAsync(
/external/chromium_org/sync/syncable/
H A Ddeferred_on_disk_directory_backing_store_unittest.cc41 DeferredOnDiskDirectoryBackingStore store("test", db_path_);
42 EXPECT_EQ(OPENED, store.Load(&handles_map_, &delete_journals_,
58 DeferredOnDiskDirectoryBackingStore store("test", db_path_);
59 EXPECT_EQ(OPENED, store.Load(&handles_map_, &delete_journals_,
71 DeferredOnDiskDirectoryBackingStore store("test", db_path_);
72 EXPECT_EQ(OPENED, store.Load(&handles_map_, &delete_journals_,
76 store.SaveChanges(snapshot);
86 DeferredOnDiskDirectoryBackingStore store("test", db_path_);
87 EXPECT_EQ(OPENED, store.Load(&handles_map_, &delete_journals_,
96 store
[all...]
/external/conscrypt/src/platform/java/org/conscrypt/
H A DTrustedCertificateKeyStoreSpi.java33 private final TrustedCertificateStore store = new TrustedCertificateStore(); field in class:TrustedCertificateKeyStoreSpi
53 return store.getCertificate(alias);
58 return store.getCreationDate(alias);
87 return Collections.enumeration(store.aliases());
92 return store.containsAlias(alias);
97 return store.aliases().size();
115 return store.getCertificateAlias(c);
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_store_default_unittest.cc72 scoped_refptr<PasswordStoreDefault> store(new PasswordStoreDefault(
76 store->Init(syncer::SyncableService::StartSyncFlare(), "");
92 // Build the expected forms vector and add the forms to the store.
97 store->AddLogin(*form);
108 store->GetAutofillableLogins(&consumer);
113 store->Shutdown();
118 scoped_refptr<PasswordStoreDefault> store(new PasswordStoreDefault(
122 store->Init(syncer::SyncableService::StartSyncFlare(), "");
138 store->AddObserver(&observer);
149 store
[all...]
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_manager_base_test_util.cc44 CloudPolicyStore* store = core->store(); local
45 ASSERT_TRUE(store);
50 new ExternalDataFetcher(store->external_data_manager(),
52 store->SetPolicyMapForTesting(policy_map);

Completed in 558 milliseconds

1234567891011>>